/* ===============================================
   1. GLOBAL RESET & BASE LAYOUT
================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    font-family: Arial, sans-serif;
    color: #222;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  color: #222;
  position: relative;
}

body {
    background:
        linear-gradient(
            rgba(0,20,40,.65),
            rgba(0,20,40,.65)
        ),
        url('../img/BG.webp') center/cover no-repeat;
}



/* =========================================================
   MAIN CONTENT
========================================================= */

main {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* =========================================================
   SHARED SECTION LAYOUT
========================================================= */

.hero,
.about-section,
.mission-section,
.services-section,
.clients-section,
.projects-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 10%;
    background: transparent;
    color: #fff;
}

/* Content always above background */
.hero-container,
.about-container,
.mission-container,
.services-section .container,
.clients-section .container,
.projects-container {
    position: relative;
    z-index: 2;
}
















/* =========================================================
        HOMEPAGE HERO CONTAINER
========================================================= */

.hero-container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* =========================================================
   3. HERO SECTION
========================================================= */

.hero {
    position: relative;
    min-height: 100vh; /* better full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* HERO BRAND (HEADER-LIKE STRUCTURE) */
.hero-brand {
    display: flex;
    align-items: center;
    text-align: center;      
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

/* BIGGER LOGO */
.hero-logo {
    width: clamp(220px, 25vw, 360px);
    height: clamp(220px, 25vw, 360px);
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}

/* MAIN TITLE (same strong header feel) */
.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    letter-spacing: 3px;
    margin: 20px 0 0 0;
    line-height: 1;
    margin-top: 10px;
}

/* SUBTITLE */
.hero-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #d9ebff;
    letter-spacing: 2px;
    margin: 0;
    margin-top: -5px;
}


/* PARAGRAPH */
.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    line-height: 1.6;
    color: #d9ebff;
    margin-top: 25px;
    margin-bottom: 35px;
    max-width: 650px;
}
 
/* =========================================================
   BRAND COLORS
========================================================= */

.volt {
    color: #ffd700;
}

.masters {
    color: #d9ebff;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* BASE BUTTON */
.hero-buttons .btn,
.hero-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* PRIMARY */
.hero-buttons .btn {
    background: #ffcc00;
    color: #001b44 !important;
    border: 2px solid #ffcc00;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.35);
}

.hero-buttons .btn:hover {
    background: #ffd633;
    transform: translateY(-2px);
}

/* OUTLINE */
.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border: 1px solid #f3b909;
}

.hero-buttons .btn-outline:hover {
    background: #d9ebff;
    color: #001b44 !important;
    transform: translateY(-2px);
}



/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us {
    position: relative;
    padding: 60px 20px;
    background: #001b44;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    overflow: hidden;
}

.why-us .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.section-header {
    text-align: center;
    margin-bottom: 35px; /* was 70px */
}

.section-header h2 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: #d9ebff;
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* FEATURE GRID */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* was 30px */
}

/* CARD */

.feature-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
    box-shadow: 0 15px 35px rgba(255,204,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #d9ebff;
    line-height: 1.8;
    font-size: 1rem;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .features {
        grid-template-columns: 1fr;
    }

    .why-us {
        padding: 80px 20px;
    }
}
@media (max-width: 992px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-outline {
        width: 100%;
    }
}










/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    width: 100%;
    padding: 90px 0 0;
    position: relative;
}

/* MAIN CONTAINER */
.about-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================================================
   TOP CONTENT LAYOUT
========================================================= */

.about-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================================
   LEFT & RIGHT IMAGES
========================================================= */

.about-side-image {
    flex: 1.5;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-side-image:first-child {
    justify-content: flex-start;
    border-left: 6px solid #ffb400;
}

.about-side-image:last-child {
    justify-content: flex-end;
    border-right: 6px solid #ffb400;
}

.about-side-image img {
    width: 100%;
    max-width: none;
    height: clamp(650px, 85vh, 1100px);
    object-fit: cover;
    border-radius: 0;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition:
        transform 0.5s ease,
        filter 0.5s ease,
        box-shadow 0.5s ease;
    border: 2px solid #ffb400;
    outline: 2px solid rgba(255, 180, 0, 0.3);
    outline-offset: 6px;

}

.about-side-image:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45),
        0 0 25px rgba(255, 180, 0, 0.35);
}

