/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
}

/* CSS Variables for Brand Colors */
:root {
    --primary-purple: #4A148C;
    --primary-pink: #E91E63;
    --light-purple: #7B1FA2;
    --light-pink: #F48FB1;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-gray: #6c757d;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo .logo {
    margin-right: 0;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-m {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    position: relative;
}

.logo-n {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--light-purple) 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: -1;
}

/* Green/Black Logo Variant */
.logo-green-black .logo-m-green {
    color: #000000;
}

.logo-green-black .logo-n-green {
    color: #556B2F;
}

.logo-green-black::after {
    background: linear-gradient(135deg, #6B8E23 0%, #556B2F 100%);
}

.company-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--dark-gray);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0 auto;
}

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

.nav-link:hover {
    color: var(--primary-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    transition: width 0.3s ease;
}

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

.nav-contact {
    margin-left: auto;
}

.nav-contact .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

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

.dropdown-item {
    position: relative;
}

.dropdown-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-link:hover {
    background: var(--light-gray);
    color: var(--primary-pink);
}

.sub-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown-item:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sub-dropdown-link:hover {
    background: var(--light-gray);
    color: var(--primary-pink);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: rgba(74, 20, 140, 0.06);
}

.bar {
    width: 24px;
    height: 2.5px;
    background: var(--dark-gray);
    margin: 3.5px 0;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f0f4f8 100%);
    padding-top: 80px;
    position: relative;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1), rgba(233, 30, 99, 0.1));
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 30%;
    animation-delay: 6s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Site navigation wrapper (moved outside hero for mobile drawer) */
.site-nav {
    position: relative;
    z-index: 10;
}

@media (min-width: 769px) {
    .site-nav {
        padding-top: 6.5rem;
        padding-bottom: 0.75rem;
        margin-bottom: 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f0f4f8 100%);
        background-attachment: fixed;
    }

    .site-nav .hero-nav-menu {
        grid-column: unset;
        max-width: 1200px;
        margin: 0 auto 0;
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
    }

    main > .hero {
        margin-top: 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f0f4f8 100%);
        background-attachment: fixed;
    }

    .hero {
        padding-top: 0;
    }
}

/* Hero Navigation Menu */
.hero-nav-menu {
    grid-column: 1 / -1;
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 10;
}

.hero-nav-item {
    position: relative;
}

.hero-nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.hero-nav-link:hover {
    color: var(--primary-pink);
    background: rgba(233, 30, 99, 0.1);
}

.hero-nav-menu .dropdown-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
}

.hero-nav-menu .dropdown-item {
    position: relative;
}

.hero-nav-menu .sub-dropdown-menu {
    left: 100%;
    top: 0;
    margin-left: 0.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(74, 20, 140, 0.15);
    box-shadow: 0 8px 20px rgba(74, 20, 140, 0.1);
    transition: all 0.3s ease;
}

.hero-badge i {
    color: var(--primary-pink);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 20, 140, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Hero Graphic */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 500px;
    height: 500px;
}

.hero-center-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.center-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(74, 20, 140, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.1);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

.center-circle i {
    font-size: 3rem;
    color: var(--white);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(74, 20, 140, 0.1);
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(74, 20, 140, 0.2);
    background: rgba(255, 255, 255, 1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.floating-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.floating-card span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1), rgba(233, 30, 99, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover .card-glow {
    opacity: 1;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

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

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 20, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(74, 20, 140, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.08), rgba(233, 30, 99, 0.08));
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.services .floating-element-1 {
    position: absolute;
    top: 25%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.06), rgba(233, 30, 99, 0.06));
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.services .floating-element-2 {
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.07), rgba(74, 20, 140, 0.07));
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
    animation: float 7s ease-in-out infinite;
    animation-delay: 4s;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(74, 20, 140, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(74, 20, 140, 0.1);
    border-color: rgba(74, 20, 140, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 20px rgba(74, 20, 140, 0.3);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 35px rgba(74, 20, 140, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.service-features i {
    color: var(--primary-pink);
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-pink);
    gap: 0.8rem;
}

/* About Us Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(74, 20, 140, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(233, 30, 99, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.04), rgba(233, 30, 99, 0.04));
    border-radius: 50%;
    filter: blur(35px);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.about .floating-element-1 {
    position: absolute;
    top: 25%;
    left: 10%;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.05), rgba(233, 30, 99, 0.05));
    border-radius: 50%;
    filter: blur(22px);
    pointer-events: none;
    animation: float 9s ease-in-out infinite;
    animation-delay: 2s;
}

.about .floating-element-2 {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.06), rgba(74, 20, 140, 0.06));
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
    animation: float 7s ease-in-out infinite;
    animation-delay: 4s;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Image */
.about-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    gap: 2rem;
}

.image-container {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1), rgba(233, 30, 99, 0.1));
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-purple);
}

