:root {
    --primary-teal: #0B57D0;
    --secondary-green: #C7E166;
    --dark-teal: #08429E;
    --navy-blue: #0B57D0;
    --safety-orange: #C7E166;
    --whatsapp-green: #25d366;
    --white: #ffffff;
    --light-teal: #F4F9E6;
    --light-grey: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-muted: #5e6d72;
    --font-primary: 'General Sans', 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
    --radius: 12px;
    --section-padding: 100px;
}

/* Utility Classes for SEO/Lint Fixing */
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-18 { margin-top: 18px; }
.mt-24 { margin-top: 24px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-6 { margin-bottom: 6px; }
.mb-8 { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-25 { margin-bottom: 25px; }
.mb-28 { margin-bottom: 28px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.gap-12 { gap: 12px; }
.gap-14 { gap: 14px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-50 { gap: 50px; }
.text-secondary { color: #555; }
.text-muted-alt { color: #666; }
.bg-white { background: var(--white); }
.bg-light-teal { background: var(--light-teal); }
.bg-navy { background: var(--navy-blue); }
.bg-orange-grad { background: linear-gradient(135deg, var(--safety-orange), #b2cc5b); }
.opacity-8 { opacity: 0.8; }
.opacity-9 { opacity: 0.9; }
.font-95 { font-size: 0.95rem; }
.font-11 { font-size: 1.1rem; }
.max-w-620 { max-width: 620px; }
.max-w-850 { max-width: 850px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.uppercase { text-transform: uppercase; }
.letter-spacing-2 { letter-spacing: 2px; }
.font-3rem { font-size: clamp(2rem, 5vw, 3rem); }
.text-white { color: var(--white) !important; }
.text-orange { color: var(--safety-orange) !important; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

iframe {
    width: 100%;
    border-radius: var(--radius);
}

/* Layout Containers */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-height: 40px;
    gap: 10px;
}

.btn-orange {
    background-color: var(--secondary-green);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(199, 225, 102, 0.25);
}

.btn-orange:hover {
    background-color: #b2cc5b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(199, 225, 102, 0.35);
}

.btn-teal {
    background-color: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(11, 87, 208, 0.25);
}

.btn-teal:hover {
    background-color: #0847AA;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 87, 208, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    gap: 10px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-solid {
    background-color: var(--whatsapp-green);
    color: var(--white);
    transition: var(--transition);
}

.btn-whatsapp-link {
    background-color: #C7E166;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.btn-whatsapp-link:hover {
    background-color: #b2cc5b;
    transform: translateY(-2px);
}

.btn-call-link {
    background-color: #0B57D0;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.btn-call-link:hover {
    background-color: #0847AA;
    transform: translateY(-2px);
}

.contact-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.contact-btn-grid .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
}

.btn-call-link,
.btn-whatsapp-link {
    font-size: 0.8rem;
    padding: 10px 10px;
}

/* Stack buttons at tablet widths where 4-column cards are tight */
@media (max-width: 1100px) {
    .contact-btn-grid {
        grid-template-columns: 1fr;
    }
    .btn-call-link,
    .btn-whatsapp-link {
        font-size: 0.75rem;
        padding: 9px 10px;
    }
}

@media (max-width: 480px) {
    .contact-btn-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .btn-call-link,
    .btn-whatsapp-link {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
}

.btn-phone-mobile {
    display: none;
    background-color: var(--secondary-green);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .btn-phone-mobile {
        display: inline-flex;
    }
    .header-actions-mobile {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 15px;
    }
}

/* Header & Navigation */
header.sticky-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

header.sticky-header.scrolled {
    background-color: transparent;
    box-shadow: none;
}

header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.top-bar {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-right {
    display: flex;
    gap: 30px;
}

.top-info-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.top-info-right a:hover {
    opacity: 1;
    color: var(--secondary-green);
}

.main-nav {
    background: rgb(255 255 255 / 11%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: clamp(8px, 1.5vw, 15px) 0;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    max-height: auto; /* Increased for larger logo */
}

.logo img {
    height: auto;
    max-height: clamp(50px, 8vw, 100px);
    width: auto;
    max-width: clamp(180px, 40vw, 300px);
    object-fit: contain;
    border-radius: clamp(8px, 2vw, 20px);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 0.95rem;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-green);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--navy-blue);
}

/* Hero Section & Slider - Full Screen */
.hero-slider {
    height: 100vh;
    height: 100dvh;
    width: 100%;
}

.hero-slider .swiper-wrapper {
    height: 100%;
}

.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--navy-blue);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 249, 230, 0.25) 0%, rgba(11, 87, 208, 0.15) 100%);
    z-index: 1;
}

/* Swiper Customizations - Full Screen */
.swiper-button-next, .swiper-button-prev {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.2);
    width: 56px !important;
    height: 56px !important;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--secondary-green);
    transform: scale(1.1);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.6rem !important;
}

.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: var(--white) !important;
    opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-green) !important;
    opacity: 1 !important;
    width: 32px !important;
    border-radius: 10px !important;
    transition: width 0.3s ease;
}

.swiper-pagination {
    bottom: 30px !important;
}

.hero-slider .swiper-button-next {
    right: 30px;
}

.hero-slider .swiper-button-prev {
    left: 30px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-top: 80px;
}

.hero h1, .hero h2 {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.9), 0 0 5px rgba(255, 255, 255, 1);
    color: var(--navy-blue);
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.9), 0 0 5px rgba(255, 255, 255, 1);
    color: var(--navy-blue);
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Modern About Section Redesign */
.about-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-collage-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    padding-right: 20px;
}

