/* CSS Reset and Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    overflow-x: hidden;
    width: 100%;
}

/* Header and Navigation Bar Styling */
header {
    background-color: #002f3d; /* Dark blue background for the header */
    padding: 0.5rem 2%; /* Reduced vertical padding to decrease height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute; /* Changed from fixed to absolute to sit on hero */
    width: 92%; /* Reduced width to create margins */
    top: 1rem; /* Position from top of hero section */
    left: 5%; /* Center the header */
    z-index: 1000; /* Ensures header is above other content */
    border-radius: 20px; /* Rounded corners on all sides */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
}

.header-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.header-logo .logo-icon {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00aaff; /* Light blue for the icon part */
    margin-right: 10px;
    margin-top: 20px; /* Reduced margin to decrease header height */
}

.header-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem; /* Spacing between nav items */
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover, nav a.active {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle highlight on hover */
}

        /* Hero Section Styling */
        .hero-section {
            /* Desktop/tablet default */
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 100vh; /* Full viewport height */
            color: #ffffff;
            /* Background image with a dark overlay for text readability */
            background: linear-gradient(rgba(0, 0, 0, 0.774), rgba(0, 0, 0, 0.74)), url('../images/hero/07.jpg') no-repeat center center/cover;
            position: relative;
        }

.hero-content {
    max-width: 800px;
    padding: 2rem;
    margin-top: 2rem; /* Add some space from the header */
}

/* Styling for the logo within the hero section */
.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-logo .logo-icon {
    font-size: 5rem;
    font-weight: bold;
    color: #00aaff;
    margin-right: 15px;
   
}

.hero-logo .logo-icon img {
    width: 100%;
    height: auto;
    max-width: 450px;
    display: block;
}

.hero-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

.hero-content h1 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.1rem;
    letter-spacing: 1px;

}

