/* Global Styles */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #ff6b35;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #111;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 0.5em;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 50px 0;
    /* Reduced from 80px */
    position: relative;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    /* White bg */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Always shadow */
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    padding: 15px 0;
}

.header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: var(--white);
    transition: color 0.4s ease;
    display: none;
    /* Hide H1 if present */
}

.logo img {
    max-height: 60px;
    /* Constrain height */
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo h1,
.header.scrolled .nav-menu a,
.header.scrolled .phone-btn {
    color: var(--primary-color);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    /* Dark text */
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-btn {
    color: var(--primary-color);
    /* Dark text */
    font-weight: 600;
    white-space: nowrap;
    /* Prevent wrapping */
    font-size: 14px;
}

.talk-experts {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 10px;
}

.phone-divider {
    color: #ccc;
    margin: 0 5px;
    font-weight: 300;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.header.scrolled .mobile-toggle {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    margin: 110px auto 0;
    /* Match fixed header height of 110px */
    width: 100%;
    height: auto;
    aspect-ratio: 1450 / 550;
    /* Responsive height based on aspect ratio */
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    /* Hide by default */
    align-items: center;
    justify-content: center;
}

.slide.active {
    display: flex;
}

/* Hero Background Image */
.hero-bg-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Maintain aspect ratio and fill the container for desktop */
}

@media (max-width: 1024px) {
    .hero-bg-image {
        object-fit: contain;
        object-position: top center;
        /* Ensure top of image (where text usually is) is visible */
        background-color: #f9f9f9;
        /* Match image bg if possible */
    }
}

.slide .overlay {
    display: none;
    /* Hide overlay */
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-content .tagline {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    font-style: italic;
    color: var(--accent-color);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--white);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    /* Semi-transparent dark bg */
    border: none;
    /* Remove border */
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: var(--white);
    color: var(--primary-color);
}

#prev-slide {
    left: 30px;
}

#next-slide {
    right: 30px;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.separator-light {
    background: var(--white);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Desktop: 3 cols (6 total items fits) row/wrap logic? or 3x2 */
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Why Choose Us (Dark Blue Theme) */
.why-us {
    background-color: #0f203c;
    /* Dark Blue */
    padding: 80px 0;
    color: #fff;
}

.why-us h2 {
    color: #ffffff !important;
}

.why-stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
    text-align: center;
}

.why-stat-item {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}

.why-stat-item i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #f26522;
    /* Orange Icon */
}

.why-stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.why-stat-item p {
    font-size: 14px;
    font-weight: 700;
    color: #ddd;
    /* Removed uppercase for Title Case */
    letter-spacing: 0.5px;
}

.why-features-grid {
    display: grid;
    /* Changed to grid for equal columns */
    grid-template-columns: repeat(5, 1fr);
    /* 5 equal columns */
    gap: 20px;
    margin-top: 40px;
}

.why-feature-box {
    border: 2px solid #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
    /* Full width of grid cell */
    /* Fixed width for uniform boxes */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.why-feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.why-feature-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.why-feature-box p {
    font-size: 15px;
    font-weight: 500;
    color: #ddd;
    margin: 0;
}

/* Response Fixes for Why Us */
@media (max-width: 768px) {
    .why-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-features-grid {
        flex-direction: column;
        align-items: center;
    }

    .why-feature-box {
        width: 100%;
    }
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-item i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}



/* Pricing Section */
.pricing {
    background: #0f203c;
    padding: 80px 0;
    color: #fff;
}

.pricing h2 {
    color: #ffffff !important;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-header-row {
    text-align: right;
    margin-bottom: 20px;
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
}

.pricing-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
    color: #fff;
}

.pricing-item .package-name {
    font-weight: 700;
}

.pricing-item .package-price {
    font-weight: 500;
}

.pricing-cta {
    background-color: #fff;
    /* White Button */
    color: #0f203c;
    /* Dark Blue Text */
    border: 2px solid #fff;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background-color: transparent;
    color: #fff;
}

/* Response Pricing */
@media (max-width: 600px) {
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .pricing-header-row {
        display: none;
    }
}

/* Google Reviews Marquee */
.text-warning {
    color: #fbbc05 !important;
    /* Google Star Color */
}

