/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0d2137;
    --primary-light: #1a3a5c;
    --accent: #e87a1e;
    --accent-light: #f59e4b;
    --accent-dark: #c96510;
    --dark: #0a1628;
    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #4a4a5a;
    --gray-600: #6b6b7b;
    --gray-500: #8b8b9b;
    --gray-400: #b0b0c0;
    --gray-300: #d0d0dd;
    --gray-200: #e8e8f0;
    --gray-100: #f4f4f8;
    --white: #ffffff;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.mt-4 {
    margin-top: 40px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: relative; /* Changing to relative to allow the large header to flow with content */
    width: 100%;
    z-index: 1000;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 8px 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Reduced gap between logo and nav links */
}

@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
    }
    .nav-logo img {
        height: 60px;
        margin: 0;
    }
    .nav-menu {
        /* Menu visibility is controlled by off-screen positioning and the .active class */
    }
}

.nav-logo {
    display: block;
    margin: 0 auto;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.nav-logo img {
    height: 350px; /* Massively larger logo for maximum impact */
    width: auto;
    display: block;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    max-width: 98vw;
    object-fit: contain;
    margin-bottom: -20px; /* Integrated look with the navigation */
}

.nav-list {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 1.1rem; /* Larger font for visibility */
    font-weight: 700;
    color: #0d2137 !important; /* Force primary blue color */
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(13, 33, 55, 0.05);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(232, 122, 30, 0.08);
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-phone:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary); /* Blue menu button */
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.92) 0%, rgba(26, 58, 92, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 80px; /* Adjusted padding since header is no longer fixed */
}

.hero-badge {
    display: none;
    padding: 8px 20px;
    background: rgba(232, 122, 30, 0.15);
    border: 1px solid rgba(232, 122, 30, 0.3);
    border-radius: var(--radius-xl);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 122, 30, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ===== SECTION HEADERS ===== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--gray-600);
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.stat-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: var(--radius-md);
    z-index: -1;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .service-icon {
    display: none; /* Hide old icon style in cards */
}   transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

/* ===== WHY SECTION ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-item-icon {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/aerial-site.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.page-header-safety::before {
    background: url('../images/safety.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.9) 0%, rgba(26, 58, 92, 0.85) 100%);
}

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

.page-header-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: var(--accent-light);
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.service-list li i {
    color: var(--accent);
    font-size: 0.8rem;
}

.service-detail-image img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* ===== SECTORS ===== */
.sectors-section {
    background: var(--gray-100);
}

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

.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.sector-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sector-item i {
    font-size: 2rem;
    color: var(--accent);
}

.sector-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===== H&S SECTION ===== */
.hs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hs-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.hs-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.hs-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 122, 30, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.hs-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.hs-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.hs-policies-section {
    background: var(--gray-100);
}

/* ===== ACCREDITATIONS ===== */
.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.accreditation-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.accreditation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.accreditation-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.accreditation-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.accreditation-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ===== H&S STATS ===== */
.hs-stats-section {
    background: var(--gray-100);
}

.hs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hs-stat {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hs-stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.hs-stat h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.hs-stat p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ===== GALLERY & REVIEWS COMING SOON ===== */
.gallery-coming-soon,
.reviews-coming-soon {
    padding: 80px 0;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 32px;
}

.coming-soon-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.coming-soon-content > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.coming-soon-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.coming-soon-feature i {
    font-size: 1.5rem;
    color: var(--accent);
}

.coming-soon-feature span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.coming-soon-cta p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* ===== REVIEWS PLACEHOLDER ===== */
.reviews-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.review-placeholder-card {
    background: var(--gray-100);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--gray-300);
}

.review-stars {
    margin-bottom: 16px;
    color: var(--gray-400);
    font-size: 1.1rem;
}

.review-placeholder-text {
    font-style: italic;
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.review-placeholder-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-300);
    border-radius: 50%;
    color: var(--gray-500);
}

.review-placeholder-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.review-placeholder-author span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--gray-200);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-method-info a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-method-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.contact-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 122, 30, 0.1);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 45px;
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a,
.footer-contact ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--accent-light);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact ul li i {
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.phone-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(232, 122, 30, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(232, 122, 30, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .why-grid,
    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hs-grid,
    .accreditations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-placeholder {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 80px 32px 32px;
        transition: var(--transition);
        z-index: 998;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 4px;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 999;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-phone span {
        display: none;
    }
    
    .nav-phone {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hs-grid,
    .accreditations-grid {
        grid-template-columns: 1fr;
    }
    
    .hs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
}

/* ===== 2026 PREMIUM IMAGE-LED REFRESH ===== */
body {
    background: #f7f5f0;
}

.header {
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(13,33,55,0.08);
}

.nav {
    position: relative;
    height: 72px;
    justify-content: center;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 8px 18px;
    border-radius: 2px;
}

.nav-logo img {
    height: 240px;
    width: auto;
    max-width: 520px;
    object-fit: contain;
}

.nav-menu {
    width: 100%;
}

.nav-list {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-right: 200px;
}

.nav-list .nav-item:nth-child(3) {
    margin-right: 350px;
}

.nav-link {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .76rem;
    font-weight: 700;
    color: #14263a;
    background: transparent !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-actions {
    position: absolute;
    right: 0;
    z-index: 5;
}

.nav-phone {
    border-radius: 0;
    background: var(--accent);
    box-shadow: 0 12px 28px rgba(232,122,30,.22);
}

.hero {
    min-height: 88vh;
    align-items: center;
    justify-content: center;
    background: #0b1726;
    margin-top: 0;
}

.hero::before {
    background: url('../images/hero-construction.jpg') center/cover no-repeat;
    opacity: 1;
    transform: scale(1.05);
    animation: subtleHeroZoom 16s ease-in-out infinite alternate;
}

@keyframes subtleHeroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.11); }
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(5,12,22,.78) 0%, rgba(8,18,30,.58) 42%, rgba(8,18,30,.34) 100%),
        linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.62));
}

