/* ===========================
   Global Styles & Variables
   =========================== */
:root {
    --primary-color: #62D84E;
    --primary-dark: #4FB83E;
    --primary-light: #E8F8E5;
    --secondary-color: #5B1CD2;
    --accent-blue: #00A1E0;
    --accent-teal: #00C7B7;
    --text-dark: #151515;
    --text-medium: #2C2C2C;
    --text-light: #535353;
    --text-lighter: #707070;
    --text-white: #FFFFFF;
    --bg-dark: #0A0A0A;
    --bg-medium: #1A1A1A;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --bg-gradient-1: linear-gradient(135deg, #62D84E 0%, #00C7B7 100%);
    --bg-gradient-2: linear-gradient(135deg, #5B1CD2 0%, #00A1E0 100%);
    --bg-gradient-3: linear-gradient(135deg, #00A1E0 0%, #62D84E 100%);
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Account for fixed header + navbar */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Top Header Bar
   =========================== */
.top-header {
    background: linear-gradient(135deg, #62D84E 0%, #00C7B7 100%);
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: none;
    border-bottom: none;
    line-height: 1;
}

.top-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1400px;
    line-height: 1;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
}

.social-links a {
    color: white;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.social-links svg {
    width: 14px;
    height: 14px;
}

.header-tagline-inline {
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    margin-right: 0.8rem;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    justify-content: flex-end;
}

.schedule-call-btn {
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.25);
    white-space: nowrap;
}

.schedule-call-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.35);
    background: linear-gradient(135deg, #d81b60 0%, #c2185b 100%);
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-contact-item:hover {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.header-contact-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Responsive Top Header */
@media (max-width: 1024px) {
    .header-tagline-inline {
        display: none;
    }
    
    .top-header-container {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 0.35rem 0;
    }
    
    .social-links {
        gap: 0.4rem;
        padding: 0.25rem 0.5rem;
    }
    
    .social-links a {
        width: 24px;
        height: 24px;
    }
    
    .social-links svg {
        width: 12px;
        height: 12px;
    }
    
    .top-header-right {
        gap: 0.5rem;
    }
    
    .schedule-call-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .header-contact-item span {
        display: none;
    }
    
    .header-contact-item {
        padding: 0.35rem;
        min-width: 32px;
        justify-content: center;
    }
    
    .header-contact-item svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 0.3rem 0;
    }
    
    .social-links {
        display: none;
    }
    
    .schedule-call-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
    
    .header-contact-item {
        padding: 0.35rem 0.5rem;
    }
    
    .navbar {
        top: 30px;
    }
    
    .hero {
        padding-top: 105px;
    }
    
    .nav-menu {
        top: 98px;
    }
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    z-index: 998;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.logo:hover svg {
    filter: drop-shadow(0 4px 8px rgba(98, 216, 78, 0.3));
}

.logo-text {
    background: var(--bg-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--bg-gradient-1);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-dark);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: white;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(98, 216, 78, 0.1) 0%, transparent 100%);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.cta-button-nav {
    background: var(--text-dark);
    color: var(--text-white);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.cta-button-nav:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(98, 216, 78, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #FAFFFE 0%, #F5FCFF 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
    z-index: -1;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(98, 216, 78, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 199, 183, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    padding: 3rem 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #6B7280;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary {
    background: #1A1A1A;
    color: #FFFFFF;
}

.cta-button.primary:hover {
    background: #2D2D2D;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background: transparent;
    color: #1A1A1A;
    border: 2px solid #E5E5E5;
    box-shadow: none;
}

.cta-button.secondary::before {
    background: rgba(0, 0, 0, 0.03);
}

.cta-button.secondary:hover {
    background: #F9FAFB;
    border-color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    justify-content: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #62D84E;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-item p {
    color: #6B7280;
    font-size: 1rem;
    font-weight: 500;
}

/* Hero image removed - using quick products instead */

/* Hero Badges Container */
.hero-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(98, 216, 78, 0.1);
    border: 1.5px solid rgba(98, 216, 78, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A1A;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Guarantee Badge */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A1A1A;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s backwards, pulse-badge 2s ease-in-out infinite;
    animation-delay: 0s, 1.5s;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 16px rgba(255, 165, 0, 0.5);
    }
}

.guarantee-badge svg {
    flex-shrink: 0;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A1A;
}

.trust-item svg {
    flex-shrink: 0;
}

/* Quick Products Section */
.quick-products {
    position: relative;
    padding: 4rem 0;
    margin-top: 2rem;
    background: linear-gradient(135deg, #FAFFFE 0%, #F5FCFF 100%);
    border-top: 1px solid rgba(98, 216, 78, 0.1);
}

.quick-products-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2rem;
}

.quick-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-product-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #F0F0F0;
    position: relative;
    overflow: hidden;
}

.quick-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #62D84E 0%, #00C7B7 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: #62D84E;
}

.quick-product-card:hover::before {
    transform: scaleX(1);
}

.quick-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out;
}

.quick-product-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.quick-product-card p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.quick-arrow {
    display: inline-block;
    font-size: 1.5rem;
    color: #62D84E;
    transition: transform 0.3s ease;
}

.quick-product-card:hover .quick-arrow {
    transform: translateX(5px);
}

/* Update primary button with icon */
.cta-button.primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-button.primary svg {
    transition: transform 0.3s ease;
}

.cta-button.primary:hover svg {
    transform: translateX(5px);
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFFFE 0%, #F5FCFF 100%);
    border-top: 1px solid rgba(98, 216, 78, 0.1);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Services Section (Products)
   =========================== */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFFFE 0%, #F5FCFF 100%);
    border-top: 1px solid rgba(98, 216, 78, 0.1);
}

/* ===========================
   Investment Products Section
   =========================== */
.investments {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFFFE 0%, #F5FCFF 100%);
    border-top: 1px solid rgba(98, 216, 78, 0.1);
}

.products-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    grid-gap: 2rem;
}

