/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0F172A;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
}

h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

/* COMPLETE NAVIGATION REPLACEMENT */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.nav-logo h2 {
    color: #F59E0B;
    margin: 0;
    font-size: 24px;
}

.nav-logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #F59E0B;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 10001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #F59E0B;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.98);
        width: 100vw;
        height: calc(100vh - 60px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        z-index: 9999;
        padding-top: 50px;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 30px 0;
        width: 100%;
    }

    .nav-menu li a {
        font-size: 20px;
        padding: 25px;
        display: block;
        width: 100%;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Additional Mobile Responsiveness */
@media (max-width: 480px) {
    .nav-logo h2 {
        font-size: 20px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-menu li a {
        font-size: 16px;
        padding: 18px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0F172A 60%, #F9FAFB 60%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    gap: 50px;
}

.hero-content {
    color: white;
}

.hero-headline {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-support {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #F59E0B;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #D97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #0F172A;
    border: 2px solid #0F172A;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0F172A;
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Container */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: translateX(90px); /* Move right */
    margin-left: 50px; /* Add space on left pushes right */
}

/* Big Logo Styling */
.main-logo {
    text-align: center;
}

.big-logo {
    width: 250px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(245, 158, 11, 0.3));
    transition: transform 0.3s ease;
}

.big-logo:hover {
    transform: scale(1.05);
}

/* Small Logos Container */
.sub-logos {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Small Logo Styling */
.small-logo {
    width: 120px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 5px 15px rgba(245, 158, 11, 0.2));
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.small-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Quick Stats Strip */
.stats-strip {
    background: #FFFFFF;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    color: #F59E0B;
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.4;
}

/* Trusted By Developer Logos */
.trusted-by {
    background: #F1F5F9;
    padding: 80px 0;
    text-align: center;
}

.trusted-caption {
    font-size: 18px;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 50px;
}

.dev-logo {
    height: 60px;
    max-width: 150px;
    width: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    cursor: pointer;
    object-fit: contain;
}

.dev-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Mobile Responsive for Developer Logos */
@media (max-width: 768px) {
    .developer-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .dev-logo {
        height: 50px;
        max-width: 120px;
    }
    
    .trusted-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .developer-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .dev-logo {
        height: 40px;
        max-width: 100px;
    }
}


/* Flagship Wins */
.section-title {
    text-align: center;
    color: #0F172A;
    margin-bottom: 60px;
}

.win-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Why Soleil */
.why-soleil {
    background: #0F172A;
    padding: 80px 0;
}

.section-title-white {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar {
    text-align: center;
}

.pillar-icon {
    color: #F59E0B;
    font-size: 48px;
    margin-bottom: 30px;
}

.pillar-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.pillar-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Section */
.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 30px;
    color: #0F172A;
}

.form-step input,
.form-step select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-step input:focus,
.form-step select:focus {
    outline: none;
    border-color: #F59E0B;
}

.form-step button {
    width: 100%;
    padding: 15px;
    background: #F59E0B;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-step button:hover {
    background: #D97706;
}

.contact-promise i {
    color: #F59E0B;
    font-size: 24px;
}

.whatsapp-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-cta a {
    background: #F59E0B;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.whatsapp-cta i {
    font-size: 20px;
}

/* Footer */
.footer {
    background: #0F172A;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #F59E0B;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F59E0B;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #F59E0B;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-support {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .wins-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }
    
    .hero-headline {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 28px;
    }
}
/* Mobile Responsive for Logos */
@media (max-width: 768px) {
    .big-logo {
        width: 180px;
    }
    
    .sub-logos {
        gap: 20px;
    }
    
    .small-logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .big-logo {
        width: 150px;
    }
    
    .sub-logos {
        gap: 15px;
        flex-direction: column;
    }
    
    .small-logo {
        width: 100px;
    }
}
/* About Section */
.about-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
}

.about-text h3 {
    color: #0F172A;
    margin: 30px 0 15px 0;
    font-size: 24px;
}

.values-grid h3 {
    color: #0F172A;
    margin-bottom: 30px;
    font-size: 24px;
}

.value-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-item i {
    font-size: 40px;
    color: #F59E0B;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #0F172A;
    margin-bottom: 10px;
    font-size: 16px;
}

.value-item p {
    color: #64748B;
    font-size: 14px;
}

/* Services Section */
.services-section {
    background: #F9FAFB;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    gap: 60px;
}

.service-category {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.category-title {
    color: #0F172A;
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.service-card {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #E5E7EB;
}

.service-card:last-child {
    border-bottom: none;
}

.service-icon {
    flex-shrink: 0;
}

.service-icon i {
    font-size: 48px;
    color: #F59E0B;
}

.service-content h4 {
    color: #0F172A;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-pain {
    color: #64748B;
    font-style: italic;
    margin-bottom: 10px;
}

.service-solution {
    color: #0F172A;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-proof {
    color: #F59E0B;
    font-style: italic;
    margin-bottom: 20px;
}

.service-cta {
    background: #0F172A;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.service-cta:hover {
    background: #F59E0B;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.addon-card {
    text-align: center;
    padding: 30px 20px;
    background: #F9FAFB;
    border-radius: 15px;
}

.addon-card i {
    font-size: 40px;
    color: #F59E0B;
    margin-bottom: 20px;
}

.addon-card h4 {
    color: #0F172A;
    margin-bottom: 15px;
    font-size: 18px;
}

.addon-card p {
    color: #64748B;
    font-size: 14px;
}

/* Case Studies Section */
.case-studies-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.filter-btn.active,
.filter-btn:hover {
    background: #F59E0B;
    border-color: #F59E0B;
    color: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.case-image {
    height: 200px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 30px;
}

.case-title {
    color: #0F172A;
    font-size: 20px;
    margin-bottom: 20px;
}

.case-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat {
    background: #F59E0B;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.case-challenge {
    color: #64748B;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 14px;
}

.case-actions {
    margin-bottom: 15px;
}

.case-actions strong {
    color: #0F172A;
}

.case-actions ul {
    margin-top: 10px;
    padding-left: 20px;
}

.case-actions li {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 5px;
}

.case-result {
    color: #F59E0B;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .value-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}
/* MOBILE MENU FIX - Add to bottom of styles.css */

/* 1. Fix Z-Index Overlap */
@media (max-width: 768px) {
    .nav-menu {
        z-index: 9999 !important; /* Bring above everything */
        top: 60px !important; /* Align directly below navbar */
    }
    
    .hamburger {
        z-index: 10000 !important; /* Keep hamburger above menu */
    }
}

/* 2. Fix Navbar Height Consistency */
.navbar {
    height: 60px; /* Fixed height for consistent positioning */
    padding: 0; /* Remove variable padding */
    display: flex;
    align-items: center;
}

.nav-container {
    height: 60px; /* Match navbar height */
    align-items: center;
}

/* 3. Ensure Menu Visibility */
@media (max-width: 768px) {
    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
/* FORCE MOBILE MENU WIDTH REDUCTION */
@media screen and (max-width: 768px) {
    /* Override existing nav-menu styles with higher specificity */
    .navbar .nav-menu,
    .navbar .nav-menu.active,
    .nav-container .nav-menu,
    .nav-container .nav-menu.active {
        width: 70vw !important;
        max-width: 280px !important;
        min-width: 250px !important;
        right: 0 !important;
        left: auto !important;
        transform: translateX(100%) !important; /* Initially hidden off-screen */
    }

    /* When menu is active, slide it in */
    .navbar .nav-menu.active,
    .nav-container .nav-menu.active {
        transform: translateX(0) !important; /* Slide in from right */
        right: 0 !important;
        left: auto !important;
    }

    /* Adjust menu items for narrower width */
    .nav-menu li {
        width: 100% !important;
        margin: 0 !important;
    }

    .nav-menu li a {
        font-size: 15px !important;
        padding: 12px 15px !important;
        text-align: left !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Add visual improvements */
    .nav-menu {
        border-radius: 15px 0 0 15px !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3) !important;
        padding: 20px 0 !important;
    }
}

/* The Momentum Continues Section - Clean Version */
.momentum-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 120px 0;
    position: relative;
}

/* Subtle Background Pattern */
.momentum-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.momentum-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

/* Grid Layout */
.momentum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card Design */
.momentum-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.momentum-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.momentum-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.momentum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.momentum-card:hover .momentum-image img {
    transform: scale(1.08);
}

/* Subtle Overlay for Premium Feel */
.momentum-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.momentum-card:hover .momentum-overlay {
    opacity: 1;
}

/* Content - Title Only */
.momentum-content {
    padding: 25px;
    text-align: center;
}

.momentum-title {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.momentum-card:hover .momentum-title {
    color: #F59E0B;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .momentum-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .momentum-section {
        padding: 80px 0;
    }
    
    .momentum-header {
        margin-bottom: 50px;
    }
    
    .momentum-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .momentum-image {
        height: 320px;
    }
    
    .momentum-title {
        font-size: 17px;
    }
    
    .momentum-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .momentum-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 320px;
    }
    
    .momentum-image {
        height: 380px;
    }
    
    .momentum-title {
        font-size: 18px;
    }
}
/* CTA Navigation Buttons */
.cta-navigation .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.cta-navigation .cta-btn:first-child:hover {
    background: #D97706;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column !important;
        align-items: center;
    }
    
    .cta-navigation .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}
/* Contact Page Styles */
.contact-page .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-page .contact-card a:hover {
    color: #F59E0B;
}

.contact-page a[href^="https://wa.me"]:hover {
    background: #20BA5A;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-page h1 {
        font-size: 36px !important;
    }
    
    .contact-page p {
        font-size: 16px !important;
    }
    
    .logo-strip {
        gap: 30px !important;
    }
    
    .dev-logo {
        height: 50px !important;
        max-width: 120px !important;
    }
}

@media (max-width: 480px) {
    .contact-page h1 {
        font-size: 28px !important;
    }
    
    .logo-strip {
        flex-direction: column;
        gap: 25px !important;
    }
}
/* Leadership Team Section */
.leadership-section .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.leader-card h3 {
    color: #0F172A;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.leader-card p:first-of-type {
    color: #F59E0B;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-card p:last-of-type {
    color: #64748B;
    line-height: 1.6;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .value-items {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .leadership-section h2 {
        font-size: 36px !important;
    }
    
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 480px) {
    .leadership-section h2 {
        font-size: 28px !important;
    }
    
    .about-section h2 {
        font-size: 32px !important;
    }
}
/* LinkedIn Icon Hover */
.leader-card a[href*="linkedin"]:hover {
    color: #005582;
    transform: scale(1.1);
}
/* Logo hover effect */
.nav-logo a:hover h2 {
    color: #D97706;
    transition: color 0.3s ease;
}