@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Outfit:wght@400;700&display=swap');

:root {
    --primary: #0A66C2;
    --secondary: #111111;
    --accent: #00C896;
    --bg-light: #ffffff;
    --bg-soft: #f4f7fa;
    --text-main: #222222;
    --text-muted: #666666;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Layout Parts */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 102, 194, 0.2);
    filter: brightness(1.1);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(10, 102, 194, 0.05) 0%, transparent 40%);
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Premium Service Cards */
.service-card-premium {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
    z-index: 2;
    transition: var(--transition);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    z-index: 3;
    color: var(--white);
    transition: var(--transition);
}

.service-card-icon-premium {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.service-card-premium:hover .service-card-bg {
    transform: scale(1.1);
}

.service-card-premium:hover .service-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 102, 255, 0.4), rgba(0, 0, 0, 0.9));
}

.service-card-premium:hover .service-card-content {
    transform: translateY(-10px);
}

.service-card-premium:hover .service-card-icon-premium {
    transform: rotateY(180deg);
    background: var(--white);
    color: var(--primary);
}

.service-card-premium h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white) !important;
}

.service-card-premium p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}


.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Sections */
.section {
    padding: 150px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}


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

.section-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 102, 194, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.responsive-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 6rem; 
    align-items: center;
}

@media (max-width: 991px) {
    .responsive-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
        text-align: center; 
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background: #128C7E;
}


/* Clients Strip */
.clients-strip {
    background: var(--bg-soft);
    padding: 40px 0;
    overflow: hidden;
    white-space: nowrap;
}

.clients-container {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-logo {
    display: inline-block;
    margin: 0 40px;
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(1);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 20px;
}

footer a {
    color: #999;
}

footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Premium Pricing Redesign */
.pricing-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(10, 102, 194, 0.05) 0%, transparent 70%);
}

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.pricing-toggle {
    width: 60px;
    height: 30px;
    background: #ddd;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.pricing-toggle.active {
    background: var(--primary);
}

.pricing-toggle.active::after {
    left: 33px;
}

.toggle-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
}

.toggle-label.active {
    color: var(--secondary);
}

/* Pricing Slider & Cards */
.pricing-swiper {
    padding: 20px 0 80px !important;
}
/* Clean Professional Pricing Style */
.pricing-hero-new {
    background: linear-gradient(135deg, #f8faff 0%, #e1e8ed 100%);
    padding: 180px 0 120px;
    text-align: center;
}

.pricing-hero-new h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.pricing-hero-new h1 span {
    color: var(--primary);
}

.pricing-hero-new p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.p-toggle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 4rem;
    background: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.p-label {
    font-weight: 700;
    color: #999;
    font-size: 0.95rem;
}

.p-label.active {
    color: var(--secondary);
}

.p-switch {
    width: 60px;
    height: 34px;
    background: #eee;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p-ball {
    width: 27px;
    height: 27px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.p-save {
    background: var(--accent);
    color: var(--secondary);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

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

.p-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.p-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.p-card-v2.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}

.p-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.p-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-card-v2:hover .p-card-img img {
    transform: scale(1.1);
}

.p-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured .p-card-badge {
    background: var(--accent);
    color: var(--secondary);
}

.p-card-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.p-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.p-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 2rem;
}

.p-currency { font-size: 1.2rem; font-weight: 700; color: var(--secondary); }
.p-amount { font-size: 3rem; font-weight: 800; color: var(--secondary); }
.p-period { font-size: 1rem; color: var(--text-muted); }

.p-card-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.p-card-features li {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-card-features li i {
    color: var(--accent);
}

.p-card-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: #fff !important;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.featured .p-card-btn {
    background: var(--primary);
}

.p-card-btn:hover {
    background: var(--accent);
    color: var(--secondary) !important;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.p-tab {
    padding: 12px 30px;
    border: 1px solid #e1e8ed;
    background: #fff;
    border-radius: 50px;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.p-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.2);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Info Boxes with Images */
.info-box-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.info-box-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.info-img {
    height: 140px;
    overflow: hidden;
}

.info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-box-new:hover .info-img img {
    transform: scale(1.1);
}

.info-content {
    padding: 2rem;
    text-align: center;
}

.info-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.info-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.pricing-card-premium {
    background: var(--white);
    padding: 4rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    height: 100% !important;
    /* Force Swiper to stretch slides */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes button to bottom */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    min-height: 720px;
    /* Increased to accommodate content */
}

.pricing-card-premium>div:first-child {
    flex-grow: 1;
    /* Pushes the button down */
}



.pricing-card-premium:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.pricing-card-premium.featured {
    background: var(--secondary);
    color: var(--white);
    border: none;
    box-shadow: 0 20px 50px rgba(10, 102, 194, 0.3);
}

.pricing-card-premium.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    z-index: -1;
    border-radius: 32px;
    opacity: 0.5;
    filter: blur(10px);
}

.pricing-card-premium .plan-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pricing-card-premium.featured .plan-icon {
    color: var(--accent);
}

.pricing-card-premium h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-card-premium.featured h3 {
    color: var(--white);
}

.pricing-card-premium .price {
    font-size: 2.8rem;
    /* Reduced from 3.5rem */
    font-weight: 800;
    color: var(--secondary);
    margin: 1.5rem 0;
    word-break: break-word;
    line-height: 1;
}

.pricing-card-premium.featured .price {
    color: var(--white);
}

.pricing-card-premium .price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-top: 5px;
}


.pricing-card-premium.featured .price span {
    color: #999;
}

.pricing-card-premium ul {
    text-align: left;
    margin: 2rem 0 3rem;
    flex-grow: 1;
}