.hero-content .hero-text-line {
    font-family: Montserrat, sans-serif;
    font-size: 3rem;
    font-weight: 650;
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.discover-button {
    background-color: #00334d; /* Light blue */
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px; /* Fully rounded button */
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

        .discover-button:hover {
            background-color: #0088cc; /* Darker blue on hover */
            transform: translateY(-3px); /* Slight lift effect on hover */
        }

        /* --- Main Content Container --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
        }



        /* --- Section with full-width background --- */
        .full-width-section {
            padding: 4rem 0;
        }

        .full-width-section .container {
            padding-top: 0;
            padding-bottom: 0;
        }

        .dark-section {
            background-color: #0d1b2a;
            color: #ffffff;
        }

        /* --- About/Mission/Vision Section Styles --- */
        .about-sections-container {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about/back1.jpg') no-repeat center center/cover;
            padding: 4rem 0;
            margin-bottom: 3rem;
            width: 100%;
        }

        .about-sections-container .container {
            max-width: 100%;
            padding: 0;
        }

        .about-section {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            width: 100%;
        }

        .about-section:last-child {
            margin-bottom: 0;
        }

        .flex-container {
            display: flex;
            width: 100%;
            flex-wrap: wrap;
            align-items: center;
        }

        .image-column {
            flex: 1;
            min-width: 300px;
            padding-left: 0px;
            padding-right: 40px;
        }

        .image-column img {
            border-radius: 10px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .text-column {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 300px;
            color: #000000;
        }

        .text-column.dark-bg {
            background-color: transparent;
            color: #000000;
        }

        .text-column h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .text-column p {
            font-size: 1rem;
            line-height: 1.6;
            letter-spacing: normal;
        }

        .about-main-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 2rem;
            margin-top: 2rem;
            font-family: 'Cinzel', serif;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        /* --- Override into.php body styles --- */
        /* Force override of into.php body styles */
        body {
            font-family: 'Poppins', sans-serif !important;
            margin: 0 !important;
            background-color: #f0f2f5 !important;
            color: #333 !important;
            display: block !important;
            justify-content: unset !important;
            align-items: unset !important;
            min-height: auto !important;
            padding: 0 !important;
            overflow-x: hidden !important;
            width: 100% !important;
        }

        /* Override into.php global styles */
        * {
            box-sizing: border-box;
        }

        /* Override into.php section styles */
        .about-us-section {
            width: 100% !important;
            max-width: none !important;
            margin: 0 !important;
            background-color: transparent !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            overflow: visible !important;
        }

        /* Override into.php typography */
        .about-us-section h2,
        .about-us-section h3,
        .about-us-section p {
            font-family: 'Poppins', sans-serif !important;
        }

        /* Override into.php dark-bg styles */
        .about-us-section .dark-bg {
            background-color: #1a2a4c !important;
            color: #ffffff !important;
        }

        .about-us-section .dark-bg h3 {
            color: #ffffff !important;
        }

        .about-us-section .dark-bg p {
            color: #e0e0e0 !important;
            opacity: 0.9 !important;
        }

        /* --- Our Services Section --- */
        .services-section .container {
            max-width: 100%;
            padding: 0;
            margin: 0;
        }

        .choose-us-section .container {
            max-width: 100%;
            padding: 0;
            margin: 0;
        }

        .choose-us-section {
            background-color: #ffffff;
            padding: 4rem 0;
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

        .choose-us-section .flex-container {
            justify-content: center;
            gap: 2rem;
        }

        .choose-us-section .text-column {
            text-align: left;
            padding: 3rem;
            flex: 0 0 55%;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #000000;
        }

        .choose-us-section .text-column p {
            margin-bottom: 2rem;
        }

        .choose-us-section .image-column {
            flex: 0 0 40%;
            max-width: 400px;
            padding-left: 0px;
            padding-right: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .choose-us-section .image-column img {
            border-radius: 10px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* --- Helping Section Styles --- */
        .konstruk-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about/v2.jpg');
            background-size: cover;
            background-position: center;
            color: #ffffff;
            padding: 80px 5%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            width: 100%;
            margin: 0;
        }

        .content-left {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
        }

        .content-left .subtitle {
            font-size: 14px;
            font-weight: 700;
            color: #facc15;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        
        .content-left .subtitle::before {
            content: '::';
            margin-right: 8px;
            font-weight: bold;
        }

        .content-left .main-title {
            font-size: 48px;
            font-weight: 900;
            margin: 15px 0;
            line-height: 1.2;
        }

        .content-left .description {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 450px;
        }

        .content-left .cta-button {
            background-color: #facc15;
            color: #000000;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .content-left .cta-button:hover {
            background-color: #eab308;
        }

        .stats-right {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            min-width: 300px;
            max-width: 500px;
        }

        .stat-box {
            background-color: rgba(250, 204, 21, 0.2);
            padding: 30px;
            text-align: left;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 0 80%);
            border-left: 3px solid #facc15;
            transition: background-color 0.3s ease;
        }
        
        .stat-box:hover {
            background-color: rgba(250, 204, 21, 0.4);
        }

        .stat-box .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: #ffffff;
            margin: 0;
        }

        .stat-box .stat-label {
            font-size: 16px;
            font-weight: 400;
            color: #dddddd;
            margin-top: 5px;
        }

        .services-section {
            background-color: #23405f;
            color: #ffffff;
            padding: 2rem 0 4rem 0;
            border-radius: 0;
            text-align: center;
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            margin-top: 0;
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(35, 64, 95, 0.699);
            z-index: 1;
        }

        .services-section .container {
            position: relative;
            z-index: 2;
        }

        .services-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .services-section h2 {
            
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .services-section .subtitle {
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto 3rem auto;
            line-height: 1.6;
            color: #e0e0e0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .service-card {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .service-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .service-card-content {
            padding: 1rem;
            color: #333;
        }

        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #0d1b2a;
        }

        .service-card p {
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* --- Why Choose Us Section --- */
        .choose-us-section .text-column p {
            margin-bottom: 2rem;
        }

        .info-boxes {
            display: flex;
            gap: 1rem;
        }

        .info-box {
            background-color: #f0f2f5;
            padding: 1.5rem;
            border-radius: 8px;
            flex: 1;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .info-box-icon {
            flex-shrink: 0;
        }
        
        .info-box-icon svg {
            width: 32px;
            height: 32px;
            fill: #002366;
        }

        .info-box h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .info-box p {
            font-size: 0.85rem;
            line-height: 1.4;
            color: #555;
        }

        /* --- Stats Section --- */
        .stats-section {
            text-align: center;
        }

        .stats-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .stats-section h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-card {
            background-color: #1b2f45;
            padding: 2rem;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        
        .stat-card:hover {
            background-color: #2c3e50;
        }

        .stat-icon svg {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            fill: #00aaff;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: #e0e0e0;
        }

        /* --- CTA Section --- */
        .cta-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5px 5px;
        }

        .cta-section {
            color: #ffffff;
        }

        .cta-section .text-column p {
            margin-bottom: 2rem;
            color: #ffffff;
        }

        .cta-section .text-column h2 {
            color: #ffffff;
        }

        .cta-form {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-form input {
            flex: 1 1 calc(50% - 0.5rem);
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            min-width: 200px;
        }

        .cta-form button {
            background-color: #da9b13;
            color: #ffffff;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 200px;
            margin: 1rem auto 0;
            display: block;
            flex-basis: 100%;
        }

        .cta-form button:hover {
            background-color: #0088cc;
        }

        /* --- CTA Section Background Wrapper --- */
        .cta-section-wrapper {
            width: 100%;
            background-color: rgb(0, 20, 51); /* Fallback background color */
            background-image: url('../images/background/bg3.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            position: relative;
            padding: 2rem 0;
            min-height: 300px;
        }

        /* Add overlay for better text readability */
        .cta-section-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(5, 32, 78, 0.85);
            z-index: 1;
        }

        /* Ensure content appears above the overlay */
        .cta-section-wrapper .cta-section {
            position: relative;
            z-index: 2;
            padding: 1rem 0; /* Override the default full-width-section padding */
        }

        /* --- Contact Section --- */
        .contact-section {
            margin-top: 4rem;
        }

        .contact-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #0d1b2a;
        }

        .contact-info-bar {
            display: flex;
            justify-content: space-around;
            background-color: #e9ecef;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-info-item svg {
            width: 28px;
            height: 28px;
            fill: #0d1b2a;
        }

        .contact-info-text h3 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }
        

        .contact-info-text p {
            font-size: 0.9rem;
            color: #555;
            max-width: 200px;
        }

        .contact-main {
            background-color: #0d1b2a;
            color: #fff;
            border-radius: 15px;
            padding: 3rem;
            overflow: hidden;
        }

        .contact-main .flex-container {
            gap: 3rem;
        }
        
        .contact-main .image-column img {
            height: 100%;
            object-fit: cover;
        }

        .contact-form-container h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .contact-form-container p {
            margin-bottom: 2rem;
            color: #e0e0e0;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            background-color: #1b2f45;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }
        
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #aaa;
        }

        .contact-form .full-width {
            grid-column: 1 / -1;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button {
            grid-column: 1 / -1;
            background-color: #00aaff;
            color: #ffffff;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #0088cc;
        }

        /* --- Footer --- */
        .site-footer {
            background-color: #001e41;
            color: #e0e0e0;
            padding-top: 0rem;
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid #1b2f45;
        }

        .footer-column {
            flex: 1;
            min-width: 220px;
        }
        
        .footer-logo-container .logo-icon {
            font-size: 3rem;
            color: #00aaff;
            margin-right: 10px;
            font-weight: bold;
        }
        
        .footer-logo-container .logo-text {
            font-size: 1.1rem;
            font-weight: 500;
            line-height: 1.3;
        }

        .footer-column p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 1rem;
            max-width: 300px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0;
            margin: 7rem auto 0 auto; /* Increased top margin for more space above */
        }

        .footer-links li {
            list-style: none;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #00aaff;
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 8px 0 0 8px;
            font-family: 'Poppins', sans-serif;
        }
        
        .newsletter-form button {
            padding: 0.8rem 1.5rem;
            border: none;
            background-color: #c5b358; /* Gold color */
            color: #0d1b2a;
            font-weight: 700;
            cursor: pointer;
            border-radius: 0 8px 8px 0;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #dab953;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #1b2f45;
            color: #fff;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: #00aaff;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 1.5rem 0;
            font-size: 0.9rem;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-bottom-links a {
            color: #e0e0e0;
            text-decoration: none;
        }
        
        .footer-bottom-links a:hover {
            color: #fff;
        }

        /* --- Responsive Design --- */
        /* Footer-specific mobile adjustments */
        @media (max-width: 768px) {
            .site-footer {
                padding-top: 1rem;
            }
            .footer-main {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                padding-bottom: 2rem;
            }
            .footer-logo-container .logo-icon img {
                max-width: 260px;
                max-height: 50px;
            }
            .footer-column {
                min-width: 100%;
                text-align: center;
            }
            .footer-logo-container {
                justify-content: center;
            }
            .footer-column p {
                max-width: none;
                margin-left: auto;
                margin-right: auto;
                padding: 0 1rem;
            }
            .footer-links {
                margin: 1.5rem 0 0 0;
                align-items: center;
            }
            .newsletter-form {
                flex-direction: column;
                width: 100%;
                padding: 0 1rem;
                box-sizing: border-box;
            }
            .newsletter-form input {
                border-radius: 8px;
                margin-bottom: 0.75rem;
            }
            .newsletter-form button {
                border-radius: 8px;
                width: 100%;
            }
            .social-links {
                justify-content: center;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }
            .footer-bottom-links {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .services-grid, .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Responsive Design for smaller screens */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2%;
        width: 95%;
        left: 2.5%;
        top: 1rem;
    }

    nav ul {
        margin-top: 0;
        gap: 1rem;
    }

    /* Make hero fit content on small screens and provide safe padding around fixed header */
    .hero-section {
        height: auto;
        padding: 120px 1rem 60px;
    }

    .hero-content h1 {
        font-size: 1.25rem;
        letter-spacing: 0.5px;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-logo .logo-icon {
        font-size: 3rem;
    }

            .hero-logo .logo-text {
            font-size: 1.2rem;
        }

    .hero-logo .logo-icon img {
        max-width: 260px;
    }

    .hero-content .hero-text-line {
        font-size: 1.75rem;
        line-height: 1.2;
        /* Override inline nowrap on mobile to allow wrapping */
        white-space: normal !important;
        word-break: break-word;
    }

    .discover-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

        .flex-container {
            flex-direction: column;
        }
        
        .flex-container.reverse-on-mobile {
            flex-direction: column-reverse;
        }

        .text-column, .services-section {
            padding: 2rem 1.5rem;
        }

        .services-section {
            padding: 3rem 1rem;
            border-radius: 0;
        }

        .choose-us-section {
            padding: 3rem 1rem;
        }

        .text-column h2, .services-section h2, .stats-section h2, .contact-title {
            font-size: 2rem;
        }

        .services-grid, .stats-grid {
            grid-template-columns: 1fr;
        }

        .info-boxes, .cta-form {
            flex-direction: column;
        }

        .contact-info-bar {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .contact-form {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
    } 

/* --- Features Section (from intro2.php) --- */
.features-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 3rem auto;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 4rem;
}
.feature-row:last-child {
    margin-bottom: 0;
}

.feature-image,
.feature-text {
    flex-basis: 48%;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.feature-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #1a2a4c;
    position: relative;
    padding-bottom: 0.75rem;
    font-family: 'Poppins', serif;
}
.feature-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ef4444;
}
.feature-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border: 2px solid #ef4444;
    border-radius: 50px;
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #fff;
}
.btn:hover {
    background-color: #ef4444;
    color: #fff;
}
@media (max-width: 900px) {
    .features-section {
        max-width: 100%;
        padding: 0 1rem;
    }
    .feature-row {
        flex-direction: column;
        margin-bottom: 3rem;
    }
    .feature-image,
    .feature-text {
        flex-basis: 100%;
    }
    .feature-image {
        margin-bottom: 2rem;
    }
    .feature-row.reverse-on-mobile .feature-image {
        margin-bottom: 0;
        margin-top: 2rem;
    }
    .feature-text {
        text-align: center;
    }
    .feature-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
} 

/* --- What We Are Section (from whatwe.php) --- */
.about-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.about-text {
    flex-basis: 50%;
    max-width: 500px;
}

.about-image-shape {
    flex-basis: 45%;
    height: 400px;
    position: relative;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.about-text h2 strong {
    font-weight: 700;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

.about-text p:last-of-type {
    margin-bottom: 2.5rem;
}

.btn-dark {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-dark:hover {
    background-color: #34495e;
}

.shape {
    position: absolute;
    background-color: #d3d3d3;
    border-radius: 8px;
}

.shape-1 {
    width: 60%;
    height: 60%;
    top: 0;
    left: 0;
}

.shape-2 {
    width: 70%;
    height: 70%;
    bottom: 0;
    right: 0;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image-shape {
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin-top: 2rem;
    }
} 

/* --- Why Section Styles (from why.php) --- */
.why-choose-section {
    background-color: #fff;
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.why-choose-section .why-image-column {
    flex: 1;
    position: relative;
    min-width: 300px;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
}
.why-choose-section .why-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.why-choose-section .why-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #facc15;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.why-choose-section .why-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #eab308;
}
.why-choose-section .why-content-column {
    flex: 1;
    padding: 3rem 2rem;
    min-width: 300px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-choose-section .why-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #6c757d;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.why-choose-section .why-subtitle::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #facc15;
}
.why-choose-section .why-main-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #212529;
    margin: 0 0 15px 0;
    line-height: 1.3;
}
.why-choose-section .why-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
}
.why-choose-section .why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.why-choose-section .why-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.why-choose-section .why-feature-item .why-number {
    background-color: #facc15;
    color: #212529;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.why-choose-section .why-feature-item .why-text {
    font-size: 1rem;
    font-weight: 500;
    color: #343a40;
}
.why-choose-section .why-skill-bar, .why-choose-section .why-rating {
    margin-bottom: 20px;
}
.why-choose-section .why-skill-bar .why-label, .why-choose-section .why-rating .why-label {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.why-choose-section .why-progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}
.why-choose-section .why-progress {
    width: 90%;
    height: 100%;
    background-color: #facc15;
    border-radius: 4px;
}
.why-choose-section .why-stars {
    color: #facc15;
}
.why-choose-section .why-rating-info {
    font-size: 0.9rem;
    color: #6c757d;
}
.why-choose-section .why-rating-info a {
    color: #212529;
    font-weight: 700;
    text-decoration: none;
}
.why-choose-section .why-rating-info a:hover {
    text-decoration: underline;
}
@media (max-width: 992px) {
    .why-choose-section {
        flex-direction: column;
    }
    .why-choose-section .why-image-column,
    .why-choose-section .why-content-column {
        max-width: 100%;
        min-width: 100%;
        padding: 2rem 1rem;
    }
} 

.why-feature-card {
    background-color: #f5f7fa;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 0;
}
.why-feature-card .why-number {
    background-color: #002366;
    color: #fff;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-feature-card .why-text {
    font-size: 1rem;
    color: #222;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
}
.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
} 

/* --- Contact Section Styles (from contact.php) --- */
.contact-custom-section {
    background-color: #ffffff;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-48 0c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z" fill="%23e9ecef" fill-opacity="0.4"/%3E%3C/svg%3E');
    display: flex;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.contact-custom-section .contact-form-column {
    flex: 1.5;
    padding: 4rem;
}

.contact-custom-section .contact-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #6c757d;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.contact-custom-section .contact-subtitle::before {
    content: '::';
    color: #facc15;
    font-weight: 900;
    font-size: 14px;
    line-height: 0.5;
    letter-spacing: -3px;
}

.contact-custom-section .contact-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 30px 0;
}

.contact-custom-section .contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-custom-section .contact-form-grid .contact-full-width {
    grid-column: 1 / -1;
}

.contact-custom-section .contact-form-grid input, 
.contact-custom-section .contact-form-grid textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-custom-section .contact-form-grid input:focus, 
.contact-custom-section .contact-form-grid textarea:focus {
    outline: none;
    border-color: #facc15;
}

.contact-custom-section .contact-form-grid textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-custom-section .contact-submit-btn {
    background-color: #facc15;
    color: #212529;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.contact-custom-section .contact-submit-btn:hover {
    background-color: #eab308;
}

.contact-custom-section .contact-info-column {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.contact-custom-section .contact-info-box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-custom-section .contact-info-box .contact-icons {
    display: flex;
    flex-direction: column; /* stack icons vertically */
    gap: 8px;
}

.contact-custom-section .contact-info-box .contact-icon {
    color: #facc15;
    font-size: 24px;
    width: 50px;
    height: 50px;
    background-color: #fff9e6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-custom-section .contact-info-box h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #212529;
}

.contact-custom-section .contact-info-box p {
    margin: 0;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
}

.contact-custom-section .contact-image-column {
    flex: 1.2;
    min-height: 100%;
    background-image: url('../images/gallery/g35.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

@media (max-width: 1200px) {
    .contact-custom-section {
        flex-direction: column;
    }
    .contact-custom-section .contact-image-column {
        min-height: 400px;
        width: 100%;
        clip-path: none;
    }
    .contact-custom-section .contact-info-column {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 2rem;
    }
    .contact-custom-section .contact-info-box {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .contact-custom-section .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-custom-section .contact-info-column {
        flex-direction: column;
    }
    .contact-custom-section .contact-info-box {
        flex-basis: 100%;
    }
    .contact-custom-section .contact-form-column {
        padding: 2rem;
    }
} 

.popup-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #004155;
    padding: 0.8rem 5%; /* Reduced vertical padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: top 0.3s, opacity 0.3s;
}

.popup-header .header-logo {
    color: #fff;
}

.popup-header .header-logo .logo-icon {
    font-size: 1.5rem; /* Smaller icon for compact header */
    margin-top: 3px; /* Move popup logo icon down slightly */
}

.popup-header .header-logo .logo-text {
    font-size: 0.85rem; /* Smaller text for compact header */
}

.popup-header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.popup-header nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.popup-header nav a:hover, .popup-header nav a.active {
    background-color: rgba(255,255,255,0.1);
} 

/* --- Hero Section Animation --- */
.hero-content, .hero-content h1, .hero-content p, .hero-content .discover-button {
  opacity: 0;
  transform: translateY(40px);
  transition: none;
}

.hero-content.animate-in {
  animation: hero-fade-in 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-content.animate-in h1 {
  animation: hero-fade-in 0.7s 0.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-content.animate-in p {
  animation: hero-fade-in 0.7s 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-content.animate-in .discover-button {
  animation: hero-fade-in 0.7s 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 

/* Fallback: Show hero content if JS fails */
.no-js .hero-content, noscript .hero-content {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
} 

/* --- Scroll Animation for WhatWe Section --- */
.about-text, .about-image-shape {
  opacity: 0;
  transition: none;
}

.fade-in-left {
  animation: fadeInLeft 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.fade-in-right {
  animation: fadeInRight 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
} 

/* --- Scroll Animation for Vision & Mission Section --- */
.vision-mission-section, .vision-mission-section .vm-card {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}
.fade-in-up {
  animation: fadeInUp 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.fade-in-up.delay-1 {
  animation-delay: 0.2s;
}
.fade-in-up.delay-2 {
  animation-delay: 0.5s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 

/* --- Scroll Animation for Services Section --- */
.services-section h2, .services-section .subtitle, .services-section .service-card {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}
.services-section.fade-in-up h2 {
  animation: fadeInUp 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.services-section.fade-in-up .subtitle {
  animation: fadeInUp 1.5s 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.services-section.fade-in-up .service-card:nth-child(1) {
  animation: fadeInUp 1.5s 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.services-section.fade-in-up .service-card:nth-child(2) {
  animation: fadeInUp 1.5s 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.services-section.fade-in-up .service-card:nth-child(3) {
  animation: fadeInUp 1.5s 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
} 

/* --- Scroll Animation for Why Choose Us Section --- */
.why-choose-us-content, .why-choose-us-images {
  opacity: 0;
  transition: none;
}
.why-choose-us-content.fade-in-left {
  animation: fadeInLeft 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.why-choose-us-images.fade-in-right {
  animation: fadeInRight 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
} 

/* --- Scroll Animation for Helping Section --- */
.konstruk-section .content-left, .konstruk-section .stats-right {
  opacity: 0;
  transition: none;
}
.konstruk-section .content-left.fade-in-left {
  animation: fadeInLeft 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.konstruk-section .stats-right.fade-in-right {
  animation: fadeInRight 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
} 

/* --- Scroll Animation for CTA Section --- */
.cta-section .text-column, .cta-section .image-column {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}
.cta-section.fade-in-up .text-column {
  animation: fadeInUp 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.cta-section.fade-in-up .image-column {
  animation: fadeInUp 1.5s 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
} 

/* --- Scroll Animation for Gallery Section --- */
.construction-gallery-section .gallery-header, .construction-gallery-section .gallery-item {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}
.construction-gallery-section.fade-in-up .gallery-header {
  animation: fadeInUp 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.construction-gallery-section.fade-in-up .gallery-item:nth-child(1) {
  animation: fadeInUp 1.5s 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.construction-gallery-section.fade-in-up .gallery-item:nth-child(2) {
  animation: fadeInUp 1.5s 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.construction-gallery-section.fade-in-up .gallery-item:nth-child(3) {
  animation: fadeInUp 1.5s 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.construction-gallery-section.fade-in-up .gallery-item:nth-child(4) {
  animation: fadeInUp 1.5s 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.construction-gallery-section.fade-in-up .gallery-item:nth-child(5) {
  animation: fadeInUp 1.5s 1.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.construction-gallery-section.fade-in-up .gallery-item:nth-child(6) {
  animation: fadeInUp 1.5s 1.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
} 

/* --- Scroll Animation for Contact Section --- */
.contact-custom-section .contact-form-column, .contact-custom-section .contact-info-column, .contact-custom-section .contact-image-column {
  opacity: 0;
  transition: none;
}
.contact-custom-section .contact-form-column.fade-in-left {
  animation: fadeInLeft 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.contact-custom-section .contact-info-column.fade-in-up {
  animation: fadeInUp 1.5s 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.contact-custom-section .contact-image-column.fade-in-right {
  animation: fadeInRight 1.5s 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
} 

/* --- Contact Icon Size --- */
.contact-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
} 

/* --- Mobile Header Styles --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 4%;
        width: 96%;
        left: 2%;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .header-logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .header-logo .logo-text {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .header-logo .logo-icon {
        font-size: 2rem;
        margin-right: 8px;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #21314b;
        border-radius: 0 0 20px 20px;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        text-align: center;
    }
    
    nav a:hover, nav a.active {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        flex-shrink: 0;
        visibility: visible !important;
        order: 2;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.6rem 3%;
        width: 98%;
        left: 1%;
    }
    
    .header-logo .logo-text {
        font-size: 0.7rem;
    }
    
    .header-logo .logo-icon {
        font-size: 1.8rem;
        margin-right: 6px;
    }
} 