.collage-img-main {
    width: 85%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease;
}

.collage-img-main:hover {
    transform: translateY(-5px);
}

.collage-img-secondary {
    position: absolute;
    width: 60%;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 8px solid var(--white);
    z-index: 2;
    transition: transform 0.5s ease;
}

.collage-img-secondary:hover {
    transform: translateY(-5px) scale(1.02);
}

.experience-badge-glass {
    position: absolute;
    top: 30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: float-badge 4s ease-in-out infinite;
}

.experience-badge-glass .badge-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.experience-badge-glass .badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-content-modern h2 {
    color: var(--primary-teal);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 700;
    display: inline-block;
    padding: 6px 15px;
    background: rgba(11, 87, 208, 0.08);
    border-radius: 30px;
}

.about-content-modern h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.modern-quote {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--navy-blue);
    border-left: 4px solid var(--secondary-green);
    padding: 20px 25px;
    background: linear-gradient(90deg, rgba(199, 225, 102, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.about-content-modern p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.about-features-list li i {
    color: var(--secondary-green);
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .collage-img-main {
        width: 90%;
    }
    .collage-img-secondary {
        width: 65%;
    }
    .experience-badge-glass {
        left: 10px;
        top: -15px;
    }
}

/* About Section */
.about .grid {
    align-items: center;
    gap: 60px;
}

.about-image img {
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
}

.about-text h2 {
    color: var(--primary-teal);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-text h3 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 25px;
}

.mission-txt {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-teal);
    border-left: 6px solid var(--secondary-green);
    padding: 20px 30px;
    background: var(--light-teal);
    margin: 35px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Stats Counter */
.stats-strip {
    margin-top: 60px;
    padding: 40px;
    background: var(--light-teal);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Service Grid */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.title-line {
    width: 80px;
    height: 5px;
    background: var(--secondary-green);
    margin: 0 auto;
    border-radius: 10px;
}

.service-card {
    background: var(--light-teal);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
}

.service-card-body, .service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-item {
    background: var(--light-teal);
    padding: 40px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-item:hover {
    background: #fdfdfe; /* Very slight change to show hover without being stark white */
    border-color: #eee;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why-item i {
    font-size: 2.8rem;
    color: var(--primary-teal);
    margin-bottom: 25px;
    display: block;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating Elements */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.float-wa {
    right: 20px;
    bottom: 20px;
    background-color: var(--whatsapp-green);
    animation: pulse-wa 2s infinite;
}

.float-call {
    right: 20px;
    bottom: 90px; /* Stack above WhatsApp */
    background-color: var(--primary-teal);
    animation: bounce-item 2.5s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes pulse-wa {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes bounce-item {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Lead Magnet Form */
.callback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.callback-form input, .callback-form textarea {
    padding: 12px 15px;
    border-radius: var(--radius);
    border: 1px solid #333;
    background: #1a1a1a;
    color: var(--white);
    font-family: inherit;
}

.callback-form input:focus {
    outline: none;
    border-color: var(--secondary-green);
}

/* Footer Section */
footer {
    background: #0B57D0; /* Teal background as requested */
    color: var(--white);
    padding: var(--section-padding) 0 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--secondary-green);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--secondary-green);
    transform: translateX(5px);
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
    max-height: auto;
}

.footer-logo img {
    height: auto;
    max-height: clamp(50px, 8vw, 100px);
    width: auto;
    max-width: clamp(180px, 40vw, 300px);
    object-fit: contain;
    border-radius: clamp(8px, 2vw, 20px);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-info li, .contact-info a {
    color: var(--white) !important;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--secondary-green);
    font-size: 1.1rem;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-green);
    transform: translateY(-5px);
    color: var(--white);
}

.social-links-dark a {
    background: rgba(11, 87, 208, 0.1);
    color: var(--primary-teal);
}

.social-links-dark a:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Grid Utilities */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* =========================================
   RESPONSIVE BREAKPOINTS — FULL WEBSITE
   ========================================= */

/* === LARGE TABLET / SMALL DESKTOP (≤1100px) === */
@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { gap: 18px; }
    .section-padding { padding: 80px 0; }

    /* Service page inline 2-col grids (SEO article + sidebar) */
    .seo-article-grid {
        grid-template-columns: 1fr !important;
    }
}

/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {
    .grid-3, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { gap: 20px; }
    .section-padding { padding: 80px 0; }

    /* Footer: 4→2 cols on tablet */
    .grid-4 { grid-template-columns: repeat(2, 1fr); }

    /* Service page hero font */
    .page-header h1 { font-size: 2.4rem !important; }
}

/* === MOBILE NAV BREAKPOINT (≤991px) === */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        text-align: center;
        z-index: 1999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        gap: 0;
    }
    .nav-links li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; width: 100%; }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .top-bar .container { justify-content: center; }
    .top-info-right { display: none; }
    .btn-phone-nav { margin: 10px auto 0; display: inline-flex !important; }

    /* Dropdown on mobile */
    .dropdown { width: 100%; }
    .dropdown > a { justify-content: center; display: flex; align-items: center; gap: 6px; }
}

/* === STANDARD MOBILE (≤767px) === */
@media (max-width: 767px) {
    /* Grids → single column */
    .grid-2, .grid-3, .grid-4, .why-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 56px 0; }

    /* Hero */
    .hero-content { text-align: center; }
    .hero-btns { justify-content: center; flex-direction: column; align-items: center; }
    .hero h1, .hero h2 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero p { font-size: 1.1rem; margin-bottom: 25px; }

    /* Page headers (service pages) */
    .page-header h1 { font-size: 2rem !important; }
    .page-header-safety { min-height: 320px !important; padding: 50px 0 !important; }

    /* Stats strip (service pages) */
    .stats-strip-light .container { flex-direction: column; }
    .stat-pill { border-right: none !important; border-bottom: 1px solid #c5dde4; width: 100%; }
    .stat-pill:last-child { border-bottom: none; }
    .stats-strip { padding: 30px; }
    .stat-item h3 { font-size: 2.5rem; }

    /* Why-need cards — already 1 col via grid-4 override */

    /* Gallery grid: 2 col on mobile */
    .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }

    /* Process steps: full width */
    .process-step { flex-direction: column; }

    /* SEO Article + sidebar: stack */
    .seo-article .container > .grid,
    .seo-article .grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .seo-article [style*="position: sticky"] { position: static !important; top: auto !important; }

    /* Comparison table: allow scroll */
    .compare-table { font-size: 0.8rem; }
    .compare-table th, .compare-table td { padding: 10px 12px; }

    /* Contact page 2-col → 1 col */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 18px; }
    .form-row { grid-template-columns: 1fr !important; }
    .form-btns { grid-template-columns: 1fr !important; }

    /* Floating buttons */
    .float-call { display: flex; }

    /* Footer */
    .footer-bottom { margin-top: 40px; }
    .grid-4 { gap: 24px; }

    /* Section title */
    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 1.8rem; }

    /* Service cards */
    .service-card img { height: 220px; }

    /* Buttons in 1-col layout back to side-by-side */
    .contact-btn-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .btn-call-link, .btn-whatsapp-link { font-size: 0.9rem; padding: 12px 10px; }

    /* Related cards */
    .related-card { max-width: 440px; margin: 0 auto; }

    /* CTA banner */
    .cta-banner-grid { flex-direction: column !important; align-items: center; }

    /* FAQ */
    .faq-question { font-size: 0.92rem; padding: 14px 16px; }
    .faq-answer { padding: 0 16px; }
    .faq-answer.open { padding: 0 16px 14px; }

    /* Area pills */
    .area-pill { font-size: 0.78rem; padding: 6px 12px; }

    /* Invisible grills comparison table scroll */
    .compare-table-wrap { overflow-x: auto; }

    /* Universal inline grid override */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* === SMALL PHONES (≤480px) === */
