/* ==========================================
   CSS Variables & Reset
   ========================================== */

:root {
    /* Colors */
    --primary-color: #1c2d59;
    --primary-dark: #0f1a3d;
    --primary-light: #2d4178;
    --secondary-color: #ec2d7d;
    --secondary-dark: #c91d66;
    --accent-color: #ec2d7d;
    --text-dark: #ffffff;
    --text-light: #b8bcc8;
    --text-white: #ffffff;
    --bg-light: #1a1f2e;
    --bg-white: #0f1419;
    --bg-dark: #0a0d14;
    --border-color: #2d3748;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-dark);
    width: 100%;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ==========================================
   Utility Classes
   ========================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1c2d59 0%, #2d4178 50%, #ec2d7d 100%);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn * {
    position: relative;
    z-index: 2;
}

/* Material Design Ripple Effect */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 45, 125, 0.15), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
    opacity: 0;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 45, 89, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(28, 45, 89, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ==========================================
   Header & Navigation
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    background: #9ca3af;
}

.header.scrolled {
    background: rgba(107, 114, 128, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition-normal);
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
}

.header.scrolled .logo-img {
    height: 45px;
    background: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    background: linear-gradient(135deg, #1c2d59, #2d4178, #4a5f9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-normal);
}

.header.scrolled .nav-link {
    background: linear-gradient(135deg, #1c2d59, #2d4178, #4a5f9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1c2d59, #2d4178, #4a5f9d, #2d4178, #1c2d59);
    background-size: 200% 100%;
    transition: width 0.4s ease;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.nav-link:hover {
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--bg-light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    padding: 10px 0;
    margin-top: 10px;
    border: 1px solid var(--border-color);
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--bg-dark);
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    margin: 3px 0;
    transition: var(--transition-normal);
    border-radius: 2px;
}

.header.scrolled .mobile-menu-toggle span {
    background: #1f2937;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1c2d59 0%, #2d4178 60%, #4a5f9d 85%, #ec2d7d 100%);
    overflow: hidden;
}

/* Animated Electric Wave Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 200%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 2px,
            rgba(236, 45, 125, 0.03) 2px,
            rgba(236, 45, 125, 0.03) 4px
        );
    animation: electricGrid 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 200px;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23ec2d7d" fill-opacity="0.1" d="M0,160 Q360,80 720,160 T1440,160 L1440,320 L0,320 Z"><animate attributeName="d" dur="8s" repeatCount="indefinite" values="M0,160 Q360,80 720,160 T1440,160 L1440,320 L0,320 Z; M0,160 Q360,240 720,160 T1440,160 L1440,320 L0,320 Z; M0,160 Q360,80 720,160 T1440,160 L1440,320 L0,320 Z"/></path></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23ffffff" fill-opacity="0.05" d="M0,192 Q360,96 720,192 T1440,192 L1440,320 L0,320 Z"><animate attributeName="d" dur="6s" repeatCount="indefinite" values="M0,192 Q360,96 720,192 T1440,192 L1440,320 L0,320 Z; M0,192 Q360,288 720,192 T1440,192 L1440,320 L0,320 Z; M0,192 Q360,96 720,192 T1440,192 L1440,320 L0,320 Z"/></path></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%232d4178" fill-opacity="0.2" d="M0,224 Q360,128 720,224 T1440,224 L1440,320 L0,320 Z"><animate attributeName="d" dur="10s" repeatCount="indefinite" values="M0,224 Q360,128 720,224 T1440,224 L1440,320 L0,320 Z; M0,224 Q360,320 720,224 T1440,224 L1440,320 L0,320 Z; M0,224 Q360,128 720,224 T1440,224 L1440,320 L0,320 Z"/></path></svg>');
    background-size: 100% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    animation: waveMove 15s ease-in-out infinite;
    pointer-events: none;
}

/* Electric particles floating */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(236, 45, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77, 95, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 45, 125, 0.08) 0%, transparent 40%),
        rgba(0, 0, 0, 0.2);
    animation: pulseGlow 8s ease-in-out infinite;
}

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

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10%);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--text-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

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

/* ==========================================
   Services Section
   ========================================== */

.services {
    padding: var(--section-padding);
    background: var(--bg-dark);
    width: 100%;
    overflow-x: hidden;
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(236, 45, 125, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    top: 100%;
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(236, 45, 125, 0.4);
    border-color: var(--secondary-color);
    background: var(--bg-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), var(--secondary-color));
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
    transition: all 0.4s ease;
    animation: iconGradient 8s ease-in-out infinite;
}