.product-card {
    background: #FFFFFF;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E0E0E0;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Highlight effect when navigated to via dropdown */
.product-card:target {
    box-shadow: 0 0 0 3px var(--primary-color), 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
    animation: pulse-highlight 1s ease-out;
}

@keyframes pulse-highlight {
    0%, 100% {
        box-shadow: 0 0 0 3px var(--primary-color), 0 12px 32px rgba(0, 0, 0, 0.12);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(98, 216, 78, 0.3), 0 12px 32px rgba(0, 0, 0, 0.12);
    }
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -webkit-linear-gradient(315deg, #62D84E 0%, #00C7B7 100%);
    background: linear-gradient(135deg, #62D84E 0%, #00C7B7 100%);
    min-height: 200px;
}

.product-image svg,
.product-image img {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
}

.product-card:hover .product-image svg,
.product-card:hover .product-image img {
    transform: scale(1.1) rotate(5deg);
}

/* Individual Product Gradients */
.product-image-travel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.product-image-dental {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%) !important;
}

.product-image-business {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

.product-image-visitors {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.product-image-supervisa {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
}

.product-image-critical {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
}

.product-image-life {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%) !important;
}

.product-image-disability {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%) !important;
}

.product-image-accident {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%) !important;
}

/* Investment Product Gradients */
.product-image-tfsa {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
}

.product-image-rrsp {
    background: linear-gradient(135deg, #ee9ca7 0%, #ffdde1 100%) !important;
}

.product-image-resp {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%) !important;
}

.product-image-fhsa {
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%) !important;
}

.product-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.product-subtitle {
    color: var(--text-lighter);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-button {
    background: var(--text-dark);
    color: var(--text-white);
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    width: 100%;
    letter-spacing: 0.3px;
}

.product-button:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 216, 78, 0.3);
}

/* Legacy service card styles for backward compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===========================
   Why Us Section
   =========================== */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFFFE 0%, #F5FCFF 100%);
    border-top: 1px solid rgba(98, 216, 78, 0.1);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.why-item {
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.why-item:hover {
    transform: translateX(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-left-color: var(--secondary-color);
}

.why-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(98, 216, 78, 0.15) 0%, rgba(0, 199, 183, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.why-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Insurance Partners Section
   =========================== */
.partners-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FAFFFE 0%, #F5FCFF 100%);
    border-top: 1px solid rgba(98, 216, 78, 0.1);
    overflow: hidden;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    padding: 2rem 0;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #F9FAFB 0%, transparent 100%);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #FFFFFF 100%);
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: scroll-partners 40s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.partner-logo-placeholder {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6B7280;
    text-align: center;
    padding: 1rem;
    letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }
    
    .partner-logo {
        width: 160px;
        height: 100px;
    }
    
    .partner-logo-placeholder {
        font-size: 0.95rem;
    }
    
    .partners-carousel::before,
    .partners-carousel::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        width: 140px;
        height: 90px;
    }
    
    .partner-logo-placeholder {
        font-size: 0.85rem;
    }
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFFFE 0%, #F5FCFF 100%);
    border-top: 1px solid rgba(98, 216, 78, 0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.star {
    color: #FCD34D;
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg-gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(98, 216, 78, 0.3);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFFFE 0%, #F5FCFF 100%);
    border-top: 1px solid rgba(98, 216, 78, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(98, 216, 78, 0.1);
}

.submit-button {
    grid-column: 1 / -1;
    padding: 1.1rem 2.5rem;
    background: var(--text-dark);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.submit-button:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(98, 216, 78, 0.25);
}

.form-message {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    display: block;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    display: block;
}

/* ===========================
   CTA Banner Section
   =========================== */
.cta-banner {
    background: var(--bg-gradient-1);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-text p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.85;
}

.cta-banner-button {
    background: var(--text-dark);
    color: var(--text-white);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.cta-banner-button:hover {
    background: var(--text-white);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-section p {
    color: #9CA3AF;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    color: #9CA3AF;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .stat-item h3 {
        font-size: 3rem;
    }
    
    /* Quick products - Tablet */
    .quick-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .hero-badges-container {
        gap: 0.85rem;
    }
    
    .guarantee-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.4rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.4rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 34px;
    }
    
    .hero {
        padding-top: 115px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 106px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
        max-height: calc(100vh - 125px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin-top: 0.5rem;
        background: rgba(98, 216, 78, 0.05);
        border-radius: 8px;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .dropdown-arrow {
        margin-left: auto;
    }
    
    .cta-button-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.03em;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1.1rem 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* New landing page elements - Mobile */
    .hero-badges-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .guarantee-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
    
    .guarantee-badge span {
        line-height: 1.3;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
    
    .hero-trust {
        gap: 1rem;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.85rem;
        flex: 0 0 auto;
    }
    
    .quick-products {
        padding: 2rem 0 0;
    }
    
    .quick-products-title {
        font-size: 1.25rem;
    }
    
    .quick-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-product-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 1.85rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-banner-button {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