@media (max-width: 480px) {
    /* Gallery → 1 col on very small screens */
    .gallery-grid { grid-template-columns: 1fr !important; }

    .contact-btn-grid { grid-template-columns: 1fr; gap: 8px; }
    .btn-call-link, .btn-whatsapp-link { font-size: 0.88rem; padding: 12px 14px; }

    /* Hero */
    .hero h1, .hero h2 { font-size: 1.9rem; margin-bottom: 15px; }
    .page-header h1 { font-size: 1.7rem !important; }

    /* Sections */
    .section-padding { padding: 44px 0; }
    .container { 
        padding: 0 15px; 
        max-width: 100%;
    }

    /* Cards */
    .spec-card { padding: 18px 14px; }
    .why-need-card { padding: 20px 16px; }

    /* Stats pill full block */
    .stat-pill { flex-direction: column; text-align: center; gap: 6px; padding: 16px; }

    /* Footer compact */
    .footer-col h4 { margin-bottom: 16px; }
    footer { padding: 50px 0 30px; }
}

/* Override inline grid-template-columns on service pages for mobile */
@media (max-width: 767px) {
    /* Intro 2-col (image + text) on pigeon/safety/invisible pages */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* SEO article + sidebar (2fr 1fr) */
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns:2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Sticky sidebar → static */
    [style*="position: sticky"],
    [style*="position:sticky"] {
        position: static !important;
        top: auto !important;
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Multi-page Utilities & Cleanup */
.sub-header {
    color: var(--primary-teal);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.main-header {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 25px;
}

.hero-about {
    min-height: 400px !important;
    padding: 100px 0 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-about {
    font-size: clamp(2.5rem, 6vw, 3.8rem) !important;
    line-height: 1.1;
}

.contact-info-block {
    display: block !important;
}

.standard-li {
    margin-bottom: 25px !important;
    align-items: flex-start !important;
}

.standard-icon {
    font-size: 1.5rem !important;
    color: var(--secondary-green);
}

.standard-title {
    margin-bottom: 5px !important;
    color: var(--dark-teal) !important;
}

.standard-desc {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
}

.stats-navy {
    background-color: var(--dark-teal) !important;
    color: var(--white) !important;
}

.stats-no-box {
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.stat-orange {
    color: var(--secondary-green) !important;
}

.stat-p-white {
    color: rgba(255,255,255,0.8) !important;
}

.breadcrumbs span {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumbs {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.breadcrumbs i {
    margin: 0 10px;
    font-size: 0.7rem;
    color: #ccc;
}

.breadcrumb-link-white {
    color: rgba(255,255,255,0.8) !important;
}

.page-header-safety {
    background-size: cover !important;
    background-position: center !important;
    padding: 100px 0 60px !important;
    text-align: center !important;
    color: var(--white) !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .page-header-safety {
        padding: 80px 0 40px !important;
        min-height: 350px;
    }
}

.navy-header {
    color: var(--dark-teal) !important;
}

.title-line-center {
    margin: 15px auto !important;
}

.divider-icon {
    margin: 20px 0 !important;
    color: var(--secondary-green) !important;
    font-size: 1.5rem !important;
}

.text-container-intro {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.intro-p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: var(--text-muted) !important;
}

.intro-p:not(:last-child) {
    margin-bottom: 20px !important;
}

.grid-items-center {
    align-items: center !important;
}

.p-mb-25 {
    margin-bottom: 25px !important;
}

.cta-section-navy {
    background-color: var(--dark-teal) !important;
    color: var(--white) !important;
    text-align: center !important;
}

.cta-h2 {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    margin-bottom: 20px !important;
}

.cta-p-sub {
    font-size: 1.2rem !important;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 35px !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.cta-btn-fix {
    padding: 18px 45px !important;
    font-size: 1.1rem !important;
}

.urgency-box {
    border: 3px solid var(--secondary-green);
    border-radius: 15px;
    padding: 40px;
    background: var(--light-teal);
    box-shadow: var(--shadow-md);
}

.sports-section-bg {
    background-color: #f4f4f4 !important;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 20px 20px;
}

.orange-underline {
    position: relative;
    display: inline-block;
}

.orange-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-green);
    border-radius: 2px;
}

.trust-signal-card {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.trust-signal-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.09);
}

.trust-signal-card h4 {
    color: var(--white);
    margin-bottom: 12px;
}

.trust-signal-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.trust-signal-icon {
    font-size: 2.5rem;
    color: var(--safety-orange);
    margin-bottom: 15px;
}

/* Services Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--navy-blue);
    min-width: 250px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    border-top: 3px solid var(--safety-orange);
}

.dropdown-content a {
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--safety-orange);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Glassmorphism Styles */
.glass-card {
    background: rgba(235, 246, 249, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box {
    background: var(--light-teal);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.work-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.work-hours-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.work-hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--navy-blue);
}

/* Multi-Step Dropdown Mobile Support */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        padding-left: 20px;
        width: 100%;
        border-top: none;
        border-left: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.btn-lg {
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 480px) {
    .btn-lg {
        width: 100%; /* Full width on very small screens for better clickability */
        padding: 12px 20px;
    }
}

.floating-btn:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 75px; /* Appear above the button */
    right: 0;
}

/* Tooltip adjustment for multi-button setup */
.wa-tooltip {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

/* Hide mobile call bar as requested */
.mobile-call-bar {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-call-bar {
        display: none !important;
    }
    .floating-btn {
        bottom: 20px; /* Reset bottom since bar is gone */
    }
    .float-call {
        bottom: 90px;
    }
}

/* Phone Nav Button Animation */
@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%       { transform: rotate(-15deg); }
    20%       { transform: rotate(15deg); }
    30%       { transform: rotate(-10deg); }
    40%       { transform: rotate(10deg); }
    50%       { transform: rotate(0deg); }
}
.btn-phone-nav {
    animation: pulse-btn 2s infinite;
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
    white-space: nowrap;
    color: blue !important;
}
.btn-phone-nav i {
    display: inline-block;
    animation: phone-ring 3s infinite;
}
@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6); }
    50%       { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
}

/* SEO Content Styles */
.seo-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 991px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.seo-benefits-list {
    list-style: none;
    margin-top: 20px;
}

.seo-benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.seo-benefits-list i {
    color: var(--secondary-green);
    margin-top: 5px;
    font-size: 1.2rem;
}

.locations-box {
    background: var(--light-teal);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-teal);
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-tags span {
    background: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dark-teal);
    border: 1px solid rgba(11, 87, 208, 0.2);
    font-weight: 500;
}

/* FAQ Layout */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    color: var(--primary-teal);
    transition: var(--transition);
}

.faq-answer {
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 5px;
}

/* Blog & Pricing General Content */
.blog-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}
.blog-post-content h2 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}
.blog-post-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}
.blog-post-content p {
    margin-bottom: 20px;
}
.blog-post-content ul, .blog-post-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}
.blog-post-content li {
    margin-bottom: 10px;
}