@keyframes iconGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(360deg);
    animation: iconGradient 6s ease-in-out infinite;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-link {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 45, 125, 0.15), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
    opacity: 0;
}

.service-link:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(28, 45, 89, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ==========================================
   Products Section
   ========================================== */

.products {
    padding: var(--section-padding);
    background: var(--bg-dark);
    width: 100%;
    overflow-x: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-category {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-category::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 45, 125, 0.15), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.product-category:hover::after {
    width: 500px;
    height: 500px;
}

.product-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(236, 45, 125, 0.3);
    border-color: var(--secondary-color);
}

.product-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #1c2d59 0%, #2d4178 50%, #4a5f9d 75%, #ec2d7d 100%);
    background-size: 300% 300%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-white);
    transition: all 0.5s ease;
    animation: productGradient 10s ease-in-out infinite;
}

@keyframes productGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.product-category:hover .product-image {
    transform: scale(1.1) rotate(5deg);
    animation: productGradient 7s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(236, 45, 125, 0.4);
}

.product-category h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list {
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-list li {
    padding: 12px 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.product-list li:hover {
    background: rgba(236, 45, 125, 0.1);
    transform: translateX(5px);
    color: var(--text-white);
}

.product-list i {
    color: var(--secondary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.product-category .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */

.why-choose {
    padding: var(--section-padding);
    background: var(--bg-dark);
    width: 100%;
    overflow-x: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 45, 125, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(236, 45, 125, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1c2d59 0%, #2d4178 60%, #ec2d7d 100%);
    background-size: 200% 200%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    transition: all 0.4s ease;
    animation: featureGradient 9s ease-in-out infinite;
}

@keyframes featureGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-10deg);
    animation: featureGradient 6s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(236, 45, 125, 0.4);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* ==========================================
   CTA Section
   ========================================== */

.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c2d59, #2d4178);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,112C960,117,1056,107,1152,90.7C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.cta-content {
    text-align: center;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
}

.cta-content .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: #1f2937;
    color: var(--text-white);
    padding: 60px 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-col h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
    color: #9ca3af;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 0;
        transition: var(--transition-normal);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        border-right: 1px solid var(--border-color);
    }

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

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        color: var(--text-dark) !important;
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        background: var(--bg-light);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 20px;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 70vh;
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-buttons {
        margin-top: 20px;
        gap: 12px;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .products-grid,
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-category,
    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .product-image i {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .cta-box p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .container {
        padding: 0 15px;
    }
}

/* ==========================================
   Page Hero (for subpages)
   ========================================== */

.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1c2d59 0%, #2d4178 70%, #ec2d7d 100%);
    text-align: center;
    color: var(--text-white);
}

.page-hero h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ==========================================
   Product Detail Pages
   ========================================== */

.product-detail {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.product-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.product-intro h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.product-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.product-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.product-item:hover {
    box-shadow: 0 10px 30px rgba(236, 45, 125, 0.2);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.product-item .product-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
}

.product-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.product-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.product-content ul i {
    color: var(--secondary-color);
}

.product-benefits {
    margin-bottom: 60px;
}

.product-benefits h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1c2d59 0%, #2d4178 70%, #ec2d7d 100%);
    border-radius: 16px;
    color: var(--text-white);
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-section .btn {
    background: var(--text-white);
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background: var(--bg-light);
}

/* ==========================================
   Contact Page
   ========================================== */

.contact-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-light);
}

.social-section {
    margin-top: 40px;
}

.social-section h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-dark);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(236, 45, 125, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 10px;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.required {
    color: var(--secondary-color);
    margin-left: 2px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.alert ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.alert li {
    margin: 5px 0;
}

.alert-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(56, 142, 60, 0.1));
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.alert-error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(211, 47, 47, 0.1));
    border-left: 4px solid #f44336;
    color: #c62828;
}