.about-side-image:first-child:hover img {
    transform: scale(1.06) translateX(10px);
}

.about-side-image:last-child:hover img {
    transform: scale(1.06) translateX(-10px);
}

/* =========================================================
   TEXT AREA
========================================================= */

.about-text {
    flex: 0 0 900px;
    max-width: 900px;
    text-align: center;
    padding: 0 40px;
}

.about-text h2 {
    font-size: clamp(2rem, 3vw, 2.5rem); /* 32px–40px */
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-text h3 {
    margin-top: 25px;
    font-size: clamp(1.25rem, 2vw, 1.75rem); /* 20px–28px */
    font-weight: 700;
    color: #cfe8ff;
}

.about-text p {
    font-size: clamp(1rem, 1.2vw, 1.125rem); /* 16px–18px */
    line-height: 1.8;
    color: #eaf4ff;
    max-width: 750px;
    margin: 0 auto 20px;
}

/* =========================================================
   FULL WIDTH IMAGE ABOVE FOOTER
========================================================= */

.about-images {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 80px;
}

.about-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: 0 -10px 50px rgba(0,0,0,0.35);
}
/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .about-text {
        flex: 0 0 700px;
        max-width: 700px;
    }

    .about-side-image img {
        height: 550px;
    }
}

/* =========================================
                MOBILE
============================================ */

@media (max-width: 900px) {

    .about-content {
        flex-direction: column;
    }

    .about-text {
        flex: auto;
        max-width: 100%;
        padding: 0 20px;
    }

    .about-side-image {
        width: 100%;
        justify-content: center !important;
    }

    .about-side-image img {
        width: 90%;
        max-width: 500px;
        height: 350px;
        border-radius: 12px;
    }

    .about-images img {
        height: 350px;
    }
}

/* =========================================================
                    SMALL PHONES
========================================================= */

@media (max-width: 768px) {

    .about-text h2 {
        font-size: 2.3rem;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-images img {
        height: 280px;
    }
}















/* =========================================================
                   PURPOSE SECTION 
========================================================= */

.mission-section {
    padding: 80px 20px;
}   
/* =========================================================
   GRID CONTAINER (WIDER + MORE SPACING)
========================================================= */

.mission-container {
    max-width: 1200px;   /* bigger width */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* more breathing room */
}

/* =========================================================
   TITLE (BIGGER IMPACT)
========================================================= */

.mission-container h2 {
    grid-column: 1 / -1;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

/* =========================================================
                      BOXES 
========================================================= */

.mission-box {
    padding: 30px;   /* bigger padding */
    border-left: 5px solid #0a4d8c;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: 0.25s ease;
}

/* hover effect */
.mission-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* =================================================
                SUBHEADINGS 
==================================================== */

.mission-box h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem); /* 20px–28px */
    margin-bottom: 12px;
    font-weight: 800;
    color: #cfe8ff;
}

/* ===================================
             TEXT 
====================================== */

.mission-box p,
.mission-box ul {
    font-size: clamp(1rem, 1.2vw, 1.125rem);  /* 16px–18px */
    line-height: 1.8;
    color: #eaf4ff;
}

/* LIST spacing */
.mission-box ul {
    padding-left: 25px;
}

.mission-box ul li {
    margin-bottom: 10px;
}

/* =========================================================
   CORE VALUES FULL WIDTH (STRONG FEATURE BLOCK)
========================================================= */

.mission-box:nth-child(4) {
    grid-column: 1 / -1;
}

/* =========================================================
   RESPONSIVE (KEEP BIG BUT SAFE)
========================================================= */

@media (max-width: 900px) {
    .mission-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mission-container h2 {
        font-size: 2.4rem;
    }

    .mission-box {
        padding: 25px;
    }
}
















/* =========================
     SERVICES SECTION
========================= */


.services-section .container {
    max-width: 1500px;
    margin: auto;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.services-section .subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.85); /* light white */
    font-size: 18px;
    line-height: 1.7;
}

/* =========================
            GRID
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* =========================
           CARD
========================= */

.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* =========================
        IMAGE
========================= */

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* =========================
       CONTENT