/* Pricing / Comparison Tables */
.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    margin-bottom: 35px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}
.blog-table th {
    background-color: var(--navy-blue);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}
.blog-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #555;
}
.blog-table tr:last-child td {
    border-bottom: none;
}
.blog-table tr:hover {
    background-color: #f9f9f9;
}

/* Responsive Table Pricing Matrix */
@media screen and (max-width: 768px) {
    .blog-table, .blog-table thead, .blog-table tbody, .blog-table th, .blog-table td, .blog-table tr { 
        display: block; 
    }
    
    .blog-table thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .blog-table tr { 
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px; 
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .blog-table td { 
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50% !important; 
        text-align: right; 
        font-size: 0.95rem;
    }
    
    .blog-table td:last-child {
        border-bottom: none;
    }
    
    .blog-table td::before { 
        position: absolute;
        top: 15px;
        left: 15px;
        width: 45%; 
        padding-right: 10px; 
        white-space: nowrap;
        font-weight: 700;
        text-align: left;
        color: var(--primary-teal);
    }
    
    /* Dynamic Labels Mobile */
    .blog-table td:nth-of-type(1)::before { content: "Material Type"; }
    .blog-table td:nth-of-type(2)::before { content: "Best Used For"; }
    .blog-table td:nth-of-type(3)::before { content: "Durability"; }
    .blog-table td:nth-of-type(4)::before { content: "Price (Sq.Ft)"; }
}

/* SEO Content Grid Layout - Matches Screenshot */
.seo-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.seo-main-text h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.seo-side-text {
    position: sticky;
    top: 100px;
}

.locations-box {
    background: #f0f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-teal);
    box-shadow: var(--shadow-sm);
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.location-tags span {
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-teal);
    border: 1px solid rgba(11, 87, 208, 0.15);
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.seo-benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.seo-benefits-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.seo-benefits-list i {
    color: var(--secondary-green);
    margin-top: 5px;
}

@media (max-width: 991px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .seo-side-text {
        position: static;
    }
}



/* Playful Work Process CSS */
.work-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .work-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .work-process-grid {
        grid-template-columns: 1fr;
    }
}

.work-process-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 30px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    text-align: center;
    border: 2px solid transparent;
}

