/* Global Styles */
        :root {
            --primary-green: #2d5a3d;
            --accent-green: #48a362;
            --dark-green: #1a3326;
            --light-green: #e8f4ed;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --white: #ffffff;
            --overlay-dark: rgba(26, 51, 38, 0.85);
            --overlay-light: rgba(0, 0, 0, 0.15);
        }

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

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1.5rem 0;
        }

        header.transparent {
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        header.solid {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            transition: color 0.3s ease;
        }

        header.solid .logo {
            color: var(--primary-green);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        nav a {
            text-decoration: none;
            color: var(--white);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        header.solid nav a {
            color: var(--text-dark);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-green);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--accent-green);
            color: var(--white);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(72, 163, 98, 0.3);
        }

        .cta-button:hover {
            background: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(72, 163, 98, 0.4);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.1;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-text h2 {
            font-size: 2rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-text p {
            color: var(--white);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .hero-video {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
            max-width: 350px;
            margin: 0 auto;
        }

        .hero-video iframe {
            width: 100%;
            aspect-ratio: 9/16;
            border: none;
        }

        .hero-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .hero-cta h3 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .hero-contacts {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-contacts span {
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .certifications-mini {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .cert-badge {
            background: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            color: var(--primary-green);
            font-size: 0.9rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

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

        /* Services Section */
        .services {
            padding: 8rem 2rem;
            background: var(--light-green);
        }

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

        .eyebrow {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--accent-green);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            position: relative;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.4s ease;
        }

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

        .service-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.4s ease;
        }

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

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(26, 51, 38, 0.7), rgba(26, 51, 38, 0.95));
            z-index: 1;
        }

        .service-card-content {
            position: relative;
            z-index: 2;
            padding: 2.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .service-number {
            font-size: 4rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.2);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .service-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--accent-green);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
        }

        .service-link::after {
            content: '→';
            font-size: 1.2rem;
        }

        /* About Section */
        .about {
            padding: 8rem 2rem;
            background: var(--white);
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .about-text p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .read-more {
            color: var(--accent-green);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .ceo-message {
            background: var(--light-green);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent-green);
            margin-top: 2rem;
        }

        .ceo-message h4 {
            color: var(--primary-green);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .ceo-message p {
            color: var(--text-dark);
            font-style: italic;
        }

        .ceo-message {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .ceo-image img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .ceo-message {
                flex-direction: column;
                text-align: center;
            }
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .about-image:hover img {
            transform: scale(1.1);
        }

        /* ========== SPECIALTY SECTION ========== */
        .specialty {
            padding: 8rem 2rem;
            background: var(--dark-green);
            color: var(--white);
        }

        .specialty-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .specialty-text {
            flex: 1;
        }

        .specialty h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .specialty p {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .specialty-carousels {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            flex: 1;
            min-width: 0;
        }

        .carousel-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 1.5rem;
        }

        .carousel-section h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--accent-green);
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            gap: 1rem;
            transition: transform 0.4s ease;
        }

        .carousel-item {
            flex-shrink: 0;
            width: 180px;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            background-color: var(--light-green);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .carousel-item:hover {
            transform: scale(1.05);
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            border-radius: 0 0 12px 12px;
            pointer-events: none;
        }

        .carousel-item .title {
            position: absolute;
            bottom: 0.8rem;
            left: 0.8rem;
            right: 0.8rem;
            z-index: 1;
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 700;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .carousel-btn:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }

        /* Lightbox */
        .lightbox-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-title {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
            white-space: nowrap;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2.5rem;
            color: white;
            cursor: pointer;
            z-index: 10001;
            transition: transform 0.3s ease;
            background: none;
            border: none;
            line-height: 1;
        }

        .lightbox-close:hover {
            transform: scale(1.2);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10001;
            font-size: 2rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .lightbox-nav:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }

        .lightbox-nav.prev {
            left: 30px;
        }

        .lightbox-nav.next {
            right: 30px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Certifications Section */
        .certifications {
            padding: 8rem 2rem;
            background: var(--white);
        }

        .certifications-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .cert-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin: 3rem 0;
        }

        .cert-logo {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-green);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .cert-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .cert-logo span {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .cert-divider {
            height: 2px;
            background: linear-gradient(to right, transparent, var(--accent-green), transparent);
            margin: 3rem 0;
        }

        .cert-document {
            max-width: 600px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        /* Contact Section */
        .contact {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
            opacity: 0.3;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .contact-form {
            padding: 3rem;
        }

        .contact-form h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-green);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-button {
            background: var(--accent-green);
            color: var(--white);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            background: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(72, 163, 98, 0.4);
        }

        .contact-image {
            background: url('assets/images/header/4.jpg ') center/cover;
            position: relative;
        }

        .contact-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(45, 90, 61, 0.8), rgba(26, 51, 38, 0.6));
        }

        /* CTA Section */
        .cta-section {
            background: var(--white);
        }

        .cta-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 400px;
        }

        .cta-image {
            background: url('assets/images/header/1.jpg') center/cover;
            position: relative;
        }

        .cta-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
        }

        .cta-content {
            background: var(--dark-green);
            color: var(--white);
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-content h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-contacts {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cta-contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .cta-contact-item i {
            font-size: 1.5rem;
            width: 24px;
            text-align: center;
            color: var(--accent-green);
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--accent-green);
        }

        .footer-description {
            opacity: 0.7;
            line-height: 1.8;
        }

        .footer-section h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--accent-green);
        }

        .footer-section p {
            opacity: 0.7;
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-green);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 2rem;
        }

        .copyright {
            opacity: 0.5;
            font-size: 0.9rem;
        }

        .powered-by {
            text-align: center;
            opacity: 0.5;
            font-size: 0.9rem;
        }

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

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-green);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        
        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .hamburger-line {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        header.solid .hamburger-line {
            background-color: var(--primary-green);
        }

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

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

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

        /* Nav CTA - Hidden on desktop */
        .nav-cta {
            display: none;
        }

        /* ========== TABLET (1024px and below) ========== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-video {
                max-width: 280px;
                margin: 0 auto;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text h2 {
                font-size: 1.5rem;
            }

            .hero-footer-content {
                flex-direction: column;
                text-align: center;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .specialty-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .specialty-text {
                text-align: center;
            }

            .contact-card {
                grid-template-columns: 1fr;
            }

            .contact-image {
                min-height: 300px;
                order: -1;
            }

            .cta-container {
                grid-template-columns: 1fr;
            }

            .cta-image {
                min-height: 250px;
            }

            .cta-content {
                padding: 3rem 2rem;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }

            nav ul {
                gap: 1.5rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            .section-title {
                font-size: 2rem;
            }

            .specialty h2 {
                font-size: 2rem;
            }
        }

        /* ========== SMALL TABLET / LARGE PHONE (768px and below) ========== */
        @media (max-width: 768px) {
            /* Header - Not sticky on mobile */
            header {
                position: relative;
                padding: 1rem 0;
            }

            header.transparent {
                background: var(--dark-green);
            }

            /* Mobile Navigation */
            .mobile-menu-toggle {
                display: flex;
            }

            .header-container {
                padding: 0 1rem;
            }

            nav#main-nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: var(--dark-green);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 1000;
            }

            nav#main-nav.active {
                opacity: 1;
                visibility: visible;
            }

            nav#main-nav ul {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                text-align: center;
                padding: 0;
                margin: 0;
                list-style: none;
            }

            nav#main-nav a {
                color: var(--white) !important;
                font-size: 1.5rem;
            }

            nav#main-nav a::after {
                display: none;
            }

            /* Show CTA inside mobile nav */
            nav#main-nav .nav-cta {
                display: inline-block;
                margin-top: 1rem;
                padding: 1rem 2.5rem;
                font-size: 1.1rem;
            }

            .header-cta {
                display: none;
            }

            header.solid nav#main-nav {
                background: var(--white);
            }

            header.solid nav#main-nav a {
                color: var(--text-dark) !important;
            }

            header.solid nav#main-nav .nav-cta {
                color: var(--white) !important;
            }

            /* Hero Section */
            .hero {
                display: block !important;
                height: auto;
                min-height: auto;
                padding-top: 0;
                padding-bottom: 0;
            }

            .hero-content {
                display: flex !important;
                flex-direction: column !important;
                grid-template-columns: unset !important;
                padding: 1.5rem 1rem;
                gap: 1.5rem;
            }

            .hero-text {
                text-align: center;
            }

            .hero-text h1 {
                font-size: 1.6rem;
                line-height: 1.2;
            }

            .hero-text h2 {
                font-size: 1.1rem;
            }

            .hero-text p {
                font-size: 0.95rem;
            }

            .hero-video {
                max-width: 220px;
                margin: 0 auto;
            }

            .hero-footer {
                position: relative;
                padding: 1.5rem 1rem;
            }

            .hero-footer-content {
                flex-direction: column !important;
                text-align: center;
                gap: 1.5rem;
            }

            .hero-cta h3 {
                font-size: 1.1rem;
            }

            .hero-contacts {
                flex-direction: column;
                gap: 0.5rem;
            }

            .hero-contacts span {
                font-size: 0.9rem;
            }

            .certifications-mini {
                gap: 0.75rem;
                justify-content: center;
                flex-wrap: wrap;
            }

            .certifications-mini img {
                height: 45px !important;
            }

            /* Services Section */
            .services {
                padding: 4rem 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                height: 350px;
            }

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

            .service-number {
                font-size: 3rem;
            }

            .service-title {
                font-size: 1.25rem;
            }

            /* About Section */
            .about {
                padding: 4rem 1rem;
            }

            .about-images {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .about-image {
                aspect-ratio: 9/16 !important;
            }

            .about-image iframe {
                width: 100%;
                height: 100%;
            }

            .ceo-message {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
                gap: 1.5rem;
            }

            .ceo-image img {
                width: 120px;
                height: 120px;
            }

            /* Specialty Section */
            .specialty {
                padding: 4rem 1rem;
            }

            .specialty h2 {
                font-size: 1.75rem;
            }

            .specialty p {
                font-size: 1rem;
            }

            .carousel-section {
                padding: 1rem;
            }

            .carousel-item {
                width: 140px;
                height: 200px;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }

            /* Lightbox */
            .lightbox-nav {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }

            .lightbox-nav.prev {
                left: 10px;
            }

            .lightbox-nav.next {
                right: 10px;
            }

            .lightbox-close {
                top: 15px;
                right: 15px;
                font-size: 2rem;
            }

            .lightbox-title {
                font-size: 0.9rem;
                bottom: -35px;
            }

            /* Certifications */
            .certifications {
                padding: 4rem 1rem;
            }

            .cert-logos {
                gap: 1.5rem;
            }

            .cert-logo {
                width: 100px;
                height: 100px;
                padding: 1rem;
            }

            /* Contact Section */
            .contact {
                padding: 4rem 1rem;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }

            .contact-form h3 {
                font-size: 1.5rem;
            }

            .contact-image {
                min-height: 200px;
            }

            /* CTA Section */
            .cta-content {
                padding: 2rem 1.5rem;
            }

            .cta-content h3 {
                font-size: 1.5rem;
            }

            .cta-image {
                min-height: 200px;
            }

            /* Footer */
            footer {
                padding: 3rem 1rem 1.5rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1rem;
            }

            .social-links {
                justify-content: center;
            }

            /* Section Headers */
            .section-header {
                margin-bottom: 2rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .eyebrow {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }
        }

        /* ========== SMALL PHONE (480px and below) ========== */
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.5rem;
            }

            .hero-text h2 {
                font-size: 1rem;
            }

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

            .hero-video {
                max-width: 200px;
            }

            .hero-cta h3 {
                font-size: 1rem;
            }

            .hero-contacts span {
                font-size: 0.85rem;
            }

            .certifications-mini img {
                height: 35px !important;
                padding: 3px !important;
            }

            .service-card {
                height: 300px;
            }

            .service-number {
                font-size: 2.5rem;
            }

            .service-title {
                font-size: 1.1rem;
            }

            .service-description {
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .specialty h2 {
                font-size: 1.5rem;
            }

            .carousel-item {
                width: 120px;
                height: 170px;
            }

            .carousel-item .title {
                font-size: 0.75rem;
            }

            .ceo-image img {
                width: 100px;
                height: 100px;
            }

            .ceo-message h4 {
                font-size: 1rem;
            }

            .ceo-message p {
                font-size: 0.9rem;
            }

            .about-text p {
                font-size: 0.95rem;
            }

            .cert-logo {
                width: 80px;
                height: 80px;
                padding: 0.75rem;
            }

            .contact-form h3 {
                font-size: 1.3rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.8rem;
                font-size: 0.95rem;
            }

            .submit-button {
                padding: 0.9rem 2rem;
                font-size: 1rem;
                width: 100%;
            }

            .cta-content h3 {
                font-size: 1.3rem;
            }

            .cta-content p {
                font-size: 1rem;
            }

            .cta-contact-item {
                font-size: 0.95rem;
            }

            .footer-logo img {
                height: 45px !important;
            }

            .footer-section h4 {
                font-size: 1rem;
            }

            .footer-section p,
            .footer-description {
                font-size: 0.9rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }
        }

        /* ========== EXTRA SMALL PHONE (360px and below) ========== */
        @media (max-width: 360px) {
            .header-container {
                padding: 0 0.75rem;
            }

            .logo img {
                height: 40px !important;
            }

            .hero-text h1 {
                font-size: 1.3rem;
            }

            .hero-text h2 {
                font-size: 0.9rem;
            }

            .hero-video {
                max-width: 180px;
            }

            .carousel-item {
                width: 100px;
                height: 150px;
            }

            .service-card {
                height: 280px;
            }

            .service-card-content {
                padding: 1.25rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .cert-logo {
                width: 70px;
                height: 70px;
            }
        }

        /* ========== LANDSCAPE ORIENTATION ON MOBILE ========== */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                height: auto;
                padding: 80px 1rem 2rem;
            }

            .hero-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .hero-text h1 {
                font-size: 1.5rem;
            }

            .hero-video {
                max-width: 180px;
            }

            .hero-footer {
                position: relative;
            }

            nav#main-nav ul {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 1.5rem;
            }

            nav#main-nav a {
                font-size: 1.1rem;
            }
        }

        /* ========== HIGH DPI / RETINA DISPLAYS ========== */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .service-card-bg,
            .contact-image,
            .cta-image {
                image-rendering: -webkit-optimize-contrast;
            }
        }

        /* ========== PRINT STYLES ========== */
        @media print {
            header,
            .hero-slideshow,
            .hero-video,
            .carousel-wrapper,
            .lightbox-overlay,
            footer {
                display: none !important;
            }

            .hero {
                height: auto;
                min-height: auto;
                padding: 2rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            section {
                padding: 2rem !important;
                page-break-inside: avoid;
            }
        }