.pricing-card-premium ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-card-premium ul li i {
    color: var(--accent);
    font-size: 1.1rem;
}

.pricing-card-premium .btn {
    width: 100%;
}


/* Team Slider & Cards */
.team-swiper {
    padding-bottom: 50px !important; /* Space for pagination dots */
    padding-top: 10px;
}

.swiper-pagination-bullet {
    background: var(--primary) !important;
}

.swiper-pagination {
    bottom: 0 !important;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-img {
    height: 320px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    flex-grow: 1;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

.team-info h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.team-social-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.team-social-links {
    position: absolute;
    top: 20px;
    right: 75px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.team-card:hover .team-social-links {
    opacity: 1;
    transform: translateX(0);
}

.team-social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.team-social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Swiper Pagination */
.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* =============================================
   MOBILE HAMBURGER MENU
============================================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* =============================================
   RESPONSIVE: TABLETS (max-width: 1024px)
============================================= */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        marsgin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card-premium {
        height: 400px;
    }

    .pricing-card-premium {
        min-height: 720px;
        padding: 4rem 2.5rem;
    }
}

/* =============================================
   RESPONSIVE: MOBILE NAV (max-width: 768px)
============================================= */
@media (max-width: 768px) {
    nav {
        backdrop-filter: none !important;
        background: var(--white) !important;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.05rem;
    }

    .nav-container .btn {
        display: none;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 990; /* Must be lower than nav's 1000 */
    }

    .mobile-overlay.active {
        display: block;
    }
}

/* =============================================
   RESPONSIVE: PHONES (max-width: 768px)
============================================= */
@media (max-width: 768px) {
    .container {
        padding: 0 2rem !important; /* Increased padding to prevent sticking to edges */
    }

    .home-compact-section.container {
        padding: 0 2rem !important;
    }

    /* Top Bar */
    .top-bar {
        display: none;
        /* Hide top bar on mobile to save space and reduce clutter */
    }

    nav {
        padding: 0.8rem 0;
    }

    /* Logo */
    .logo img {
        height: 35px;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        padding: 60px 0 40px;
        min-height: auto;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin: 0 auto 2rem;
        padding: 0 1.5rem;
    }

    .hero-content>div[style*="display: flex; gap: 1.5rem"] {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-image img {
        max-width: 90%;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Grid Override - Force single column on mobile */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Cards - Keep desktop padding */
    .card {
        padding: 2.5rem;
    }

    /* Service Cards - Maintain desktop height */
    .service-card-premium {
        height: 400px;
    }

    .service-card-content {
        padding: 2rem 1.5rem;
    }

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

    .service-card-premium p {
        font-size: 0.85rem;
    }

    /* Team Cards - Maintain height from desktop as requested */
    .team-card {
        height: auto;
    }

    /* Pricing - Maintain desktop dimensions */
    .pricing-card-premium {
        min-height: 720px;
        padding: 4rem 2.5rem;
    }

    .pricing-card-premium .price {
        font-size: 2.2rem;
    }

    .pricing-card-premium h3 {
        font-size: 1.4rem;
    }

    .pricing-toggle-wrap {
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    /* CTA Banner */
    .cta-banner-inner {
        padding: 3rem 1.5rem !important;
        border-radius: 20px !important;
    }

    .cta-banner-inner h2 {
        font-size: 1.8rem !important;
    }

    .cta-banner-inner p {
        font-size: 1rem !important;
    }

    /* Contact Form */
    .contact-form-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    footer {
        padding: 50px 0 15px;
    }

    .footer-bottom {
        margin-top: 30px;
        font-size: 0.8rem;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        left: 20px;
    }

    /* Clients Strip */
    .client-logo {
        margin: 0 20px;
    }

    .client-logo h3 {
        font-size: 1rem;
    }

    /* Map */
    .map-container {
        height: 300px !important;
        border-radius: 20px !important;
    }
    /* Target inline styles that are too large for mobile */
    h2[style*="font-size: 3.5rem"],
    h1[style*="font-size: 3.5rem"],
    h2[style*="font-size: 3rem"],
    h3[style*="font-size: 3rem"] {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    div[style*="gap: 4rem"], 
    div[style*="gap: 6rem"] {
        gap: 2.5rem !important;
    }
}

/* =============================================
   RESPONSIVE: SMALL PHONES (max-width: 480px)
============================================= */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .service-card-premium {
        height: 400px;
    }

    .pricing-card-premium .price {
        font-size: 1.8rem;
    }

    .team-card {
        height: auto;
    }

    /* Target inline styles that are too large for mobile */
    h2[style*="font-size: 3.5rem"],
    h1[style*="font-size: 3.5rem"],
    h2[style*="font-size: 3rem"],
    h3[style*="font-size: 3rem"] {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .cta-banner-inner h2[style*="font-size: 3rem"] {
        font-size: 1.8rem !important;
    }

    section[style*="padding-top: 150px"] {
        padding-top: 100px !important;
    }

    div[style*="gap: 4rem"], 
    div[style*="gap: 6rem"] {
        gap: 2rem !important;
    }
}

/* Ensure mobile menu visibility */
@media (max-width: 768px) {
    .nav-links {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px);
    }
}

/* Pricing Modal Styles */
.p-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.p-modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 30px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modalScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.p-modal-close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
}

.p-modal-close:hover {
    color: var(--primary);
}

.modal-header-p {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.modal-header-p h2 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.modal-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.modal-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #444;
}

.modal-features-list li i {
    color: #10b981;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .p-modal-content {
        padding: 2rem 1.5rem;
        margin: 10% auto;
    }
}