.work-process-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    border-color: var(--secondary-green);
}

.work-num {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #e0e5ec;
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0.6;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
    pointer-events: none;
}

.work-process-card:hover .work-num {
    opacity: 1;
    color: var(--secondary-green);
    -webkit-text-stroke: 0px;
    transform: scale(1.2) rotate(-12deg) translate(-20px, 20px);
}

.work-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--light-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy-blue);
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.work-process-card:hover .work-icon-wrap {
    background: var(--navy-blue);
    color: var(--secondary-green);
    transform: rotate(360deg) scale(1.1);
}

.work-content h4 {
    color: var(--navy-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s ease;
}

.work-process-card:hover .work-content h4 {
    color: var(--secondary-green);
}

/* Premium Why Choose Us Section */
.why-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    animation: float-up 0.8s ease backwards;
    animation-delay: var(--anim-delay);
    z-index: 1;
}

.why-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 87, 208, 0.08);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(11, 87, 208, 0.1);
}

.why-icon-premium {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-teal) 0%, rgba(199, 225, 102, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 2;
}

.why-icon-premium i {
    font-size: 2.2rem;
    color: var(--primary-teal);
    transition: all 0.5s ease;
    z-index: 3;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-teal);
    border-radius: 50%;
    opacity: 0;
    filter: blur(15px);
    transition: all 0.5s ease;
    z-index: 1;
}