.image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-pink);
}

.floating-badge span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.badge-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 10%;
    left: -20px;
    animation-delay: 2s;
}

/* Info Card Below Image */
.info-card {
    width: 450px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.05), rgba(233, 30, 99, 0.05));
    border: 2px solid rgba(74, 20, 140, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 20, 140, 0.15);
    border-color: rgba(74, 20, 140, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(74, 20, 140, 0.2);
}

.info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-highlight i {
    color: var(--primary-pink);
    font-size: 1rem;
}

.info-highlight span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(74, 20, 140, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(233, 30, 99, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.04), rgba(233, 30, 99, 0.04));
    border-radius: 50%;
    filter: blur(25px);
    pointer-events: none;
}

.testimonials .floating-element-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.05), rgba(233, 30, 99, 0.05));
    border-radius: 50%;
    filter: blur(16px);
    pointer-events: none;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.testimonials .floating-element-2 {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.04), rgba(74, 20, 140, 0.04));
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
    animation-delay: 3s;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 20, 140, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-pink);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(74, 20, 140, 0.1);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(74, 20, 140, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.5rem;
}

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

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

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(74, 20, 140, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 20, 140, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .hero-nav-menu {
        display: flex;
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: transparent;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        z-index: 10001!important;
        margin: 0;
        grid-column: auto;
    }
    
    .hero-nav-menu.active {
        left: 0;
    }
    
    .hero-nav-menu .hero-nav-item {
        margin: 0.5rem 0;
    }
    
    .hero-nav-menu .hero-nav-link {
        padding: 1rem 2rem;
        border-radius: 10px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .hero-nav-menu .hero-nav-link:hover {
        background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
        color: var(--white);
    }
    
    .nav-contact {
        margin: 1rem auto 0;
    }
    
    .nav-contact .btn {
        width: 200px;
        justify-content: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-graphic {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon i {
        font-size: 1rem;
    }
    
    .center-circle {
        width: 80px;
        height: 80px;
    }
    
    .center-circle i {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-badge {
        margin: 0 auto 1rem;
        display: inline-flex;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .image-container {
        width: 300px;
        height: 300px;
    }
    
    .info-card {
        width: 100%;
        max-width: 450px;
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
    
    .info-card h4 {
        font-size: 1.3rem;
    }
    
    .info-card p {
        font-size: 0.95rem;
    }
    
    .floating-badge {
        padding: 0.75rem 1rem;
    }
    
    .floating-badge span {
        font-size: 0.8rem;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-width: 250px;
        max-width: 280px;
    }
    
    .testimonials-carousel {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* ========================================= */
/* ============ MOBILE FIXES =============== */
/* ========================================= */

@media (max-width: 768px) {

    /* 1️⃣ REMOVE CONTACT BUTTON */
    .nav-contact {
        display: none !important;
    }

    /* 2️⃣ ADD HERO TOP SPACING */
    .hero {
        padding-top: 120px; /* prevents collision */
    }

    .hero-badge {
        margin-top: 1.5rem;
    }

    /* 3️⃣ STACK HERO BUTTONS */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 85%;
        justify-content: center;
    }

    /* ===================================== */
    /* ========= MOBILE DRAWER ============= */
    /* ===================================== */

    .hero-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff; /* solid background */
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 0;
        overflow-y: auto;
        transition: 0.3s ease;
        z-index: 10001;
    }

    .hero-nav-menu.active {
        left: 0;
    }

    .hero-nav-item {
        width: 100%;
    }

    .hero-nav-link {
        width: 100%;
        padding: 1rem;
        justify-content: space-between;
        font-size: 1.1rem;
    }

    /* ===================================== */
    /* ========= DROPDOWN FIX ============== */
    /* ===================================== */

    .hero-nav-menu .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: #f5f6f8;
        width: 100%;
        display: none;
        padding: 0.5rem 0.85rem;
        box-sizing: border-box;
    }

    .dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        width: 100%;
    }

    .dropdown-link {
        width: 100%;
        padding: 0.9rem 1.35rem;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        box-sizing: border-box;
    }

    /* SUB DROPDOWN VERTICAL */
    .sub-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: #e9edf3;
        display: none;
        width: 100%;
        padding: 0.5rem;
    }

    .dropdown-item.open > .sub-dropdown-menu {
        display: block;
    }

    .sub-dropdown-link {
        display: block;
        padding: 0.8rem 1.25rem;
        text-align: left;
        box-sizing: border-box;
    }

}

/* ========================================= */
/* ========= PREMIUM MOBILE DRAWER ========= */
/* ========================================= */

@media (max-width: 768px) {

    /* Remove blank space */
    .hero-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: auto; /* remove 100vh */
        background: #ffffff;
        flex-direction: column;
        padding: 1rem 0;
        transition: 0.3s ease;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-radius: 0 0 20px 20px;
    }

    .hero-nav-menu.active {
        left: 0;
    }

    .hero-nav-item {
        width: 100%;
    }

    .hero-nav-link {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        background: transparent;
        border: none;
        justify-content: space-between;
    }

    /* Remove hover */
    .hero-nav-link:hover {
        background: transparent !important;
        color: #2c3e50 !important;
    }

    /* Dropdown container */
    .hero-nav-menu .dropdown-menu {
        position: static;
        background: #f4f6f9;
        display: none;
        padding: 0.5rem 0.85rem;
        border-radius: 12px;
        margin: 0 1rem;
        animation: fadeIn 0.3s ease;
    }

    .dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-link {
        padding: 0.9rem 1.35rem;
        font-weight: 500;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        gap: 0.75rem;
        box-sizing: border-box;
    }

    .dropdown-link .fa-chevron-right,
    .dropdown-link .fa-chevron-down,
    .hero-nav-link .fa-chevron-down {
        flex-shrink: 0;
        margin-right: 0.15rem;
    }

    /* Sub dropdown */
    .sub-dropdown-menu {
        position: static;
        background: #e9edf3;
        display: none;
        border-radius: 10px;
        margin: 0.5rem 0;
        padding: 0.5rem 0.5rem;
        animation: fadeIn 0.3s ease;
    }

    .dropdown-item.open > .sub-dropdown-menu {
        display: block;
    }

    .sub-dropdown-link {
        padding: 0.8rem 1.25rem;
        display: block;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    /* Highlight open section */
    .dropdown.open > .hero-nav-link,
    .dropdown-item.open > .dropdown-link {
        background: linear-gradient(135deg, #4A148C, #E91E63);
        color: #ffffff;
        border-radius: 12px;
    }

    /* CONTACT BUTTON IN DRAWER */
    .drawer-contact-btn {
        margin: 1rem 1.5rem 0;
        padding: 0.9rem;
        text-align: center;
        background: linear-gradient(135deg, #4A148C, #E91E63);
        color: #ffffff;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: block;
    }

    .drawer-contact-btn:hover {
        transform: none;
    }

}

.drawer-contact-btn {
    display: none;
}

/* Mobile → visible */
@media (max-width: 768px) {
    .drawer-contact-btn {
        display: block;
    }
}

/* Hamburger X toggle + mobile drawer portal (nav outside hero) */
@media (max-width: 768px) {
    .site-nav {
        position: static;
        height: 0;
        overflow: visible;
        padding: 0;
        margin: 0;
        background: none;
    }

    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 10, 30, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .mobile-menu-backdrop.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }

    .header {
        z-index: 10002 !important;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 10003;
        flex-shrink: 0;
    }

    .hero-nav-menu {
        position: fixed !important;
        top: 72px !important;
        left: -100% !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: calc(100dvh - 72px) !important;
        margin: 0 !important;
        padding: 1rem 0 1.5rem !important;
        background: #ffffff !important;
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
        border-radius: 0 0 20px 20px !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: left 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
        z-index: 10001 !important;
    }

    .hero-nav-menu.active {
        left: 0 !important;
    }

    .nav-logo {
        gap: 0.4rem;
        min-width: 0;
        flex: 1;
    }

    .nav-logo .company-name {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }
}