:root {
    /* Color Palette - Premium Crisp White & Water Blue */
    /* Primary Colors - Blue & Poster Green Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    
    --accent-primary: #0ea5e9;    /* Ocean Blue */
    --accent-secondary: #10b981;  /* Poster Green / Emerald */
    --accent-light: #bae6fd;      /* Light Drop */
    --accent-glow: rgba(14, 165, 233, 0.3);
    
    /* Background Colors - Clean White Theme */
    --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    
    --border-light: #e2e8f0;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}
.glow-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    z-index: 1;
}

/* Water Flash / Shimmer Animation */
.btn-primary::after, .glow-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: waterFlash 4s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes waterFlash {
    0% { left: -100%; }
    15% { left: 200%; }
    100% { left: 200%; }
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.center {
    text-align: center;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 10px 25px var(--accent-glow);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--bg-secondary);
    color: var(--accent-primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.water-drop {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50% 50% 50% 5px;
    transform: rotate(45deg);
    animation: dropPulse 1.5s infinite ease-in-out;
}

@keyframes dropPulse {
    0% { transform: scale(0.8) rotate(45deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(45deg); opacity: 1; box-shadow: 0 0 20px var(--accent-glow); }
    100% { transform: scale(0.8) rotate(45deg); opacity: 0.7; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

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

.logo img {
    height: 60px;
    transition: var(--transition-normal);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    height: 100%;
    align-items: center;
}

.nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-primary);
}

/* Mega Menu Dropdown */
.nav-item-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 2.5rem;
    width: 900px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    pointer-events: none;
    z-index: 1001;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu-section h4 {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--bg-tertiary);
    padding-bottom: 0.75rem;
}

.mega-menu-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-section ul li a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    font-weight: 500;
}

.mega-menu-section ul li a i {
    color: var(--accent-primary);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.mega-menu-section ul li a:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateX(4px);
}

.mega-menu-section ul li a:hover i {
    opacity: 1;
    transform: scale(1.15);
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.mobile-menu-overlay.open {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
}

.mobile-links a {
    color: var(--text-primary);
    font-weight: 500;
}

/* Base Page Layouts (For multi-page content) */
.page-header {
    padding-top: 12rem;
    padding-bottom: 5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-content {
    padding: 5rem 0;
    min-height: 50vh;
}

/* -------------------------------------- */
/* INNOVATIVE MODERN COMPONENT ADDITIONS  */
/* -------------------------------------- */

/* Tech Marquee */
.tech-marquee-container {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.tech-marquee {
    display: inline-block;
    animation: marquee 35s linear infinite;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tech-marquee span {
    margin: 0 2.5rem;
}

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

/* Innovative Glassmorphism Grid Framework */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.bento-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Global Aurora Background System */
.aurora-bg {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.aurora-bg::before, .aurora-bg::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    z-index: 0;
    filter: blur(90px);
    opacity: 0.12;
    animation: float 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.aurora-bg::before {
    top: -20%;
    left: -10%;
    background: var(--accent-primary);
}

.aurora-bg::after {
    bottom: -20%;
    right: -10%;
    background: var(--accent-secondary);
    animation-delay: -6s;
}

.aurora-bg > * {
    position: relative;
    z-index: 1;
}


/* Hero Section */
.hero {
    position: relative;
    padding-top: 15rem;
    padding-bottom: 13rem; /* Extra space for waves */
    overflow: hidden; /* Prevent horizontal scroll from waves */
    overflow-x: hidden;
    background: var(--bg-secondary);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    perspective: 1200px;
}

/* Reduced size and modern 3D animation for the hero specifically */
.hero-dynamic-card {
    max-width: 380px; /* Reduced from taking full column */
    margin: 0 auto;
    animation: floatingTech 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floatingTech {
    0% { transform: translateY(0) rotateX(2deg) rotateY(-5deg); }
    50% { transform: translateY(-15px) rotateX(-2deg) rotateY(5deg); }
    100% { transform: translateY(0) rotateX(2deg) rotateY(-5deg); }
}

/* Floating SaaS Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    pointer-events: none;
    font-size: 0.95rem;
}

.floating-badge i {
    color: var(--accent-primary);
    font-size: 1.15rem;
}

.badge-1 {
    top: 15%;
    left: -40px;
    animation: float 4.5s ease-in-out infinite reverse;
}

.badge-2 {
    bottom: 25%;
    right: -50px;
    animation: float 6.5s ease-in-out infinite;
}

/* Water Bubbles Animation */
.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.6), 0 5px 15px rgba(0,0,0,0.05);
    animation: riseup 15s infinite ease-in;
    z-index: 0;
}

@keyframes riseup {
    0% { transform: translateY(0) scale(1) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-400px) scale(1.1) translateX(20px); }
    90% { opacity: 1; }
    100% { transform: translateY(-1000px) scale(1.5) translateX(-20px); opacity: 0; }
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 12s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 25px; height: 25px; left: 25%; animation-duration: 8s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 55px; height: 55px; left: 45%; animation-duration: 15s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 35px; height: 35px; left: 60%; animation-duration: 11s; animation-delay: 1s; }
.bubble:nth-child(5) { width: 65px; height: 65px; left: 75%; animation-duration: 17s; animation-delay: 5s; }
.bubble:nth-child(6) { width: 20px; height: 20px; left: 85%; animation-duration: 9s; animation-delay: 3s; }
.bubble:nth-child(7) { width: 45px; height: 45px; left: 95%; animation-duration: 13s; animation-delay: 6s; }

/* Animated Multi-layer Waves */
.hero-waves-container {
    position: absolute;
    bottom: -2px; /* Pull down slightly to avoid gaps */
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 120" fill="%23ffffff" xmlns="http://www.w3.org/2000/svg"><path d="M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,120L1360,120C1280,120,1120,120,960,120C800,120,640,120,480,120C320,120,160,120,80,120L0,120Z"></path></svg>') repeat-x;
    background-size: 1440px auto;
    background-position: bottom;
}

.hero-wave.w1 { opacity: 0.2; animation: waveScroll 25s linear infinite; height: 160px; }
.hero-wave.w2 { opacity: 0.4; animation: waveScroll 20s linear infinite reverse; height: 130px; }
.hero-wave.w3 { opacity: 1; animation: waveScroll 15s linear infinite; height: 100px; }

@keyframes waveScroll {
    from { background-position-x: 0; }
    to { background-position-x: 1440px; }
}

/* Features */
.features {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Promo Banner */
.promo {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background-attachment: fixed;
    overflow: hidden;
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Light overlay */
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-grid a {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    transition: var(--transition-normal);
}

.gallery-grid a:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.2);
    z-index: 2;
    position: relative;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-secondary);
}

.faq-header h3 {
    font-size: 1.125rem;
    font-weight: 500;
}

.faq-header i {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-content p {
    padding-bottom: 1.5rem;
    padding-top: 1rem;
}

.faq-item.active {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.faq-item.active .faq-header {
    background: rgba(14, 165, 233, 0.05);
}

.faq-item.active .faq-header h3 {
    color: var(--accent-secondary);
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    max-height: 500px; /* arbitrary large value */
}

/* Global Contact Section (in Footer element) */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding-top: 6rem;
}

.footer-contact-form {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 4rem;
    border: 1px solid var(--border-light);
}

.footer-contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.contact-form-group input, 
.contact-form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-secondary);
    transition: var(--transition-fast);
}

.contact-form-group input:focus, 
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    transition: var(--transition-fast);
    border: 1px solid var(--border-light);
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 5px;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    align-items: center;
}

.contact-list i {
    color: var(--accent-primary);
    font-size: 1.125rem;
}

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

.footer-links a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container { gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .mega-menu {
        width: 400px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-primary { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; }
    
    .section-header h2 { font-size: 2.25rem; }
    .promo-content h2 { font-size: 2.25rem; }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .contact-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .hero { padding-top: 10rem; padding-bottom: 5rem; }
}