.why-card-premium:hover .why-icon-premium {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
}

.why-card-premium:hover .why-icon-premium i {
    color: var(--white);
    animation: bounce-icon 0.6s ease;
}

.why-card-premium:hover .icon-glow {
    opacity: 0.3;
    width: 120%;
    height: 120%;
}

.why-card-premium h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.why-card-premium:hover h4 {
    color: var(--primary-teal);
}

.why-card-premium p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.card-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 100%, rgba(199, 225, 102, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.why-card-premium:hover .card-border-glow {
    opacity: 1;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .why-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-premium-grid {
        grid-template-columns: 1fr;
    }
    .why-card-premium {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero-about {
        min-height: 350px !important;
        padding: 80px 0 40px !important;
    }
}


/* Modern Journey Gradient Section */
.journey-gradient-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #00223E 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.journey-gradient-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(142, 195, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.journey-gradient-section .sub-header {
    color: var(--safety-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    font-weight: 700;
}

.journey-gradient-section .main-header {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.journey-gradient-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
}

.journey-quote {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--secondary-green);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.journey-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-img-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(142, 195, 176, 0.2);
}

.journey-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.journey-img-wrapper:hover img {
    transform: scale(1.05);
}


/* Services Gradient Section */
.services-gradient-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--secondary-green) 100%);
    position: relative;
    overflow: hidden;
}

.services-gradient-section .section-title h2 {
    color: var(--white);
}

.services-gradient-section .why-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.services-gradient-section .why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.services-gradient-section .why-item span {
    color: var(--navy-blue);
}


/* Trending Solutions Section */
.trending-solutions-bg {
    background: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
}

.trending-solution-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trending-solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--safety-orange), var(--secondary-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.trending-solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.trending-solution-card:hover::after {
    opacity: 1;
}

.trending-solution-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.trending-solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trending-solution-card:hover .trending-solution-img img {
    transform: scale(1.1);
}

.trending-solution-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,1), transparent);
}