========================= */

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    color: #0f2d4d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* =========================
      RESPONSIVE
========================= */

@media (max-width: 768px) {

    .services-section h2 {
        font-size: 32px;
    }

    .services-section .subtitle {
        font-size: 16px;
    }

    .service-card img {
        height: 200px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}











/* =========================================================
            CLIENTS SECTION 
=======================================================*/
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
     font-size: clamp(2rem, 3vw, 2.5rem); /* 32px–40px */
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
}
.section-header p {
    margin-top: 12px;
    font-size: clamp(1rem, 1.2vw, 1.125rem); /* 16px–18px */
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    margin-inline: auto;
    line-height: 1.8;
}

/* =========================================================
                CLIENTS GRID 
========================================================= */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;

    max-width: 1150px;
    margin: 0 auto;
}

/* =========================================================
                CLIENT CARD 
========================================================= */

.client-item {
    position: relative;
    overflow: hidden;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

/* hover (more subtle, less “floaty”) */
.client-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 30px rgba(0, 120, 255, 0.15);
}

/* ======================================
                LOGO FIX 
========================================= */
.client-item img {
    width: auto;
    height: 90px;
    max-width: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.client-item:hover img {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}   

/* hover zoom only on logo */
.client-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* ========================================
                LABEL FIX
=========================================== */

.client-item span {
    margin-top: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.8);
}


.client-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0a4d8c;
}

/* ===================================
                 RESPONSIVE 
====================================== */

@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}


















/* ==================================================
            COMPLETED PROJECTS
===================================================== */

.completed-projects {
    margin-top: 40px;
}

/* SECTION TITLE */
.completed-projects::before {
    content: "COMPLETED PROJECTS";
    display: block;
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
}

.completed-projects::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin: -30px auto 40px;
    background: linear-gradient(
        90deg,
        transparent,
        #ffb400,
        transparent
    );
    border-radius: 10px;
}

/* ============================================
                    PROJECT GRID
=============================================== */

.completed-projects ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* =========================================
                 PROJECT CARD
============================================ */

.completed-projects li {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,180,0,0.15);
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.completed-projects li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #ffb400;
}

.completed-projects li:hover {
    transform: translateY(-8px);
    border-color: rgba(255,180,0,0.5);
    box-shadow:
        0 15px 35px rgba(0,0,0,0.35),
        0 0 20px rgba(255,180,0,0.12);
}

/* =========================================================
                SUBSTATION NAME
========================================================= */

.completed-projects strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* =========================================================
                 PROJECT DETAILS
========================================================= */

.project-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-details div {
    position: relative;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 22px;
}

.project-details div::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #ffb400;
    font-size: 0.9rem;
}

/* =========================================================
                RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .completed-projects ul {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .completed-projects::before {
        font-size: 2rem;
    }

    .completed-projects li {
        padding: 20px;
    }

    .completed-projects strong {
        font-size: 1rem;
    }

}
















/* =========================================================
                      CONTACT PAGE
========================================================= */

.contact-hero {
    position: relative;

    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;

    padding: 0 20px;

    background: linear-gradient(
        135deg,
        rgba(5, 12, 25, 0.85),
        rgba(10, 35, 70, 0.75)
    );
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at top,
        rgba(255, 204, 0, 0.12),
        transparent 60%
    );

    z-index: 0;
}

/* content stays above */
.contact-hero .hero-content {
    position: relative;
    z-index: 1;

    max-width: 800px;
}

.contact-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-top: 15px;
    color: rgba(255,255,255,0.85);
}

/* =========================================================
          CONTACT INFO SECTION 
========================================================= */

.contact-info-section {
    padding: 80px 20px;
    background: transparent;
}

.contact-info-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* GLASS CARD STYLE (MATCH SERVICES) */
.info-card {
    position: relative;
    padding: 30px 25px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.10);

    text-align: center;
    color: #fff;

    transition: 0.3s ease;
}

/* hover */
.info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 204, 0, 0.25);
}

/* icon */
.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

/* text */
.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.info-card p {
    font-size: 0.95rem;
    color: #d1d5db;
}


/* =========================================================
             CONTACT MAP SECTION
========================================================= */

.contact-map-section {
    padding: 100px 20px;
    background: transparent;
    color: #fff;
}

