        :root {
            --primary-gold: #c49a45;
            --primary-gold-hover: #aa8233;
            --dark-pure: #070a0f;
            --dark-card: #0e131f;
            --dark-section: #0b0f17;
            --light-pure: #ffffff;
            --light-gray-bg: #f4f6f9;
            --text-light: #ffffff;
            --text-gray: #a0aab2;
            --text-dark: #111622;
            --text-dark-gray: #4a5568;
            --nav-height: 80px;
            --alert-success: #10b981;
            --alert-error: #ef4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height);
            overflow-x: hidden;
        }

        body {
            background-color: var(--dark-pure);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            width: 100%;
        }

        .container {
            max-width: 1920px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        /* --- BRAND LOGO STYLES (HEADER & FOOTER) --- */
        .brand-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            cursor: pointer;
            z-index: 1001;
        }

        .logo-emblem {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
        }

        .logo-emblem svg {
            width: 100%;
            height: 100%;
            display: block;
            transform-origin: center center;
            transition: transform 1.5s cubic-bezier(0.25, 1, 0.4, 1);
            will-change: transform;
            filter: drop-shadow(0 0 4px rgba(255, 144, 0, 0.2));
        }

        .brand-container:hover .logo-emblem svg {
            transform: rotate(360deg);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
        }

        .brand-title {
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 4px;
            line-height: 1;
            margin-bottom: 2px;
        }

        .text-urartu, .text-systems {
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            transition: background-position 2.5s ease-out;
        }

        .text-urartu {
            background-image: linear-gradient(110deg, #FF9000 0%, #FF9000 40%, #FFC033 50%, #FF9000 60%, #FF9000 100%);
            background-position: 0% center;
        }

        .text-systems {
            background-image: linear-gradient(110deg, #FFFFFF 0%, #FFFFFF 40%, #b0b0b0 50%, #FFFFFF 60%, #FFFFFF 100%);
            background-position: 0% center;
        }

        .brand-container:hover .text-urartu,
        .brand-container:hover .text-systems {
            background-position: 200% center;
        }

        .tagline-row {
            display: flex;
            align-items: center;
            gap: 6px;
            width: 100%;
        }

        .tagline-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.45rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .text-white { color: #FFFFFF; }
        .text-orange { color: #FFFFFF; }

        .accent-line {
            flex-grow: 1;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* --- SCROLL REVEAL ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }

        /* --- BUTTONS --- */
        .btn-solid {
            background: var(--primary-gold);
            color: var(--dark-pure);
            padding: 14px 32px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid var(--primary-gold);
            cursor: pointer;
            display: inline-block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-solid:hover {
            background: var(--primary-gold-hover);
            border-color: var(--primary-gold-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(196, 154, 69, 0.25);
        }

        .btn-outline {
            border: 1px solid var(--primary-gold);
            padding: 12px 28px;
            color: var(--primary-gold);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: transparent;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: var(--primary-gold);
            color: var(--dark-pure);
        }

        .btn-dark {
            background: var(--text-dark);
            color: white;
            padding: 14px 32px;
            border: none;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-dark:hover {
            background: #242f49;
            transform: translateY(-2px);
        }

        /* --- NAVBAR --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: var(--nav-height);
            background: rgba(7, 10, 15, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 24px;
        }

        nav ul li a {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            padding: 6px 0;
        }

        nav ul li a:hover, nav ul li a.active {
            color: var(--primary-gold);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after, nav ul li a.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
            transition: color 0.3s ease;
        }

        /* --- FIXED HERO SECTION (PREVENTS WHITE LAB UNDERLAP) --- */
        .hero {
            display: flex; 
            align-items: stretch;
            background: linear-gradient(to right, rgba(7, 10, 15, 0.98) 35%, rgba(7, 10, 15, 0.5) 100%), 
                        url('img/Soldering.png') center/cover no-repeat;
            padding-top: calc(var(--nav-height) + 60px);
            padding-bottom: 0; 
            margin-bottom: 0;
            min-height: 100vh; /* Keeps home viewport immersive without breaking bottom anchor borders */
        }

        .hero-layout-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            width: 100%;
        }

        .hero-content {
            max-width: 720px;
            text-align: left;
            margin-top: 20px;
            margin-bottom: 50px;
        }

        .hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }

        .hero h2 {
            color: var(--primary-gold);
            font-size: 1.35rem;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 32px;
        }

        .hero p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .hero p span {
            color: var(--primary-gold);
            font-weight: 500;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* --- WHAT WE DO PANEL (ANCHORED BASING LAYER) --- */
        .hero-services-panel {
            background: var(--dark-card); 
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: none; 
            padding: 45px 35px;
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
            border-bottom-left-radius: 0; 
            border-bottom-right-radius: 0;
            width: 100%;
            margin-bottom: 0 !important; 
          text-align : center;
          
        }

        .panel-header-title {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-gold);
            margin-bottom: 25px;
            font-weight: 700;
            text-align: left;
            position: relative;
            display: inline-block;
        }

        .panel-header-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 25px;
            height: 2px;
            background-color: var(--primary-gold);
          width:110px;
        }

        .services-row {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            width: 100%;
        }

        .service-item {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.02);
            padding: 24px 16px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease;
            border-radius: 4px;
            text-align: center; 
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-item:hover {
            transform: translateY(-6px);
            background-color: rgba(255, 255, 255, 0.03);
            border-color: rgba(196, 154, 69, 0.3);
        }

        .service-item i {
            color: var(--primary-gold);
            font-size: 1.8rem;
            margin-bottom: 16px;
        }

        .service-item h4 {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            font-weight: 700;
            color: #ffffff;
        }

        .service-item p {
            font-size: 0.72rem;
            color: var(--text-gray);
            line-height: 1.4;
        }

        /* --- INFRASTRUCTURE SECTION (ZERO GAP BOUNDARY CONNECTOR) --- */
        .infrastructure {
            background-color: var(--light-pure);
            color: var(--text-dark);
            padding: 110px 0;
            margin-top: -1px; /* Overlap rule stops infrastructure line leaking onto hero panel baseline backgrounds */
            position: relative;
            z-index: 10;
        }

        .infra-layout {
            display: grid;
            grid-template-columns: 1.1fr 1.4fr;
            gap: 60px;
            align-items: center;
        }

        .infra-left h4 {
            color: var(--primary-gold);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .infra-left h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .infra-left p {
            color: var(--text-dark-gray);
            font-size: 0.95rem;
            margin-bottom: 28px;
        }

        .infra-list {
            list-style: none;
            margin-bottom: 36px;
        }

        .infra-list li {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #2d3748;
        }

        .infra-list li i {
            color: var(--primary-gold);
        }

        .infra-right {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .infra-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 2px;
            aspect-ratio: 4 / 3;
        }

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

        .infra-img-wrapper:hover .infra-img {
            transform: scale(1.08);
        }

        /* --- WHY CHOOSE US --- */
        .why-choose-us {
            background-color: var(--dark-section);
            padding: 110px 0;
        }

        .why-top {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            margin-bottom: 80px;
            align-items: center;
        }

        .why-text-block h4 {
            color: var(--primary-gold);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .why-text-block h2 {
            font-size: 2.2rem;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .why-image-block {
            position: relative;
            width: 100%;
        }

        .why-image-block img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            border-radius: 4px;
        }

        .ecosystem-overlay {
            position: absolute;
            bottom: -25px;
            right: -20px;
            background-color: var(--dark-card);
            padding: 26px;
            max-width: 420px;
            border-left: 3px solid var(--primary-gold);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            z-index: 5;
        }

        .ecosystem-overlay h4 {
            color: var(--primary-gold);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ecosystem-overlay p {
            font-size: 0.78rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .why-icons-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .why-icon-box i {
            color: var(--primary-gold);
            font-size: 1.8rem;
            margin-bottom: 16px;
        }

        .why-icon-box h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .why-icon-box p {
            font-size: 0.78rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* --- ENGINEERING SERVICES SECTION --- */
        .engagement {
            background-color: var(--light-gray-bg);
            color: var(--text-dark);
            padding: 110px 0;
        }

        .eng-layout {
            display: grid;
            grid-template-columns: 1.1fr 1.4fr;
            gap: 60px;
        }

        .eng-left h4 {
            color: var(--primary-gold);
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .eng-left h2 {
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 35px;
            letter-spacing: -0.5px;
        }

        /* MODERN MOBILE OPTIMIZED CONTAINER STRUCTURE FOR RATES LIST */
        .services-mobile-cards {
            display: none; /* Active only on screen breakpoint triggers */
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }

        .service-mobile-card {
            background: var(--light-pure);
            border-left: 3px solid var(--primary-gold);
            padding: 16px;
            border-radius: 4px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .service-mobile-card .service-title {
            font-size: 0.88rem;
            font-weight: 700;
            color: #1e293b;
        }

        .service-mobile-card .service-rate {
            font-size: 0.88rem;
            font-weight: 800;
            color: var(--primary-gold-hover);
            white-space: nowrap;
        }

        .table-responsive {
            width: 100%;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
        }

        .pricing-table th {
            text-align: left;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-dark-gray);
            border-bottom: 2px solid #cbd5e1;
            padding-bottom: 12px;
            font-weight: 700;
        }

        .pricing-table tr:hover {
            background-color: rgba(196, 154, 69, 0.06);
        }

        .pricing-table td {
            padding: 15px 10px;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1e293b;
        }

        .pricing-table tr:hover td {
            color: var(--primary-gold-hover);
        }

        .pricing-table td:last-child {
            text-align: right;
            font-weight: 700;
        }

        .eng-right {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 30px;
        }

        .eng-cards-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .eng-card {
            background: var(--light-pure);
            padding: 28px 16px;
            border-radius: 3px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .eng-card:hover {
            transform: translateY(-6px);
        }

        .eng-card i {
            font-size: 1.6rem;
            margin-bottom: 14px;
            color: var(--text-dark);
        }

        .eng-card h4 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .eng-card p {
            font-size: 0.72rem;
            color: var(--text-dark-gray);
            line-height: 1.5;
        }

        .eng-cta {
            background-color: #d1a852;
            padding: 30px 36px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 3px;
        }

        .eng-cta h3 {
            font-size: 1.25rem;
            color: var(--dark-pure);
            font-weight: 700;
            margin-bottom: 4px;
        }

        .eng-cta p {
            font-size: 0.85rem;
            color: rgba(7, 10, 15, 0.8);
        }

        .eng-cta .btn-dark {
            background-color: var(--dark-pure);
            color: white;
            padding: 12px 24px;
        }

        /* --- CONTACT SECTOR --- */
        .contact {
            background-color: var(--dark-pure);
            padding: 120px 0;
        }

        .contact-layout {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .contact-form-box {
            width: 100%;
            max-width: 850px;
            margin: 0 auto;
        }

        .contact-form-box h2 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .contact-form-box .describer-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 40px;
            border-left: 2px solid var(--primary-gold);
            padding-left: 16px;
        }

        .form-alert {
            padding: 16px 20px;
            border-radius: 4px;
            font-size: 0.88rem;
            font-weight: 500;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .form-alert.success {
            background-color: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--alert-success);
            color: #a7f3d0;
        }

        .form-alert.error {
            background-color: rgba(239, 68, 68, 0.1);
            border: 1px solid var(--alert-error);
            color: #fca5a5;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 24px;
        }

        .form-group.no-margin {
            margin-bottom: 0;
        }

        .form-group label {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            color: var(--text-gray);
            font-weight: 600;
        }

        .form-group input, .form-group select, .form-group textarea {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 16px;
            color: white;
            font-size: 0.85rem;
            border-radius: 3px;
            outline: none;
            width: 100%;
        }

        /* STRICT TEXTAREA CONTSTRAINTS PREVENT USER ELEMENT DEFORMATION */
        .form-group textarea {
            min-height: 130px;     
            max-height: 260px;     
            resize: vertical;      
        }

        .form-group select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c49a45' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
            background-repeat: no-repeat;
            background-position: calc(100% - 20px) center;
            cursor: pointer;
            padding-right: 45px;
        }

        .form-group select option {
            background-color: var(--dark-card);
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--primary-gold);
            box-shadow: 0 0 12px rgba(196, 154, 69, 0.15);
        }

        .captcha-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .captcha-wrapper input {
            flex: 1;
        }

        .captcha-image-frame {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            overflow: hidden;
            padding: 0 4px;
        }

        .captcha-image-frame img {
            display: block;
            height: 100%;
            width: auto;
        }

        /* --- FOOTER --- */
        footer {
            background: #040609;
            padding: 80px 0 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col p {
            font-size: 0.8rem;
            max-width: 280px;
        }

        .footer-col h4 {
            color: white;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            font-weight: 700;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 20px;
            height: 1.5px;
            background-color: var(--primary-gold);
        }

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

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

        .footer-links-list li a {
            font-size: 0.8rem;
        }

        .footer-links-list li a:hover {
            color: var(--primary-gold);
            padding-left: 4px;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
        }

        .footer-legal-links a {
            margin-left: 24px;
        }

        .footer-legal-links a:hover {
            color: var(--primary-gold);
        }

        /* --- STABLE RESPONSIVE CROSS-OVER LAYOUTS --- */
        @media (max-width: 1250px) {
            .hero { display: block; height: auto; }
            .services-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .infra-layout, .why-top, .eng-layout {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .ecosystem-overlay {
                position: relative;
                bottom: 0;
                right: 0;
                margin-top: 24px;
                max-width: 100%;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 991px) {
            .hero h1 { font-size: 3rem; }
            .why-icons-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        /* SPECIFIC SCREEN DISCOVERY OPTIMIZATIONS FOR MOBILE PRICING TABLES */
        @media (max-width: 768px) {
            :root { --nav-height: 70px; }
            .menu-toggle { display: block; }
            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background-color: var(--dark-card);
                box-shadow: 5px 0 25px rgba(0,0,0,0.5);
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                padding: 100px 30px;
                z-index: 1000;
            }
            nav.mobile-active { left: 0; }
            nav ul {
                flex-direction: column;
                gap: 24px;
            }
            nav ul li a { font-size: 0.9rem; }
            .header-actions .btn-outline { display: none; }
            .hero h1 { font-size: 2.4rem; }
            
            /* Shifts native tables out on phones, loading clean isolated rate blocks */
            .table-responsive { display: none; }
            .services-mobile-cards { display: flex; }

            .services-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .infra-right { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .eng-cards-row { grid-template-columns: 1fr; gap: 16px; }
            .eng-cta { flex-direction: column; text-align: center; gap: 20px; }
            .form-grid { grid-template-columns: 1fr; gap: 16px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }
      
      
      .lang-switcher {
    display: flex;
    gap: 10px;
    margin-right: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}
.lang-switcher a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}
.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--primary-gold);
}

        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero-btns { flex-direction: column; width: 100%; }
            .services-row { grid-template-columns: 1fr; }
            .why-icons-row { grid-template-columns: 1fr; }
            .infra-right { grid-template-columns: 1fr; }
            .infra-left h2, .why-text-block h2, .eng-left h2, .contact-form-box h2 { font-size: 1.75rem; }
            .captcha-wrapper { flex-direction: column; align-items: flex-start; }
            .captcha-image-frame { width: 130px; }

            /* Logo downscaling for mobile */
            .brand-title { font-size: 1.15rem; }
            .logo-emblem { width: 38px; height: 38px; }
            .tagline-text { font-size: 0.35rem; }
        }
      
      
/* --- BRAND LOGO STYLES (HEADER & FOOTER) --- */
.brand-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: 15px; /* FIX: Makes the gap from the left browser edge smaller */
}

.logo-emblem {
    width: 320px;  
    height: 70px;  
    position: relative; 
    flex-shrink: 0;
}

/* Styling for your PNG image to force massive size */
.custom-logo-img {
    position: absolute;
    width: 420px;       
    height: 170px;      /* Retained your preferred height */
    
    top: 60%;           /* Retained your preferred vertical positioning */
    left: 0;
    transform: translateY(-50%); 
    
    object-fit: contain;
    object-position: left center;
    display: block;
    
    /* Clean transition with no blinking */
    transition: filter 0.3s ease;
    will-change: filter;
}

/* Clean glow hover with zero shifting or blinking */
.brand-container:hover .custom-logo-img {
    filter: drop-shadow(0 0 10px rgba(255, 144, 0, 0.7)) brightness(1.1);
}


/* Mobile responsive sizing */
@media (max-width: 768px) {
    .brand-container {
        margin-left: 16px;
    }
    .logo-emblem { 
        width: 180px;   
        height: 45px; 
    }
    .custom-logo-img {
        width: 220px;
        height: 70px;
    }
}

      
      
        /* --- FOOTER LOGO SPECIFIC ALIGNMENT --- */
.brand-container.footer-brand-layout {
    margin-left: 0 !important;       /* Flushes logo straight with footer text grid */
    margin-bottom: 24px;
    display: inline-flex;
    height: auto;                    /* Prevents container height capping */
}

.brand-container.footer-brand-layout .logo-emblem {
    width: 280px;                    /* Cleaner base layout grid width */
    height: 70px;
}

.brand-container.footer-brand-layout .custom-logo-img {
    top: 50%;                        /* Fixes the header's top: 60% override layout */
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 140px;                   /* Clean scaling constraint inside column bounds */
}

    /* Smooth hover effect without blinking or shaking */
.brand-container.footer-brand-layout:hover .custom-logo-img {
    filter: drop-shadow(0 0 10px rgba(255, 144, 0, 0.7)) brightness(1.1);
}

/* Mobile responsive sizing downscales exclusively for the footer */
@media (max-width: 768px) {
    .brand-container.footer-brand-layout .logo-emblem {
        width: 220px;
        height: 55px;
    }
    .brand-container.footer-brand-layout .custom-logo-img {
        height: 110px;
    left: -9px;
    }
}

    /* --- SHIFT ONLY THE FOOTER LOGO IMAGE LEFT --- */

.brand-container.footer-brand-layout {
    /* Pulls the image container to the left without affecting the rest of the column text */
    margin-left: -20px !important; 
}



.lang-switcher {
    position: relative;          /* Anchors the dropdown menu */
    display: inline-flex;
    margin-right: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 5px;         /* Creates a bridge so mouse hover doesn't break */
}

/* Style for the permanently visible language */
.lang-active {
    color: var(--primary-gold);
    display: flex;
    align-items: center;
}

.lang-switcher {
    position: relative;
    display: inline-flex;
    margin-right: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 8px;         /* Creates a hover bridge to the dropdown */
}

/* Active language styling */
.lang-active {
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 4px;                    /* Spaces the text and the arrow */
    user-select: none;
}

/* Style for the indicator arrow */
.lang-arrow {
    font-size: 0.55rem;          /* Makes the arrow small and subtle */
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Rotates the arrow upside down on hover */
.lang-switcher:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-switcher {
    position: relative;
    display: inline-flex;
    margin-right: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 8px; /* Hover bridge zone */
}

/* Trigger area styling */
.lang-trigger {
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

/* Globe icon sizing and transition */
.lang-globe {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

/* Keep text aligned */
.lang-text {
    line-height: 1;
}

.lang-switcher {
    position: relative;
    display: inline-flex;
    margin-right: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 8px; /* Hover bridge zone */
}

/* Trigger area styling */
.lang-trigger {
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

/* Globe icon sizing and transition */
.lang-globe {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

/* Keep text aligned */
.lang-text {
    line-height: 1;
}

/* Dropdown arrow sizing and transition */
.lang-arrow {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

/* Hover effects for the active state elements */
.lang-switcher:hover .lang-globe {
    color: var(--primary-gold);
}

.lang-switcher:hover .lang-arrow {
    transform: rotate(180deg);
    color: var(--primary-gold);
}

/* Hidden dropdown menu container */
.lang-dropdown {
    position: absolute;
    top: 120%; /* Increased from 100% to push it lower down */
    left: 50%;
    /* Start state: Shifted up slightly from its new lower position */
    transform: translateX(-50%) translateY(-10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #1a1a1a; 
    padding: 12px 15px;
    border-radius: 6px;
    min-width: 65px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reveal dropdown when container is hovered */
.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    /* End state: Slides down cleanly into position */
    transform: translateX(-50%) translateY(0);
}

/* Inactive language links styling */
.lang-dropdown a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Link hover state */
.lang-dropdown a:hover {
    color: var(--primary-gold);
}