.trending-solution-body {
    padding: 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.trending-solution-body h3 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.trending-solution-body p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.trending-btn-group {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-trend {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-trend-call {
    background: var(--navy-blue);
    color: var(--white);
    border: 2px solid var(--navy-blue);
}

.btn-trend-call:hover {
    background: transparent;
    color: var(--navy-blue);
}

.btn-trend-wa {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.btn-trend-wa:hover {
    background: transparent;
    color: #25D366;
}


/* Responsive fixes for Trending Solutions */
@media (max-width: 768px) {
    .trending-btn-group {
        flex-direction: column;
        gap: 10px;
    }
    .btn-trend {
        width: 100%;
        padding: 12px;
    }
    .trending-solution-img {
        height: 180px;
    }
    .trending-solution-body {
        padding: 20px;
    }
}


/* Hero Section Responsive Fix */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    .page-header > .container > p {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
        padding: 0 15px;
    }
    .page-header {
        min-height: 350px !important;
        padding: 60px 0 !important;
    }
    .page-header .btn-trend {
        width: 100% !important;
        min-width: 100% !important;
    }
}


/* Header Transparency Override */
header.sticky-header .main-nav {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

header.sticky-header.scrolled .main-nav {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}


/* Header Link Colors Overrides */
header.sticky-header .nav-links li a {
    color: white !important;
}
header.sticky-header .menu-toggle {
    color: white !important;
}

header.sticky-header.scrolled .nav-links > li > a {
    color: var(--navy-blue) !important;
}
header.sticky-header.scrolled .menu-toggle {
    color: var(--navy-blue) !important;
}


/* Dark Overlay for Slider */
.hero-overlay {
    background: rgba(0, 32, 63, 0.75) !important;
}

/* Hide Hero Overlay Completely */
.hero-overlay {
    display: none !important;
}


/* Global Hero Responsive Overrides (Font Size & Spacing) */
.page-header {
    min-height: 320px !important;
    padding: 120px 0 60px !important;
    display: flex !important;
    align-items: center !important;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 2.8rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
}

.page-header p.animate-on-scroll:not(.uppercase) {
    font-size: clamp(0.95rem, 2vw, 1.05rem) !important;
    margin-bottom: 24px !important;
}

/* Specific to reviews hero if it exists */
.reviews-hero {
    min-height: 320px !important;
    padding: 120px 0 60px !important;
    display: flex !important;
    align-items: center !important;
    flex-direction: column !important;
    justify-content: center !important;
}
.reviews-hero h1 {
    font-size: clamp(2.2rem, 5vw, 2.8rem) !important;
    margin-bottom: 15px !important;
}

/* Mobile specific fixes just in case */
@media (max-width: 768px) {
    .page-header {
        padding: 90px 0 50px !important;
        min-height: auto !important;
    }
    .reviews-hero {
        padding: 90px 0 50px !important;
        min-height: auto !important;
    }
    .page-header h1, .reviews-hero h1 {
        font-size: 2.1rem !important;
    }
}


/* Mobile Menu Dropdown Dark Blue Theme */
@media (max-width: 768px) {
    .nav-links {
        background-color: var(--navy-blue) !important;
    }
    
    .nav-links li a {
        color: white !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--safety-orange) !important;
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    /* Force override sticky header color changes when menu is open in mobile */
    header.sticky-header .nav-links li a,
    header.sticky-header.scrolled .nav-links li a {
        color: white !important;
    }
    
    header.sticky-header .nav-links li a:hover,
    header.sticky-header.scrolled .nav-links li a:hover {
        color: var(--safety-orange) !important;
    }
    
    /* Inner 'Our Services' dropdown in mobile */
    .dropdown-content {
        background-color: #01142a !important; /* Slightly darker blue to distinguish from main menu */
        border-top: none !important;
        border-left: 2px solid var(--safety-orange) !important;
    }
    
    .dropdown-content a {
        border-bottom: none !important;
    }
}


/* --- Hero Slider Images (Responsive) --- */
.slide-1 {
    background-image: url('images/pigeon_nets_slider.webp');
}
.slide-2 {
    background-image: url('images/safety_nets_slider.webp');
}
.slide-3 {
    background-image: url('images/invisible_grills_slider.webp');
}

@media (max-width: 1024px) {
    .slide-1 {
        background-image: url('images/mslide1.png');
    }
    .slide-2 {
        background-image: url('images/mslide2.png');
    }
    .slide-3 {
        background-image: url('images/mslide3.png');
    }
}