/* Video Gallery */
.video-gallery {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-item:hover img {
    transform: scale(1.05);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(242, 101, 34, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 5;
    animation: pulse 2s infinite;
}

.play-btn-overlay:hover {
    background: #fff;
    color: #f26522;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(242, 101, 34, 0.9);
    /* Orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.play-btn:hover {
    background: #fff;
    color: #f26522;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 101, 34, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(242, 101, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 101, 34, 0);
    }
}

/* Response for Video Grid */
@media (max-width: 991px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.google-badge-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.google-badge-header .rating {
    font-size: 18px;
    font-weight: 700;
}

.google-reviews-viewport {
    overflow: hidden;
    /* Hide overflow */
    width: 100%;
    padding: 20px 0;
    position: relative;
    background: #f9f9f9;
}

.google-reviews-wrapper {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Force width to fit content */
    animation: marquee 40s linear infinite;
    /* Continuous scroll */
}

/* Pause on hover for readability */
.google-reviews-viewport:hover .google-reviews-wrapper {
    animation-play-state: paused;
}

.google-review-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 320px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
    /* Ensure text wraps */
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.google-icon {
    width: 24px;
    height: 24px;
}

.google-review-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    /* Limit lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Shift by half */
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    /* Added padding/gap */
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 30px;
}

/* Brands */
.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.brands-grid img {
    height: 60px;
    /* Slightly larger for visibility */
    transition: var(--transition);
    /* Active Style Color: No grayscale */
}

.brands-grid img:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #0f203c;
    color: var(--white);
    padding: 60px 0;
    /* Balanced top and bottom padding */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    /* Increased for better separation from bottom bar */
}

.footer-col h3 {
    color: var(--white);
    margin: 0 0 2px 0 !important;
    /* Reduced from 5px for tighter layout */
    font-size: 20px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-col address,
.footer-col p {
    font-style: normal;
    margin: 0 0 4px 0 !important;
    /* Force tighter rows */
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col address {
    margin-top: 0;
}

.footer-col p:last-child {
    margin-bottom: 0;
}

.social-icons {
    margin-top: 2px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: transparent;
    text-align: center;
    line-height: 41px;
    /* Slightly less for 2px border centering */
    border: 2px solid #f7c35f;
    border-radius: 50%;
    margin-right: 15px;
    color: #f7c35f;
    transition: var(--transition);
}

.social-icons a:hover {
    background: #f7c35f;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Sticky Buttons */
.sticky-btns {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btns a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.sticky-btns a:hover {
    transform: translateY(-5px);
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-call {
    background-color: var(--accent-color);
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Stats */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery .container-fluid {
    padding: 0;
    /* Full width */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    /* Fixed height per item */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 30px;
}

.section-subtitle {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 16px;
}




.sticky-btns a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--white);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-call {
    background: #3b5998;
    /* Or blue */
}

.sticky-btns a:hover {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.btn-block {
    width: 100%;
}

/* Video Slide Styles */
.video-slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-slide .overlay,
.video-slide .hero-content {
    z-index: 2;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.btn-block {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        /* Slightly less padding */
    }

    .logo img {
        max-height: 40px;
        /* Smaller logo on mobile */
    }

    .phone-btn {
        font-size: 13px;
        /* Smaller text */
        padding: 8px 15px;
        /* Adjust padding */
    }

    .mobile-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .talk-experts {
        display: none;
        /* Hide on mobile to save space */
    }

    .phone-divider {
        display: none;
        /* Hide divider on mobile as they stack */
    }

    .phone-btn {
        padding: 4px 10px;
        font-size: 12px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        /* Align with header bottom */
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        transform: translateY(-200%);
        /* Hidden */
        transition: transform 0.4s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu a {
        color: var(--text-color);
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero {
        margin-top: 110px;
        /* Reverted to 110px to match actual header height and prevent overlap */
    }

    .slider-controls button {
        width: 40px;
        /* Slightly smaller buttons on mobile */
        height: 40px;
    }

    .services-grid,
    .values-grid,
    .video-grid,
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 1 col mobile */
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header-cta {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px;
        width: 95%;
    }

    .close-modal {
        right: 15px;
        top: 10px;
    }

    .pricing-card {
        width: 100%;
    }
}

/* Enquiry Section Styles */
.enquiry-section {
    background-color: #f7c35f;
    /* Gold/Yellow from image */
    padding: 60px 0;
}

.enquiry-title {
    font-family: 'Playfair Display', serif;
    /* Or any serif font if available, fallback to italic */
    font-style: italic;
    font-size: 36px;
    color: #333 !important;
    margin-bottom: 30px;
}

.enquiry-form {
    max-width: 1000px;
    margin: 0 auto;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.enquiry-section .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.enquiry-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.enquiry-section input,
.enquiry-section select,
.enquiry-section textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    font-family: inherit;
    font-size: 15px;
}

.enquiry-section textarea {
    resize: none;
}

.phone-input-group {
    display: flex;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    background-color: #f9f9f9;
    border-right: 1px solid #eee;
    cursor: pointer;
}

.country-code img {
    width: 20px;
}

.phone-input-group input {
    border-radius: 0;
}

.btn-dark {
    background-color: #222;
    color: #fff;
    border: none;
    transition: background-color 0.3s;
}

.btn-dark:hover {
    background-color: #000;
}

.btn-enquiry {
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 4px;
    text-transform: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .enquiry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}