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

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

        :root {
            --primary: #1D6D37;
            --primary-dark: #1D6D37;
            --dark: #1a1a1a;
            --gray: #666666;
            --light-gray: #f8f9fa;
            --border: #e0e0e0;
        }

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

        p {
            font-family: 'Inter', sans-serif;
        }

        /* Top Bar */
        .top-bar {
            background: var(--light-gray);
            padding: 10px 0;
            font-size: 14px;
            border-bottom: 1px solid var(--border);
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: end;
        }

        .contact-info {
            display: flex;
            gap: 30px;
            color: var(--gray);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-item i {
            color: var(--primary);
            font-size: 13px;
        }

        .cert-badges {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .cert-badge {
            height: 60px;
            opacity: 0.8;
        }

        /* Navigation */
        .main-nav {
            background: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 5px;
            list-style: none;
            margin: 0;
        }

        .nav-link {
            color: var(--gray);
            text-decoration: none;
            padding: 10px 18px;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

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

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 8px;
            padding: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            margin-top: 10px;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            color: var(--gray);
            text-decoration: none;
            padding: 10px 14px;
            display: block;
            font-size: 14px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .dropdown-item:hover {
            background: var(--light-gray);
            color: var(--primary);
        }

        .btn-cta {
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
            margin-left: 20px;
        }

        .btn-cta:hover {
            background: var(--primary-dark);
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* About Us Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 100px 0;
            position: relative;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('../images/jetengine.jpg') center/cover no-repeat;
            opacity: 0.1;
        }

        .about-hero-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
        }

        .about-hero-title {
            font-size: 48px;
            font-weight: 500;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .about-hero-description {
            font-size: 18px;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 35px;
        }

        /* About Us Content Section */
        .about-content {
            padding: 80px 0;
            background: #ffffff;
        }

        .about-image-wrapper {
            position: relative;
            height: 100%;
            min-height: 500px;
        }

        .about-main-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .about-content-wrapper {
            padding: 40px 60px;
        }

        .about-section-subtitle {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .about-section-title {
            font-size: 3rem;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .about-description {
            color: #7a7a7a;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-stats {
            display: flex;
            gap: 60px;
            margin: 50px 0 40px;
            flex-wrap: wrap;
        }

        .about-stat-item {
            text-align: center;
        }

        .about-stat-number {
            font-size: 4rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
        }

        .about-stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
        }

        .about-values {
            margin-top: 60px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .value-item {
            text-align: center;
            padding: 30px 20px;
            background: var(--light-gray);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .value-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .value-description {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Hero Section */
        .hero {
            padding: 100px 0;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/planehero.jpg') center/cover no-repeat;
        }

        .hero-content {
            max-width: 650px;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 500;
            color: white;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .hero-title .highlight {
            color: var(--primary);
        }

        .hero-description {
            font-size: 18px;
            color: white;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 16px 36px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 102, 204, 0.3);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            padding: 16px 36px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid var(--primary);
            cursor: pointer;
            transition: all 0.3s;
        }

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

        /* Responsive */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .nav-menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            .nav-link {
                width: 100%;
                padding: 12px 0;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: var(--light-gray);
                margin-top: 8px;
            }

            .btn-cta {
                width: 100%;
                margin: 15px 0 0;
            }

            .hero-title {
                font-size: 42px;
                color: white;
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 100%;
                background: url(..images/planehero.jpg) center / cover no-repeat;

                background-overlay: rgba(255, 255, 255, 0.7);
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 12px;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .hero {
                padding: 60px 0;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
                color: white;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 100%;
                background:
                    linear-gradient(rgba(0, 0, 0, 0.7), rgba(39, 34, 34, 0.7)),
                    url('https://media.istockphoto.com/id/155439315/photo/passenger-airplane-flying-above-clouds-during-sunset.webp?b=1&s=612x612&w=0&k=20&c=E68ksW1MTzGZGHOxSYHu-y9I2Nv0iqbJCkER9e3K7TM=') center / cover no-repeat;
            }

        }

        @media (max-width: 991px) {
            .about-content-wrapper {
                padding: 40px 30px;
            }

            .about-section-title {
                font-size: 2.5rem;
            }

            .about-stats {
                gap: 40px;
            }

            .about-stat-number {
                font-size: 3rem;
            }
        }

        @media (max-width: 767px) {
            .about-hero {
                padding: 60px 0;
            }

            .about-hero-title {
                font-size: 36px;
            }

            .about-content {
                padding: 60px 0;
            }

            .about-image-wrapper {
                margin-bottom: 40px;
            }

            .about-main-image {
                height: 400px;
            }

            .about-content-wrapper {
                padding: 0;
            }

            .about-section-title {
                font-size: 2rem;
                text-align: center;
            }

            .about-stats {
                justify-content: center;
            }

            .about-stat-number {
                font-size: 2.5rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 32px;
            }

            .cert-badge {
                height: 28px;
            }

            .logo {
                font-size: 24px;
            }

            .logo-icon {
                width: 38px;
                height: 38px;
            }

            .about-hero-title {
                font-size: 32px;
            }

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

            .about-stat-number {
                font-size: 2rem;
            }
        }

        /* Private Jet Performance Section Styles */
        .jet-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .title-divider {
            width: 60px;
            height: 2px;
            background-color: var(--primary);
            margin: 0 auto 60px;
        }

        .jet-container {
            position: relative;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .plane-wrapper {
            position: relative;
            text-align: center;
            padding: 100px 0;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .plane-img {
            max-width: 100%;
            height: auto;
            width: 600px;
            position: relative;
            z-index: 1;
        }

        .feature-box {
            position: absolute;
            max-width: 280px;
        }

        .feature-box h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .feature-box p {
            font-size: 0.88rem;
            line-height: 1.6;
            color: #666;
            margin: 0;
        }

        /* Positioning for 6 items - closer to plane */
        .top-left {
            top: 80px;
            left: 50px;
        }

        .top-center {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .top-right {
            top: 80px;
            right: 50px;
        }

        .bottom-left {
            bottom: 80px;
            left: 50px;
        }

        .bottom-center {
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
        }

        .bottom-right {
            bottom: 80px;
            right: 50px;
        }

        @media (max-width: 1200px) {
            .plane-wrapper {
                min-height: 600px;
                padding: 80px 0;
            }

            .feature-box {
                max-width: 260px;
            }

            .feature-box h3 {
                font-size: 1rem;
            }

            .feature-box p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 2.5rem;
            }

            .feature-box {
                position: relative;
                max-width: 100%;
                margin-bottom: 30px;
                text-align: center;
            }

            .plane-wrapper {
                padding: 30px 0;
                min-height: auto;
            }

            .plane-img {
                width: 100%;
                max-width: 500px;
            }

            .top-left,
            .top-center,
            .top-right,
            .bottom-left,
            .bottom-center,
            .bottom-right {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                transform: none;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 2rem;
            }
        }

        /* Hero Section Styles for Armson Homes */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('https://images.pexels.com/photos/30358364/pexels-photo-30358364/free-photo-of-close-up-view-of-airplane-jet-engine-on-tarmac.jpeg') center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            padding: 60px 0;
        }

        

        .logo-text {
            color: white;
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .logo-triangle {
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 35px solid white;
            margin: 0 auto 5px;
            position: relative;
        }

        .logo-triangle::after {
            content: '';
            position: absolute;
            top: 8px;
            left: -12px;
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-bottom: 20px solid #1D6D37;
        }

        .content-wrapper {
            width: 100%;
        }

        .hero-content {
            color: white;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 20px;
           
        }

        

        

        .hero-content p {
            font-size: 1rem;
            line-height: 1.6;
            margin-top: 20px;
            opacity: 0.9;
            max-width: 600px;
        }

        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .contact-card h2 {
            font-size: 2rem;
            font-weight: 500;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #1D6D37;
            box-shadow: 0 0 0 0.2rem rgba(26, 147, 111, 0.25);
        }

        .btn-quote {
            background: #1D6D37;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            width: 100%;
            margin-top: 10px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-quote:hover {
            background: #158a5e;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(26, 147, 111, 0.3);
        }

        .privacy-text {
            font-size: 0.85rem;
            color: #666;
            text-align: center;
            margin-top: 20px;
        }

        .privacy-text a {
            color: #1D6D37;
            text-decoration: none;
        }

        .privacy-text a:hover {
            text-decoration: underline;
        }

        .floating-btn {
            position: fixed;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        .phone-btn {
            bottom: 140px;
            left: 30px;
            background: #25d366;
        }

        .whatsapp-btn {
            bottom: 70px;
            left: 30px;
            background: #25d366;
        }

        .scroll-top-btn {
            bottom: 70px;
            right: 30px;
            background: #1D6D37;
        }

        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 3rem;
            }

            .contact-card {
                margin-top: 40px;
                padding: 30px;
            }
        }

        @media (max-width: 767px) {
            .hero-section {
                padding: 40px 0;
            }

            .logo {
                top: 20px;
                left: 20px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .contact-card {
                padding: 25px;
            }

            .contact-card h2 {
                font-size: 1.5rem;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .phone-btn {
                bottom: 120px;
                left: 20px;
            }

            .whatsapp-btn {
                bottom: 60px;
                left: 20px;
            }

            .scroll-top-btn {
                bottom: 60px;
                right: 20px;
            }
        }

        @media (max-width: 575px) {
            .hero-content h1 {
                font-size: 1.75rem;
            }

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

        /* About Section Styles - Adapted for SKY MAX */
        .about-section {
            padding: 80px 0;
            background: #f5f5f5;
        }

        .image-wrapper {
            position: relative;
            height: 100%;
            min-height: 500px;
        }

        .gold-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 85%;
            height: 180px;
            background: #1D6D37;
            z-index: 1;
        }

        .main-image {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 600px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            margin-top: 60px;
            margin-left: 40px;
        }

        .content-wrapper {
            padding: 40px 60px;
        }

        .section-subtitle {
            color: #1D6D37;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .title-underline {
            width: 180px;
            height: 4px;
            background: #1D6D37;
            margin-bottom: 40px;
        }

        .description-text {
            color: #7a7a7a;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .stats-container {
            display: flex;
            gap: 60px;
            margin: 50px 0 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
        }

        .learn-more-btn {
            background: #1D6D37;
            color: white;
            border: none;
            padding: 18px 45px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .learn-more-btn:hover {
            background: #158a5e;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26, 147, 111, 0.3);
        }
        

        @media (max-width: 991px) {
            .content-wrapper {
                padding: 40px 30px;
                margin-top: 0px;
            }

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

            .main-image {
                height: 500px;
                margin-left: 20px;
            }

            .stats-container {
                gap: 40px;
            }

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

        @media (max-width: 767px) {
            .about-section {
                padding: 0;
            }

            .image-wrapper {
                min-height: 400px;
                margin-bottom: 40px;
            }

            .gold-overlay {
                width: 70%;
                height: 120px;
                display: none;
            }

            .main-image {
                height: 400px;
                margin-left: 0px;
                margin-top: 40px;
            }

            .content-wrapper {
                padding: 0px;
            }

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

            .title-underline {
                width: 120px;
            }

            .stats-container {
                gap: 30px;
                justify-content: center;
            }

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

            .stat-label {
                font-size: 1rem;
            }

            .learn-more-btn {
                padding: 15px 35px;
                width: 100%;
            }
        }

        @media (max-width: 575px) {
            .section-title {
                font-size: 1.75rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stats-container {
                gap: 25px;
            }
        }

        /* Animation for counting effect */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-item {
            animation: countUp 0.8s ease-out;
        }

        /* Services Section Styles - Adapted for SKY MAX */
        .services-section {
            padding: 80px 0;
            background: #f8f8f8;
        }

        .left-sidebar {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            padding: 20px 8px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .left-sidebar-text {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            color: white;
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .arrow-icon {
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
        }

        .slider-container {
            position: relative;
            height: 100%;
        }

        .aircraft-image {
            width: 100%;
            height: 700px;
            object-fit: cover;
            border-radius: 0;
        }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            width: 14px;
            height: 14px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            padding: 60px 80px;
        }

        .feature-item {
            text-align: left;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 25px;
        }

        .feature-icon svg {
            width: 100%;
            height: 100%;
        }

        .feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .feature-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
        }

        .services-section .feature-item .feature-icon i {
            font-size: 2.5rem;
            color: #1D6D37;
        }

        @media (max-width: 991px) {
            .features-grid {
                padding: 40px 40px;
                gap: 40px;
            }

            .aircraft-image {
                height: 500px;
            }
        }

        @media (max-width: 767px) {
            .left-sidebar {
                display: none;
            }

            .services-section {
                padding: 60px 0;
            }

            .aircraft-image {
                height: 400px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                padding: 30px 20px;
                gap: 35px;
            }

            .feature-item {
                text-align: center;
            }

            .feature-icon {
                margin: 0 auto 20px;
            }
        }

        /* Fade animation for slider */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Footer Styles - Adapted for SKY MAX */
        .main-footer {
            background: #ffffff;
            color: #2d3748;
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
            font-family: 'Georgia', serif;
        }

        .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #1D6D37, transparent);
        }

        /* Decorative Background */
        .footer-bg-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(26, 147, 111, 0.03), transparent);
            pointer-events: none;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            left: -50px;
        }

        /* Footer Content */
        .footer-content {
            position: relative;
            z-index: 1;
        }

        /* Company Info */
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: #1D6D37;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-description {
            color: #718096;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: #f7fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1D6D37;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: #1D6D37;
            color: white;
            border-color: #1D6D37;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(26, 147, 111, 0.3);
        }

        /* Footer Sections */
        .footer-section-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #1D6D37;
            border-radius: 2px;
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #718096;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: #1D6D37;
            transform: translateX(5px);
        }

        .footer-links a::before {
            content: '→';
            opacity: 0;
            transition: opacity 0.3s ease;
            color: #1D6D37;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        /* Contact Info */
        .contact-item {
            display: flex;
            align-items: start;
            gap: 15px;
            margin-bottom: 20px;
            color: #718096;
            font-size: 0.95rem;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: #f7fafc;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1D6D37;
            font-size: 1.1rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: #1D6D37;
            color: white;
            border-color: #1D6D37;
            transform: scale(1.1);
        }

        .contact-text a {
            color: #718096;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: #1D6D37;
        }

        /* Bottom Footer */
        .footer-bottom {
            background: #f7fafc;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 2px solid #e2e8f0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #718096;
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-bottom-links a {
            color: #718096;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #1D6D37;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .main-footer {
                padding: 60px 0 0;
            }

            .footer-section-title {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 767px) {
            .main-footer {
                padding: 40px 0 0;
            }

            .footer-logo {
                font-size: 1.75rem;
            }

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

            .footer-section-title {
                text-align: start;
            }

            .footer-section-title::after {
                left: 7%;
                transform: translateX(-50%);
            }

            .footer-links {
                text-align: start;
            }

            .footer-links a::before {
                content: '';
            }

            .contact-item {
                justify-content: start;
                text-align: start;
            }

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

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 575px) {
            .footer-logo {
                font-size: 1.5rem;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

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

        .animate-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Featured Products Section Styles - Adapted for SKY MAX */
        .featured-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .featured-section .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 60px;
            text-align: left;
            font-family: 'Georgia', serif;
        }

        .product-card {
            background: #ffffff;
            border: 1px solid #e5e5e5;
            border-radius: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .product-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
        }

        .product-content {
            padding: 35px 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .product-content::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 30px;
            right: 30px;
            height: 4px;
            background: #1D6D37;
        }

        .product-title {
            font-size: 1.5rem;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.3;
            font-family: 'Georgia', serif;
        }

        .view-more-btn {
            background: #1D6D37;
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
            margin-top: auto;
        }

        .view-more-btn:hover {
            background: #157a5a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 147, 111, 0.3);
        }

        /* Only show button on third card */
        .product-card:not(:last-child) .view-more-btn {
            display: none;
        }

        @media (max-width: 991px) {
            .featured-section .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .product-image {
                height: 300px;
            }

            .product-content {
                padding: 30px 25px;
            }

            .product-title {
                font-size: 1.35rem;
            }
        }

        @media (max-width: 767px) {
            .featured-section {
                padding: 60px 0;
            }

            .featured-section .section-title {
                font-size: 1.75rem;
                text-align: center;
            }

            .product-card {
                margin-bottom: 30px;
            }

            .product-image {
                height: 280px;
            }

            .product-content {
                padding: 25px 20px;
            }

            .product-content::after {
                left: 20px;
                right: 20px;
            }

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

            .view-more-btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 575px) {
            .featured-section .section-title {
                font-size: 1.5rem;
            }

            .product-image {
                height: 250px;
            }
        }

        /* Animation on scroll */
        .product-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .product-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .product-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .product-card:nth-child(3) {
            animation-delay: 0.3s;
        }

.fa {
    font-size: 1.5em !important;
}

/* Page Header Banner */
.page-header-banner {
    position: relative;
    height: 280px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/pexels-pixabay-104826.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-title {
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

/* Breadcrumb Navigation */
.breadcrumb-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #ffffff;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.breadcrumb-item a:hover {
    color: #1D6D37;
}

.breadcrumb-item.active {
    color: #d4a11e;
    font-weight: 400;
}

.breadcrumb-separator {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .page-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .page-header-banner {
        height: 240px;
    }

    .page-title {
        font-size: 3rem;
    }

    .breadcrumb-wrapper {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .header-content {
        text-align: center;
    }

    .custom-breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page-header-banner {
        height: 200px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .breadcrumb-item {
        font-size: 0.9rem;
    }

    .breadcrumb-separator {
        font-size: 1rem;
        margin: 0 8px;
    }
}

@media (max-width: 575px) {
    .page-header-banner {
        height: 180px;
    }

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

    .breadcrumb-item {
        font-size: 0.85rem;
    }
}

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

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

.page-title {
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb-wrapper {
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
}

/* Products Services Section */
.products-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-description {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: start;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 147, 111, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1D6D37, #2ec4b6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1D6D37, #2ec4b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(26, 147, 111, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(26, 147, 111, 0.4);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: #1D6D37;
    border: 2px solid #1D6D37;
    border-radius: 4px;
    cursor: not-allowed;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background-color: #1D6D37;
    border-color: #1D6D37;
}

.checkbox-wrapper label {
    font-size: 14px;
    font-weight: 600;
    color: #1D6D37;
    margin-bottom: 0;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-description {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .card-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .products-services-section {
        padding: 60px 0;
    }

    .section-description {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .card-title {
        font-size: 15px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Gallery Item Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 16/10;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 147, 111, 0.9), rgba(26, 147, 111, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.product-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .product-name {
    transform: translateY(0);
}

/* Zoom Icon */
.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.zoom-icon::before {
    content: '🔍';
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
    }

    .product-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }
}

/* Fancybox Custom Styling */
.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.95);
}

.fancybox__caption {
    background: linear-gradient(to top, rgba(26, 147, 111, 0.9), transparent);
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Inventory Section */
.inventory-section {
    padding: 80px 0;
    background: #ffffff;
}

.inventory-header {
    text-align: center;
    margin-bottom: 60px;
}

.inventory-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1D6D37, #2ec4b6);
    margin: 0 auto;
    border-radius: 2px;
}

.inventory-content-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 147, 111, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.inventory-content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1D6D37, #2ec4b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(26, 147, 111, 0.3);
}

.content-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.content-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 16px;
}

.inventory-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobil-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 147, 111, 0.1);
    transition: all 0.3s ease;
}

.mobil-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.mobil-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mobil-header i {
    font-size: 24px;
    color: #1D6D37;
}

.mobil-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.mobil-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobil-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.mobil-list li:last-child {
    border-bottom: none;
}

.bullet {
    width: 8px;
    height: 8px;
    background: #1D6D37;
    border-radius: 50%;
    flex-shrink: 0;
}

.stats-card {
    background: linear-gradient(135deg, #1D6D37, #2ec4b6);
    border-radius: 16px;
    padding: 30px;
    color: white;
    display: flex;
    gap: 24px;
    justify-content: space-around;
    box-shadow: 0 8px 32px rgba(26, 147, 111, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991px) {
    .inventory-title {
        font-size: 30px;
    }

    .inventory-content-card {
        padding: 30px;
    }

    .content-subtitle {
        font-size: 20px;
    }

    .stats-card {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .inventory-section {
        padding: 60px 0;
    }

    .inventory-title {
        font-size: 28px;
    }

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

    .inventory-content-card {
        padding: 25px;
    }

    .content-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .content-subtitle {
        font-size: 18px;
    }

    .mobil-card {
        padding: 25px;
    }

    .stats-card {
        padding: 25px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* Services Section */
.services-section-new {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/jumbo-jet-flying-sky.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><circle cx="200" cy="200" r="150" fill="%23334455" opacity="0.3"/><circle cx="1720" cy="900" r="150" fill="%23334455" opacity="0.3"/></svg>');
    opacity: 0.5;
}

.section-header {
    position: relative;
    background: rgba(26, 43, 60, 0.95);
    padding: 40px 20px;
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    color: #000;
    font-size: 3rem;
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.service-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 20px;
    line-height: 1.4;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more-btn {
    background: #1D6D37;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: capitalize;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: #157a5a;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Aviation Sub-Systems Section */
.aviation-sub-systems-section {
    padding: 80px 0;
    background-color: #e8e8e8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    text-align: center;
}

.aviation-sub-systems-section .section-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 60px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.sub-systems-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
}

.aviation-sub-systems-section .card {
    background: white;
    padding: 40px 35px;
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 0 30px 0 0;
}

.aviation-sub-systems-section .card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1D6D37 0%, #1D6D37 75%, transparent 75%);
}

.aviation-sub-systems-section .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
    font-family: 'Georgia', serif;
}

.aviation-sub-systems-section .card-description {
    font-size: 16px;
    color: #7a7a7a;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1200px) {
    .sub-systems-container {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .sub-systems-container {
        flex-direction: column;
        align-items: center;
    }

    .aviation-sub-systems-section .card {
        max-width: 100%;
    }

    .aviation-sub-systems-section .card-title {
        font-size: 20px;
    }

    .aviation-sub-systems-section .card-description {
        font-size: 15px;
    }
}

/* AOG Section */
.aog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a6c 0%, #1D6D37 50%, #2ec4b6 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.aog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.aog-content {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.aog-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.aog-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1D6D37 0%, #2ec4b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(26, 147, 111, 0.4);
}

.contact-card.email .contact-icon {
    background: linear-gradient(135deg, #1D6D37 0%, #2ec4b6 100%);
    box-shadow: 0 10px 30px rgba(26, 147, 111, 0.4);
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    word-break: break-all;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-link {
    color: #1D6D37;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-link:hover {
    color: #2ec4b6;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1D6D37, #2ec4b6);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(26, 147, 111, 0.4);
    animation: pulse 2s infinite;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.urgency-badge i {
    font-size: 1.2rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .aog-section {
        padding: 60px 0;
    }

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

    .aog-description {
        font-size: 1rem;
    }

    .contact-card {
        min-width: 100%;
    }

    .contact-cards {
        gap: 20px;
    }
}
