@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* === PREMIUM THEME ENHANCEMENTS === */
:root {
  --primary: #0a1833;
  --primary-dark: #071021;
  --accent: #f5b041;
  --accent-gradient: linear-gradient(90deg, #f5b041 0%, #f7ca77 100%);
  --glass-bg: rgba(255,255,255,0.15);
  --glass-blur: blur(12px);
  --card-shadow: 0 8px 32px 0 rgba(10,24,51,0.18);
  --card-border: 1.5px solid rgba(245,176,65,0.18);
  --section-divider: linear-gradient(90deg, #0a1833 0%, #f5b041 100%);
  --text-main: #0a1833;
  --text-light: #fff;
  --text-muted: #b0b8c9;
  --radius: 1.5rem;
}

html, body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--primary-dark);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    margin: 0;
}

/* =====================
   HEADER & NAVBAR
   ===================== */
.navbar {
    background: #1e3a49;
    min-height: 4.5rem;
    padding: 0 5%;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.5rem;
    position: relative;
}
.navbar .logo img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.navbar .logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.logo-text {
    color: #ee7d36;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    padding-left: 0.75rem;
}
.logo-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1.5rem;
    background: linear-gradient(to bottom, #ee7d36, transparent);
    border-radius: 2px;
}
.logo-subtext {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    opacity: 0.9;
    padding-left: 0.75rem;
}
.navbar nav {
    margin: 0 auto;
}
.navbar nav ul {
    gap: 0;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar nav ul li {
    position: relative;
}
.navbar nav ul li a {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-decoration: none;
    padding: 1.75rem 1.25rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}
.navbar nav ul li a:hover {
    color: #ee7d36;
    background: rgba(255, 255, 255, 0.05);
}
.navbar nav ul li.active a {
    color: #ee7d36;
}
.navbar nav ul li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ee7d36;
}
.navbar .contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}
.navbar .phone {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.navbar .phone-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .cta-btn {
    background: #ee7d36;
    color: white;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0.25rem;
    box-shadow: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.navbar .cta-btn:hover {
    background: #f68d4a;
    transform: translateY(-2px);
}

/* =====================
   HERO / BANNER
   ===================== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    min-height: 10rem;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero h1 {
    position: relative;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #ee7d36;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* =====================
   FEATURES BAR
   ===================== */
.features-bar {
    position: relative;
    z-index: 10;
    margin-top: -1.875rem;
    margin-bottom: 2rem;
}
.features-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 62.5rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.feature-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    text-align: center;
}
.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: none;
}
.feature-item .icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    background: #f8f8f8;
    color: #ee7d36;
    border: 1px solid #e0e0e0;
}
.feature-item .text {
    font-weight: 500;
    color: #333;
    font-size: 0.875rem;
}

/* =====================
   PRODUCT SECTION & SLIDER
   ===================== */
.product-section {
    display: flex;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}