/* MAIN WRAPPER */
.map-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* TITLE */
.map-container h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #ffffff;
}

/* SUBTEXT */
.map-container p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* =========================================================
                    CLEAN LAYOUT WRAPPER
========================================================= */

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
    align-items: stretch;
}

/* =========================================================
                INFO PANEL 
========================================================= */

.map-info {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;

    padding: 30px;
    text-align: left;

    backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    transition: all 0.25s ease;
}

.map-info:hover {
    border-color: rgba(255, 204, 0, 0.25);
    transform: translateY(-3px);
}

/* INFO TITLE */
.map-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 15px;
}

/* INFO TEXT */
.map-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

/* LABEL LIST */
.map-info .details {
    margin-top: 15px;
}

.map-info .details div {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

/* BUTTON */
.map-info a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 16px;

    background: #ffcc00;
    color: #001b44;
    font-weight: 700;
    text-decoration: none;

    border-radius: 8px;
    transition: 0.3s ease;
}

.map-info a:hover {
    background: #ffd84d;
    transform: translateY(-2px);
}

/* =========================================================
                     MAP FRAME 
========================================================= */

.map-frame {
    border-radius: 12px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow: 0 18px 45px rgba(0,0,0,0.45);

    transition: all 0.3s ease;
}

.map-frame iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* subtle hover */
.map-frame:hover {
    transform: scale(1.01);
    border-color: rgba(255, 204, 0, 0.25);
}

/* =========================================================
                 RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .map-info {
        text-align: center;
    }

    .map-info .details {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-left h2 {
        font-size: 2rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}






















/* =========================================================
                     FOOTER 
========================================================= */

.site-footer {
    width: 100%;
    background: linear-gradient(180deg, #070a0e, #0b0f14);
    color: #cfd6dd;
    border-top: 2px solid #ffb000;
    padding-top: 40px;
}

/* =========================================================
                FOOTER GRID 
========================================================= */

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 100px; 
    max-width: 1400px;
    margin: auto;
    padding: 60px 25px; 
    align-items: start;
}

/* =========================================================
                BRAND COLUMN
========================================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* LOGO + TEXT ROW */
.footer-brand-title {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-brand-title:hover {
    transform: translateY(-1px);
    transition: 0.3s ease;
}

/* BIGGER LOGO  */
.footer-logo {
    width: 60px;    
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    top: 7px;
} 

/* BRAND TEXT (VOLTMASTERS) */
.footer-brand h2 {
    margin: 0;
    font-size: 24px;  
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    transform: translateY(-2px);
}

.footer-brand h2 span {
    color: #ffb000;
}

/* ENGINEERING SERVICES  */
.tagline {
    margin-top: -15px;
    margin-left: 77px;
    font-size: 16px;
    font-weight: 500;
    color: #aec2d4;
    letter-spacing: 1.5px;
    text-align: left;
}

/* ================================================
                NAVIGATION COLUMN 
=================================================== */

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 25px;
}

.footer-nav h3 {
    font-size: 13px;
    color: #ffb000;
    margin-bottom: 10px;
}

.footer-nav a {
    font-size: 18px;
    color: #cfd6dd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #ffb000;
    padding-left: 4px;
}

/* =====================================
             CONTACT COLUMN
======================================== */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* ====================================
             SOCIAL COLUMN
======================================== */
.footer-social h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social p {
    font-size: 14px; 
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1877f2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.socials a:hover {
    transform: translateY(-3px);
}

/* =============================================
            FOOTER BOTTOM 
================================================ */

.footer-bottom {
    text-align: center;
    padding: 18px;
    font-size: 12px;
    color: #7f8a93;
    border-top: 1px solid #1c2630;
}

/* ==========================================
            RESPONSIVE
============================================= */

@media (max-width: 900px) {

    .footer-content {
        grid-template-columns: 1fr 1fr; /* 2 columns tablet */
    }
}

@media (max-width: 600px) {

    .footer-content {
        grid-template-columns: 1fr; /* stack mobile */
        text-align: center;
    }

    .footer-brand-title {
        justify-content: center;
    }

    .socials {
        justify-content: center;
    }

    .footer-nav a:hover {
        padding-left: 0;
    }
}