/* Form Validation Styles */
.form-group {
    position: relative;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #f44336;
    background-color: rgba(244, 67, 54, 0.05);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.form-group input.success,
.form-group textarea.success {
    border-color: #4caf50;
    background-color: rgba(76, 175, 80, 0.05);
}

.form-group input.success:focus,
.form-group textarea.success:focus {
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.error-message {
    display: none;
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 5px;
    padding-left: 5px;
    animation: slideDown 0.3s ease;
}

.error-message.show {
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message i {
    font-size: 0.9rem;
}

.success-message {
    display: none;
    color: #4caf50;
    font-size: 0.85rem;
    margin-top: 5px;
    padding-left: 5px;
    animation: slideDown 0.3s ease;
}

.success-message.show {
    display: flex;
    align-items: center;
    gap: 5px;
}

.success-message i {
    font-size: 0.9rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consent-checkbox-group.error {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.05);
}

.consent-checkbox-group .error-message {
    padding-left: 32px;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-dark);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* ==========================================
   About Page
   ========================================== */

.about-content {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-intro .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
}

.mv-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    text-align: center;
    padding: 25px 15px;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-us-section {
    margin-bottom: 80px;
}

.why-us-section h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.why-us-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 45, 125, 0.2);
    border-color: var(--secondary-color);
}

.why-us-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-us-item h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.stats-section {
    background: linear-gradient(135deg, #1c2d59, #2d4178);
    padding: 60px 40px;
    border-radius: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Responsive adjustments for new pages */
@media (max-width: 968px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid,
    .product-item {
        grid-template-columns: 1fr;
    }

    .product-item .product-icon {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   Services Detail Page
   ========================================== */

.services-detail {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-intro h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-list-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.service-detail-card:hover {
    box-shadow: 0 10px 30px rgba(236, 45, 125, 0.2);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.service-detail-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1c2d59 0%, #2d4178 60%, #ec2d7d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
}

.service-detail-content h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-detail-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.service-detail-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.service-detail-content ul i {
    color: var(--secondary-color);
}

.service-process {
    margin-bottom: 60px;
}

.service-process h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #1c2d59, #2d4178);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-primary);
}

.process-step h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.process-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

@media (max-width: 968px) {
    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .process-arrow {
        display: none;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        min-width: 100%;
    }
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s ease;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 380px;
}

.cookie-consent.show {
    transform: translateX(0);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    font-size: 1.5rem;
    color: rgba(236, 45, 125, 0.7);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    display: none;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.4;
}

.cookie-text a {
    color: rgba(236, 45, 125, 0.9);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: rgba(236, 45, 125, 1);
}

.cookie-buttons button {
    padding: 6px 14px;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================
   Privacy/Cookie Policy Page
   ========================================== */

.privacy-content {
    padding: 60px 0;
    background: var(--bg-dark);
}

.privacy-text {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-text h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.privacy-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-text ul {
    color: var(--text-light);
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 25px;
    list-style: disc;
}

.privacy-text ul li {
    margin-bottom: 10px;
}

.privacy-text a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

.privacy-text a:hover {
    color: var(--primary-light);
}

.privacy-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-types {
    margin: 20px 0;
}

.cookie-type {
    background: rgba(236, 45, 125, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 15px;
}

.cookie-type h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px 0 !important;
}

.cookie-type i {
    color: var(--secondary-color);
}

.cookie-type p {
    margin-bottom: 10px;
}

.cookie-type ul {
    margin: 10px 0;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .cookie-consent-content {
        gap: 10px;
    }

    .cookie-text p {
        font-size: 0.7rem;
    }

    .cookie-buttons button {
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .privacy-text {
        padding: 30px 20px;
    }

    .privacy-text h2 {
        font-size: 1.5rem;
    }

    .privacy-text h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================
   Legal Content Pages
   ========================================== */

.legal-content {
    padding: 60px 0;
    background: var(--bg-dark);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.legal-text h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(236, 45, 125, 0.3);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.legal-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-text li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ==========================================
   Modal Styles
   ========================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal-content {
    background: var(--bg-light);
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    color: var(--text-white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.modal-close:hover,
.modal-close:focus {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 180px);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-dark);
}

.modal-body h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-body ul {
    margin: 15px 0;
    padding-left: 30px;
}

.modal-body li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.modal-footer {
    padding: 20px 30px;
    background: var(--bg-dark);
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.scroll-indicator {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-indicator i {
    color: var(--secondary-color);
    animation: bounce 2s infinite;
}

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

.scroll-indicator.hidden {
    opacity: 0.3;
}

.modal-footer .btn {
    min-width: 120px;
}

.modal-footer .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--border-color);
}

/* Checkbox Container */
.consent-checkbox-group {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.consent-checkbox label {
    color: var(--text-dark);
    line-height: 1.6;
    cursor: pointer;
    flex: 1;
}

.consent-checkbox label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.consent-checkbox label a:hover {
    color: var(--secondary-dark);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 20px;
        max-height: calc(90vh - 150px);
    }

    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .scroll-indicator {
        font-size: 0.75rem;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .legal-text {
        padding: 25px 20px;
    }

    .legal-text h2 {
        font-size: 1.3rem;
    }

    .legal-text h3 {
        font-size: 1.1rem;
    }
}