.product-image {
    flex: 1;
    border-radius: 0.5rem;
    overflow: hidden;
}
.product-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 0.5rem;
}
.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}
.slider-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: #ee7d36;
}
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
}
.slider-arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}
.product-details {
    flex: 1;
    padding: 1rem;
}
.product-details h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.product-details .product-type {
    color: #777;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.product-details .rating {
    color: #ee7d36;
    margin-bottom: 1rem;
}
.product-details .reviews {
    color: #777;
    font-size: 0.875rem;
}
.product-details .social-share {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}
.product-details .social-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}
.product-details .facebook { background: #3b5998; }
.product-details .twitter { background: #1da1f2; }
.product-details .instagram { background: #e1306c; }
.product-actions { margin-top: 1.5rem; }
.buy-now-btn {
    background: #ee7d36;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.buy-now-btn:hover {
    background: #f68d4a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(238, 125, 54, 0.3);
}
.btn-icon { display: inline-flex; }

/* =====================
   PRODUCT DESCRIPTION
   ===================== */
.product-description-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.product-description-content { margin-bottom: 2rem; }
.description-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}
.description-text {
    color: #555;
    line-height: 1.6;
}
.service-descriptions { margin-bottom: 3rem; }
.service-item { margin-bottom: 1.5rem; }
.service-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* =====================
   REVIEWS SECTION
   ===================== */
.reviews-section {
    background: #f9f9f9;
    padding: 2rem 0;
    margin: 2rem 0;
}
.review-heading {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}
.review-heading h2 {
    font-size: 1.5rem;
    color: #333;
    position: relative;
    display: inline-block;
}
.review-heading h2::after {
    content: '';
    position: absolute;
    width: 3rem;
    height: 3px;
    background: #ee7d36;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

/* =====================
   VENDORS SECTION
   ===================== */
.vendors-section { margin: 2rem 0; }
.vendors-heading {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}
.vendors-heading h2 {
    font-size: 1.5rem;
    color: #333;
    position: relative;
    display: inline-block;
}
.vendors-heading h2::after {
    content: '';
    position: absolute;
    width: 3rem;
    height: 3px;
    background: #ee7d36;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
}
.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.vendor-card {
    border: 1px solid #eee;
    border-radius: 0.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.vendor-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.vendor-logo {
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    padding: 1rem;
}
.vendor-logo img {
    max-width: 100%;
    max-height: 5rem;
}
.vendor-info {
    padding: 1rem;
    text-align: center;
    background: white;
}
.vendor-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}
.vendor-location {
    color: #777;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
.vendor-rating {
    color: #ee7d36;
    margin-bottom: 1rem;
}
.send-request-btn {
    background: #ee7d36;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}
.send-request-btn:hover {
    background: #e06a21;
    transform: translateY(-2px);
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: #1e3a49;
    color: white;
    padding-top: 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 0.75rem;
}
.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.footer-column ul li a:hover {
    color: #ee7d36;
    padding-left: 0.5rem;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
}
.footer-logo img {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.footer-logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.footer-logo .logo-text {
    font-size: 1.6rem;
}
.footer-logo .logo-subtext {
    font-size: 1rem;
    color: #ee7d36;
}
.footer-logo:hover .logo-text {
    transform: translateX(2px);
    transition: transform 0.3s ease;
}
.footer-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.footer-contact {
    margin-top: 1.5rem;
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #ccc;
    font-size: 0.95rem;
}
.footer-contact p strong {
    color: white;
}
.footer-bottom {
    background: #12242f;
    padding: 1rem 0;
    margin-top: 3rem;
    text-align: center;
}
.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: #ee7d36;
    transform: translateY(-3px);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 0.9375rem;
        gap: 0.9375rem;
    }
    .navbar nav ul li a {
        padding: 1rem 0.75rem;
    }
    .features-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .product-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-subtext {
        font-size: 0.8rem;
    }
    .footer-logo .logo-text {
        font-size: 1.4rem;
    }
    .footer-logo .logo-subtext {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .navbar nav ul li a {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
    }
    .hero h1 {
        font-size: 1.2rem;
    }
    .product-details h2 {
        font-size: 1.1rem;
    }
    .logo-text {
        font-size: 1rem;
    }
    .logo-subtext {
        font-size: 0.8rem;
    }
    .footer-logo .logo-text {
        font-size: 1.2rem;
    }
    .footer-logo .logo-subtext {
        font-size: 0.8rem;
    }
}

/* ========== GENERAL CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== SECTION HEADINGS ========== */
.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a49;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.02em;
}
.section-heading::after {
    content: '';
    display: block;
    width: 3.75rem;
    height: 0.25rem;
    background: #ee7d36;
    margin-top: 0.9375rem;
    border-radius: 0.125rem;
}

/* ========== CARD STYLES ========== */
.card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(30, 58, 73, 0.08);
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}
.content-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(30, 58, 73, 0.08);
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
}

/* ========== CONTENT SECTION ========== */
.content-section {
    margin-bottom: 3rem;
}

/* ========== SERVICE FEATURES ========== */
.service-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.service-feature:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}
.service-icon {
    font-size: 2rem;
    color: #1e3a49;
    background: #f3f4f6;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-content h4 {
    font-size: 1.1rem;
    color: #1e3a49;
    margin-bottom: 0.5rem;
}
.service-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* ========== HELPLINE & FAQ ========== */
.helpline-section {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 1px solid #e5e7eb;
}
.helpline-section h4 {
    font-size: 1.1rem;
    color: #1e3a49;
    margin-bottom: 1rem;
}
.helpline-section p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.faq-section {
    margin-top: 1.5rem;
}
.faq-list {
    margin-bottom: 1.5rem;
}
.faq-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.faq-question {
    font-weight: 500;
    color: #1e3a49;
    position: relative;
    padding-left: 1.5rem;
}
.faq-question::before {
    content: "Q:";
    position: absolute;
    left: 0;
    color: #ee7d36;
    font-weight: 700;
}
.helpline-number {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(30,58,73,0.05);
    border: 1px solid #e5e7eb;
}
.helpline-number span {
    color: #ee7d36;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, #ee7d36 0%, #fbbf77 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(238, 125, 54, 0.2);
}
.btn-primary:hover {
    background: #ee7d36;
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(238, 125, 54, 0.35);
}
.btn-secondary {
    background: #1e3a49;
    color: #fff;
}
.btn-secondary:hover {
    background: #334155;
    transform: translateY(-2px);
}
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
}