.hero-content {
    width: 100%;
    padding: 170px 0 110px;
}

.hero-title {
    max-width: 880px;
    font-size: clamp(2.65rem, 7vw, 6.2rem);
    letter-spacing: -.055em;
    text-transform: uppercase;
    line-height: .92;
    margin-bottom: 28px;
}

.hero-subtitle {
    max-width: 650px;
    color: rgba(255,255,255,.9);
    font-size: clamp(1rem, 2vw, 1.28rem);
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: .78rem;
    padding: 16px 30px;
}

.section {
    padding: 112px 0;
}

.section-label {
    color: var(--accent);
    letter-spacing: .18em;
}

.section-title {
    letter-spacing: -.035em;
}

.about-section,
.why-section {
    background: #f7f5f0;
}

.about-grid,
.why-grid {
    gap: clamp(38px, 7vw, 96px);
}

.about-image img,
.why-image img {
    border-radius: 0;
    box-shadow: 0 28px 80px rgba(12,22,35,.18);
    filter: saturate(.92) contrast(1.04);
}

.about-image::before,
.why-image::before {
    content: '';
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(232,122,30,.55);
    z-index: -1;
}

.why-image {
    position: relative;
}

.about-image-accent {
    display: none;
}

.services-preview {
    background: #0d2137;
    color: rgba(255,255,255,.78);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/aerial-site.jpg') center/cover no-repeat;
    opacity: .14;
    transform: scale(1.02);
}

.services-preview .container {
    position: relative;
    z-index: 1;
}

.services-preview .section-title,
.services-preview .service-card h3 {
    color: #fff;
}

.services-preview .section-subtitle,
.services-preview .service-card p {
    color: rgba(255,255,255,.72);
}

.service-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.service-card:hover {
    border-color: rgba(232,122,30,.8);
    box-shadow: 0 24px 65px rgba(0,0,0,.25);
}

.service-icon {
    border-radius: 0;
}

.cta-section {
    background: linear-gradient(rgba(13,33,55,.82), rgba(13,33,55,.82)), url('../images/infrastructure.jpg') center/cover fixed;
}

.footer {
    background: #07111f;
}

.footer-logo {
    width: 220px;
    background: #fff;
    padding: 8px;
}

@media (max-width: 1024px) {
    .nav {
        height: 94px;
        justify-content: space-between;
    }
    .nav-logo img {
        height: 200px;
        max-width: 420px;
    }
    .nav-list .nav-item:nth-child(3) {
        margin-right: 0;
    }
    .nav-list {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        height: 92px;
    }
    .nav-logo {
        padding: 5px 10px;
        max-width: 58vw;
    }
    .nav-logo img {
        height: 85px;
        max-width: 56vw;
    }
    .nav-actions {
        right: 0;
    }
    .nav-phone {
        position: absolute;
        right: 54px;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-toggle {
        position: relative;
        z-index: 1001;
    }
    .nav-menu {
        padding-top: 110px;
    }
    .hero {
        min-height: 86vh;
    }
    .hero-content {
        padding: 150px 0 96px;
    }
    .hero-title {
        font-size: clamp(2.4rem, 14vw, 4.1rem);
    }
    .about-image img,
    .why-image img {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    .nav-logo img {
        height: 68px;
        max-width: 54vw;
    }
    .hero-title {
        font-size: 2.55rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

header { background: #0f1720 !important; }

.hero-content { text-align: center; margin: 0 auto; }

header img { height: 240px !important; }

.menu, .menu-icon, .hamburger, .nav-toggle { color: #ffffff !important; fill: #ffffff !important; }

.menu span, .hamburger span { background: #ffffff !important; }

/* ===== CALL CONFIRMATION OVERLAY ===== */
.call-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    animation: callOverlayFadeIn 0.2s ease;
}

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

@keyframes callOverlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.call-sheet {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 380px;
    padding: 28px 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: callSheetSlideUp 0.25s ease;
}

.call-sheet-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 12px;
    border: 2px solid var(--gray-200);
    padding: 4px;
    background: var(--white);
}

.call-sheet-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.call-sheet-number {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.call-sheet-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.call-sheet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.call-sheet-btn.call {
    background: var(--accent);
    color: var(--white);
}

.call-sheet-btn.call:hover {
    background: var(--accent-dark);
}

.call-sheet-btn.cancel {
    background: var(--gray-100);
    color: var(--gray-700);
}

.call-sheet-btn.cancel:hover {
    background: var(--gray-200);
}