/* ========== REVIEWS SECTION CONTAINER ========== */
.reviews-section-container {
    margin-bottom: 3rem;
}
.reviews-wrapper {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ee7d36 #f0f0f0;
}
.reviews-wrapper::-webkit-scrollbar {
    height: 6px;
}
.reviews-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.reviews-wrapper::-webkit-scrollbar-thumb {
    background: #ee7d36;
    border-radius: 10px;
}
.review-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    min-width: 18rem;
    max-width: 28rem;
    box-shadow: 0 10px 25px rgba(30, 58, 73, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 58, 73, 0.12);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.reviewer-pic {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #eaeaea;
    background-image: url('https://randomuser.me/api/portraits/women/44.jpg');
    background-size: cover;
    border: 3px solid #ee7d36;
}
.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.stars {
    color: #ee7d36;
    font-size: 1rem;
}
.review-text {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding-left: 1rem;
}
.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: #ee7d36;
    opacity: 0.5;
}

/* ========== VENDORS SECTION CONTAINER ========== */
.vendors-section-container {
    margin-bottom: 3rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #1e3a49 0%, #334155 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ========== ENQUIRY MODAL PREMIUM STYLES ========== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 58, 73, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 1000px !important;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(20px) scale(0.95) !important;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    max-height: 90vh !important;
    display: flex;
    border: 2px solid #ee7d36 !important;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f1f5f9;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
    z-index: 10;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

.modal-sidebar {
    width: 25%;
    background: linear-gradient(135deg, #cd35bc 0%, #6711b4 100%);
    padding: 2rem 1.5rem;
    color: white;
    border-radius: 16px 0 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-sidebar-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-sidebar-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.modal-sidebar-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.modal-sidebar-features {
    margin: 1.5rem 0;
}

.feature-item {
    margin-bottom: 1rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.modal-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 0 16px 16px 0;
}

.modal-header {
    margin-bottom: 2.5rem;
}

.modal-title {
    color: #1e3a49;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.modal-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.modal-form-columns {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.modal-form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1rem;
}

.modal-form-group.pair {
    flex: 0 0 calc(50% - 0.5rem);
    min-width: 180px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: #1e3a49;
    margin-bottom: 0.375rem;
    font-weight: 500;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #1e3a49;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-input:hover {
    border-color: #cbd5e1;
}

.form-input:focus {
    outline: none;
    border-color: #ee7d36;
    box-shadow: 0 0 0 3px rgba(238, 125, 54, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
    width: 100%;
}

.modal-form-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.modal-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #cd35bc 0%, #6711b4 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(205, 53, 188, 0.2);
}

.modal-submit-btn:hover {
    background: linear-gradient(135deg, #d94ac8 0%, #7a1cc9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(205, 53, 188, 0.3);
}

.modal-submit-btn svg {
    transition: transform 0.3s ease;
}

.modal-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Custom scrollbar for modal */
.modal-box::-webkit-scrollbar {
    width: 8px;
}

.modal-box::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.modal-box::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.modal-box::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (max-width: 1024px) {
    .modal-box {
        max-width: 90%;
    }
    
    .modal-form-columns {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .modal-box {
        flex-direction: column;
        max-height: 95vh;
    }
    
    .modal-sidebar {
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 1.5rem;
    }
    
    .modal-content {
        border-radius: 0 0 16px 16px;
        padding: 1.5rem;
    }
    
    .modal-form-group {
        flex: 0 0 100%;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.95rem;
    }
    
    .modal-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-form-group.pair {
        flex: 0 0 100%;
    }
}

/* Success message styles */
.success-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
    color: #166534;
}

.success-message svg {
    color: #22c55e;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Services Grid Styles */
.services-grid {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(238, 125, 54, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ee7d36, #fbbf77);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(238, 125, 54, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ee7d36, #fbbf77);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(238, 125, 54, 0.2);
    z-index: 1;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 2px solid rgba(238, 125, 54, 0.1);
}

.service-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ee7d36, #fbbf77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(238, 125, 54, 0.3);
}

.service-card h3 {
    color: #1e3a49;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.service-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.service-details {
    text-align: left;
    margin: 1rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover .service-details {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.price-section {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ee7d36, #fbbf77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offers-section,
.features-section {
    margin-bottom: 1.5rem;
}

.offers-section h4,
.features-section h4 {
    font-size: 1.1rem;
    color: #1e3a49;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.offers-section ul,
.features-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offers-section li,
.features-section li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.offers-section li:hover,
.features-section li:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.offers-section li i,
.features-section li i {
    color: #ee7d36;
    font-size: 1rem;
}

.service-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #ee7d36, #fbbf77);
    box-shadow: 0 8px 20px rgba(238, 125, 54, 0.2);
}

.service-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(238, 125, 54, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-row {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-row {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-details {
        padding: 1rem;
    }
    
    .price {
        font-size: 1.75rem;
    }
    
    .service-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* --- HERO TEMPLATE --- */
.hero-template {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, #0a1833 60%, #1e3a49 100%);
    color: var(--text-light);
    padding: 3rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border-radius: 0 0 2.5rem 2.5rem;
    box-shadow: 0 12px 48px 0 rgba(10,24,51,0.18);
}
.hero-template .hero-content {
    flex: 1;
    padding-left: 7%;
    z-index: 2;
}
.hero-template h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--accent);
    text-shadow: 0 2px 24px rgba(245,176,65,0.12);
    margin-bottom: 1.2rem;
}
.hero-template p {
    font-size: 1.25rem;
    color: #f7f7f7;
    margin-bottom: 2.2rem;
    max-width: 34rem;
    text-shadow: 0 1px 8px rgba(10,24,51,0.10);
}
.hero-template .hero-cta {
    display: flex;
    gap: 1.25rem;
}
.hero-template .btn-primary {
    background: var(--accent-gradient);
    color: var(--primary-dark);
    font-weight: 800;
    border-radius: 2rem;
    padding: 0.9rem 2.2rem;
    font-size: 1.15rem;
    box-shadow: 0 4px 24px 0 rgba(245,176,65,0.18);
    border: none;
    letter-spacing: 0.04em;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
}
.hero-template .btn-primary:hover {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 8px 32px 0 rgba(245,176,65,0.22);
    transform: scale(1.04) translateY(-2px);
}
.hero-template .btn-secondary {
    background: var(--glass-bg);
    color: var(--accent);
    font-weight: 700;
    border: 1.5px solid var(--accent);
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 2px 12px 0 rgba(245,176,65,0.10);
    transition: all 0.25s;
}
.hero-template .btn-secondary:hover {
    background: var(--accent);
    color: var(--primary-dark);
}
.hero-template .hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5%;
    z-index: 2;
}
.hero-template .hero-image img {
    max-width: 400px;
    border-radius: 2.5rem;
    box-shadow: 0 12px 48px 0 rgba(10,24,51,0.22);
    border: 6px solid var(--glass-bg);
    backdrop-filter: var(--glass-blur);
}
@media (max-width: 900px) {
    .hero-template {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0 1rem 0;
    }
    .hero-template .hero-content, .hero-template .hero-image {
        padding: 0;
    }
    .hero-template .hero-image {
        justify-content: center;
        margin-top: 2rem;
    }
}

/* --- SERVICE HIGHLIGHTS --- */
.service-highlights {
    background: transparent;
    padding: 2.5rem 0 1.5rem 0;
    border: none;
}
.highlights-row {
    background: var(--glass-bg);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    backdrop-filter: var(--glass-blur);
    border: var(--card-border);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.highlight-item {
    background: transparent;
    border-radius: 1.2rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s;
    position: relative;
}
.highlight-item i {
    font-size: 2.2rem;
    color: var(--accent);
    background: var(--glass-bg);
    border-radius: 50%;
    padding: 0.7rem;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 12px 0 rgba(245,176,65,0.10);
    backdrop-filter: var(--glass-blur);
}
.highlight-item h4 {
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.highlight-item p {
    color: var(--text-muted);
    font-size: 1rem;
}
.highlight-item:hover {
    background: var(--glass-bg);
    box-shadow: 0 8px 32px 0 rgba(245,176,65,0.10);
    transform: translateY(-4px) scale(1.04);
}
@media (max-width: 900px) {
    .highlights-row {
        flex-direction: column;
        gap: 1.2rem;
    }
}

/* --- CHOOSE PLAN --- */
.choose-plan {
    background: transparent;
    padding: 3rem 0 2rem 0;
}
.plans-row {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.plan-card {
    background: var(--glass-bg);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    padding: 2.5rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--accent-gradient);
    opacity: 0.7;
    border-radius: 0 0 1rem 1rem;
}
.plan-card:hover {
    box-shadow: 0 16px 48px 0 rgba(245,176,65,0.18);
    border-color: var(--accent);
    transform: translateY(-8px) scale(1.03);
}
.plan-header {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.7rem;
    letter-spacing: 0.03em;
}
.plan-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-light);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
}
.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    -webkit-text-fill-color: initial;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.plan-features li {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
    opacity: 0.92;
}
.plan-features li::before {
    color: var(--accent);
    font-size: 1.1rem;
}
.plan-card .btn {
    background: var(--accent-gradient);
    color: var(--primary-dark);
    font-weight: 800;
    border-radius: 2rem;
    font-size: 1.08rem;
    box-shadow: 0 4px 24px 0 rgba(245,176,65,0.12);
    border: none;
    margin-top: 0.5rem;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
}
.plan-card .btn:hover {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 8px 32px 0 rgba(245,176,65,0.22);
    transform: scale(1.04) translateY(-2px);
}

/* WHY CHOOSE US */
.why-choose-us {
    background: transparent;
    padding: 3rem 0 2rem 0;
}
.features-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-card {
    background: var(--glass-bg);
    border-radius: 1.2rem;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    padding: 2.2rem 1.2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card i {
    font-size: 2.1rem;
    color: var(--accent);
    background: var(--glass-bg);
    border-radius: 50%;
    padding: 0.7rem;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 12px 0 rgba(245,176,65,0.10);
    backdrop-filter: var(--glass-blur);
}
.feature-card h4 {
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}
.feature-card:hover {
    background: var(--glass-bg);
    box-shadow: 0 8px 32px 0 rgba(245,176,65,0.10);
    transform: translateY(-4px) scale(1.04);
}

/* TESTIMONIALS */
.testimonials {
    background: transparent;
    padding: 3rem 0 2rem 0;
}
.testimonial-card {
    background: var(--glass-bg);
    border-radius: 1.2rem;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    padding: 2.2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(245,176,65,0.18);
    transform: translateY(-4px) scale(1.03);
}
.testimonial-text {
    font-size: 1.08rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.95;
}
.testimonial-author {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.85;
}

/* MEDIA SHOWCASE */
.media-showcase {
    background: transparent;
    padding: 3rem 0 2rem 0;
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.media-card {
    background: var(--glass-bg);
    border-radius: 1.2rem;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    padding: 1.2rem 0.5rem 0.8rem 0.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.media-card img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.7rem;
    margin-bottom: 0.7rem;
    background: #fff;
    border: 2px solid var(--accent);
    box-shadow: 0 2px 12px 0 rgba(245,176,65,0.10);
}
.media-title {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.media-card:hover {
    background: var(--glass-bg);
    box-shadow: 0 8px 32px 0 rgba(245,176,65,0.10);
    transform: translateY(-4px) scale(1.04);
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
    background: var(--glass-bg);
    color: var(--text-light);
    padding: 2.5rem 0 2rem 0;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    margin: 2rem 0;
    border: var(--card-border);
}
.newsletter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.newsletter-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent);
}
.newsletter-text p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.85;
}
.newsletter-form {
    display: flex;
    gap: 0.7rem;
}
.newsletter-form input[type="email"] {
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    border: 1.5px solid var(--accent);
    font-size: 1rem;
    outline: none;
    min-width: 220px;
    background: var(--glass-bg);
    color: var(--text-light);
    box-shadow: 0 2px 12px 0 rgba(245,176,65,0.10);
    transition: border 0.2s;
}
.newsletter-form input[type="email"]:focus {
    border: 1.5px solid var(--accent);
    background: #fff;
    color: var(--primary-dark);
}
.newsletter-form button {
    border-radius: 2rem;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 0.8rem 2rem;
    border: none;
    background: var(--accent-gradient);
    color: var(--primary-dark);
    box-shadow: 0 4px 24px 0 rgba(245,176,65,0.12);
    transition: all 0.3s;
}
.newsletter-form button:hover {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 8px 32px 0 rgba(245,176,65,0.22);
    transform: scale(1.04) translateY(-2px);
}

/* FOOTER */
.footer-template {
    background: var(--primary);
    color: var(--text-light);
    padding-top: 2.5rem;
    border-radius: 2.5rem 2.5rem 0 0;
    box-shadow: 0 -8px 32px 0 rgba(10,24,51,0.18);
}
.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}
.footer-logo .logo-text {
    color: var(--accent);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.07rem;
}
.footer-logo .logo-subtext {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.85;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    opacity: 0.85;
}
.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}
.footer-contact {
    margin-top: 0.5rem;
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-size: 1.05rem;
    opacity: 0.85;
}
.footer-bottom {
    background: var(--primary-dark);
    color: var(--text-muted);
    font-size: 1rem;
    border-radius: 0 0 2.5rem 2.5rem;
    margin-top: 2rem;
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
    .hero-template, .plan-card, .feature-card, .testimonial-card, .media-card, .highlight-item, .newsletter-signup, .footer-template {
        animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1) both;
    }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-template {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0 1rem 0;
    }
    .hero-template .hero-content, .hero-template .hero-image {
        padding: 0;
    }
    .hero-template .hero-image {
        justify-content: center;
        margin-top: 2rem;
    }
    .highlights-row, .features-grid, .plans-row, .newsletter-bar, .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    .plan-card, .feature-card, .testimonial-card, .media-card {
        min-width: 0;
        max-width: 100%;
    }
}

/* --- GENERAL SECTION HEADING --- */
.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a49;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.02em;
    text-align: center;
}
.section-heading::after {
    content: '';
    display: block;
    width: 3.75rem;
    height: 0.25rem;
    background: var(--accent-gradient);
    margin: 0.9375rem auto 0 auto;
    border-radius: 0.2rem;
} 