/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
    /* Black & White Theme */
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-gray: #1a1a1a;
    
    /* Accent Color - Orange (Very Sparing) */
    --accent: #d65a31;
    --accent-dark: #b84a28;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-black: #000000;
    --text-gray: #666666;
    --text-light-gray: #999999;
    
    /* Typography */
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --nav-height: 80px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.bg-black {
    background-color: var(--bg-black);
    color: var(--text-white);
}

.bg-white {
    background-color: var(--bg-white);
    color: var(--text-black);
}

.bg-soft {
    background-color: var(--bg-light);
    color: var(--text-black);
}

.text-accent { color: var(--text-black); }
.center { text-align: center; }

/* Section Label */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.bg-black .section-subtitle {
    color: var(--text-light-gray);
}

/* Accent Line */
.accent-line {
    width: 40px;
    height: 2px;
    background-color: var(--text-black);
    margin: 16px auto;
}

/* ========================================
   BUTTONS - Sharp Edges
   ======================================== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    border-radius: 0; /* Sharp edges */
}

.btn-primary {
    background-color: var(--text-black);
    color: var(--text-white);
    border-color: var(--text-black);
}

.btn-primary:hover {
    background-color: #222222;
    border-color: #222222;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: currentColor;
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--text-black);
    color: var(--text-white);
    border-color: var(--text-black);
}

.bg-white .btn-outline {
    color: var(--text-black);
    border-color: var(--text-black);
}

.bg-white .btn-outline:hover {
    background-color: var(--text-black);
    color: var(--text-white);
}

.full-width { width: 100%; }

/* ========================================
   NAVIGATION
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-black);
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-text {
    display: inline-block;
}

.logo-mark {
    width: 74px;
    height: 74px;
    object-fit: contain;
}


.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-black);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-black);
}

.nav-mobile-info {
    display: none;
}

.nav-cta { padding: 12px 24px; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-black);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    padding-top: var(--nav-height);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.53) 100%
    );
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-black);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--text-black);
}

.hero-content .highlight { color: var(--text-black); }

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 550px;
    color: var(--text-black);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Hero Form (Desktop) */
.hero-form-container {
    background: var(--bg-white);
    border: 1px solid #e5e5e5;
    padding: 40px;
}

.hero-form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.hero-form-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-black);
}

.hero-form-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Hero Call Button */
.hero-call {
    margin-top: 18px;
}

.hero-call .btn {
    width: 100%;
    text-align: center;
}

/* Hero Mobile Form */
.hero-mobile-form {
    display: none;
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    background: var(--bg-white);
    border-top: 2px solid var(--text-black);
    margin-top: 40px;
}

.mobile-form-header {
    margin-bottom: 24px;
}

.mobile-form-header h3 {
    font-size: 1.3rem;
    color: var(--text-black);
}

/* ========================================
   FORMS
   ======================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid #e0e0e0;
    padding: 14px 16px;
    color: var(--text-black);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 0; /* Sharp edges */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light-gray);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--text-black);
    background-color: var(--bg-white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* White Background Form */
.bg-white .form-group label {
    color: var(--text-gray);
}

.bg-white .contact-form input,
.bg-white .contact-form select,
.bg-white .contact-form textarea {
    background-color: var(--bg-light);
    border-color: #e0e0e0;
    color: var(--text-black);
}

.bg-white .contact-form input::placeholder,
.bg-white .contact-form textarea::placeholder {
    color: var(--text-light-gray);
}

.bg-white .contact-form input:focus,
.bg-white .contact-form select:focus,
.bg-white .contact-form textarea:focus {
    border-color: var(--text-black);
    background-color: var(--bg-white);
}

/* Form Success */
.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.form-success.active {
    opacity: 1;
    pointer-events: all;
}

.form-success .check-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--text-black);
    color: var(--text-black);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.form-success h3 {
    color: var(--text-black);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.form-success p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hidden { display: none; }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.check-list {
    margin-top: 30px;
    margin-bottom: 40px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-black);
}

.check-list span {
    color: var(--text-black);
    font-weight: bold;
    margin-right: 16px;
    font-size: 1.2rem;
}

.img-wrapper {
    position: relative;
}

.img-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--text-black);
    z-index: -1;
}

.img-wrapper img {
    width: 100%;
    height: auto;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 45px;
    border: 1px solid #e5e5e5;
    transition: var(--transition);
    position: relative;
}

.service-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition-slow);
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.service-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-black);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Home Services Hover Reveal */
.service-card--preview {
    position: relative;
    overflow: hidden;
}

.service-card--preview > * {
    position: relative;
    z-index: 1;
}

.service-card--preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--service-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: var(--transition-slow);
    z-index: 0;
}

.service-card--preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card--preview:hover::after,
.service-card--preview:focus-visible::after,
.service-card--preview:hover::before,
.service-card--preview:focus-visible::before {
    opacity: 1;
}

.service-card--preview:hover,
.service-card--preview:focus-visible {
    color: var(--text-white);
}

.service-card--preview:hover h3,
.service-card--preview:focus-visible h3,
.service-card--preview:hover .service-number,
.service-card--preview:focus-visible .service-number {
    color: var(--text-white);
}

.service-card--preview:hover .service-number,
.service-card--preview:focus-visible .service-number {
    opacity: 0.9;
}

/* Service Cards with Images */
.service-card--image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-media {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-slow);
    filter: grayscale(20%);
}

.service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.6) 100%
    );
    opacity: 0;
    transition: var(--transition);
}

.icon-box {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
    border: 2px solid var(--text-black);
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-black);
    transition: var(--transition);
}

.icon-box svg {
    width: 26px;
    height: 26px;
}

.service-body {
    padding: 32px 40px 40px;
}

.service-card--image:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.service-card--image:hover .service-media::after {
    opacity: 1;
}

.service-card--image:hover .icon-box {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(214, 90, 49, 0.35);
    transform: translateY(-2px);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    padding: 120px 0 80px;
    margin-top: var(--nav-height);
    background-size: cover;
    background-position: center;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.58) 0%,
        rgba(255, 255, 255, 0.72) 60%,
        rgba(255, 255, 255, 1) 100%
    );
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--text-black);
}

.header-content p {
    color: var(--text-gray);
    max-width: 620px;
}

.header-services {
    background-image: url('images/Expertise\ &\ Support.jpg');
}

.header-projects {
    background-image: url('images/hero\ project\ page.jpg');
}

/* ========================================
   PROJECTS
   ======================================== */
.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.project-item:last-child {
    margin-bottom: 0;
}

.project-item:nth-child(even) .project-content {
    order: 2;
}

.project-item:nth-child(even) .project-image {
    order: 1;
}

.project-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.project-meta {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.project-content p {
    color: var(--text-gray);
    margin-bottom: 12px;
}

.project-content .result {
    margin-top: 18px;
    padding-left: 14px;
    border-left: 2px solid var(--text-black);
    color: var(--text-black);
}

.project-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border: 1px solid #e5e5e5;
}

/* Project Slider */
.project-slider {
    position: relative;
    height: 720px;
}

.project-slides {
    position: relative;
    height: 100%;
}

.project-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.project-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.project-slide img,
.project-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #e5e5e5;
    display: block;
}

.project-slide video {
    background: #000000;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-black);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.project-slider:hover .slider-arrow,
.project-slider:focus-within .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.slider-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.slider-prev { left: 14px; }
.slider-next { right: 14px; }

/* ========================================
   FAQ
   ======================================== */
.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e5e5e5;
    background: var(--bg-white);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--text-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.faq-question .plus {
    font-size: 1.4rem;
    color: var(--text-black);
    transition: var(--transition);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question .plus {
    transform: rotate(45deg);
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 30px 20px;
}

.trust-number {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 3rem;
    color: var(--text-black);
    margin-bottom: 0;
}

.trust-item p {
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Trust Marquee */
.trust-marquee {
    background: var(--bg-light);
    color: var(--text-black);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 14px 0;
    overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 18s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
    flex: 0 0 auto;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-gray);
    white-space: nowrap;
}

.marquee-item strong {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--text-black);
    letter-spacing: 0.5px;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.why-content > p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-feature {
    padding-left: 20px;
    border-left: 2px solid var(--text-black);
}

.why-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.why-feature p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-item::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-white);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::after,
.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    z-index: 2;
}

.gallery-load-more {
    margin-top: 32px;
    text-align: center;
}

.gallery-load-more .btn {
    min-width: 180px;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    width: 100%;
}

.lightbox-content {
    max-width: 100%;
    max-height: 65vh;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 45px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-size: 30px;
    width: 55px;
    height: 55px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.lightbox-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-thumbnails {
    display: flex;
    gap: 12px;
    padding: 20px;
    overflow-x: auto;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2001;
}

.lightbox-thumb {
    width: 80px;
    height: 55px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: var(--transition);
    border: 2px solid transparent;
    flex-shrink: 0;
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--text-black);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid #e5e5e5;
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-slow);
}

.testimonial-card:hover::before {
    width: 100%;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--text-black);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-black);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ========================================
   PROCESS STEPS
   ======================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step {
    background: var(--bg-white);
    border: 1px solid #e5e5e5;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -16px;
    width: 32px;
    height: 2px;
    background: #d6d6d6;
}

.step:last-child::after {
    display: none;
}

.step-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2rem;
    color: var(--text-black);
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-black);
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-item h4 {
    color: var(--text-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.c-item a,
.c-item p {
    font-size: 1rem;
    color: var(--text-black);
    margin: 0;
    line-height: 1.6;
}

.c-item a {
    font-weight: 600;
}

.c-item a:hover {
    color: var(--accent);
}

.contact-form-container {
    background: var(--bg-light);
    padding: 50px;
    border: 1px solid #e5e5e5;
    position: relative;
}

/* ========================================
   MAP
   ======================================== */
.map-section {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(90%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--bg-white);
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
}

.footer-brand h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-black);
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}

.footer-logo .logo-mark {
    width: 54px;
    height: 54px;
}

.footer-logo .logo-text {
    display: inline-block;
}


.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--text-black); }

.footer-contact {
    text-align: right;
}

.footer-contact a {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light-gray);
}

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

.footer-powered-by {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.footer-powered-by a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    color: var(--text-gray);
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 1.2px;
    white-space: nowrap;
    transition: var(--transition);
}

.footer-powered-by a:hover {
    border-color: var(--text-black);
    color: var(--text-black);
}

.footer-powered-by img {
    height: 14px;
    opacity: 0.75;
}

/* Testimonials Stars + Google Link */
.review-stars {
    display: inline-flex;
    gap: 3px;
    color: #d4a11e;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid var(--text-black);
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: var(--transition);
}

.google-reviews-link:hover {
    background: var(--bg-light);
}

.google-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade Up */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"].show {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from Right (element appears sliding IN from LEFT) */
[data-animate="slide-right"] {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="slide-right"].show {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from Left (element appears sliding IN from RIGHT) */
[data-animate="slide-left"] {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="slide-left"].show {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Animations */
.fade-in-up {
    animation: fadeInUp 0.8s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        padding: 40px 0 20px;
    }
    
    .hero-form-container {
        display: none;
    }
    
    .hero-mobile-form {
        display: block;
        width: 100%;
        margin-top: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step::after { display: none; }

    .project-item {
        grid-template-columns: 1fr;
    }

    .project-item:nth-child(even) .project-content,
    .project-item:nth-child(even) .project-image {
        order: unset;
    }

    .project-image img {
        height: 600px;
    }

    .project-slider {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }

    .section-padding { padding: 80px 0; }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        display: flex;
        flex-direction: column;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        height: calc(100vh - var(--nav-height));
        padding-top: 60px;
        transition: 0.3s;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        overflow-y: auto;
    }
    
    .nav-menu.active { left: 0; }
    .nav-menu ul { flex-direction: column; gap: 30px; }
    .mobile-toggle { display: block; }
    
    .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
    .mobile-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .logo {
        gap: 8px;
        font-size: 1.1rem;
        letter-spacing: -0.3px;
    }

    .logo-mark {
        width: 60px;
        height: 60px;
    }

    .logo-text {
        display: none;
    }

    .nav-container {
        padding: 0 12px;
    }

    .nav-mobile-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: auto;
        padding: 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 0.85rem;
        color: var(--text-gray);
    }

    .nav-mobile-info a {
        color: var(--text-black);
        font-weight: 600;
    }

    .nav-mobile-info span {
        color: var(--text-light-gray);
        font-size: 0.8rem;
    }

    .mobile-toggle {
        margin-left: auto;
    }
    
    /* Hero */
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .btn { display: block; text-align: center; }
    .hero-content { padding: 0 2vh; }
    
    /* Grids */
    .about-grid,
    .why-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image { order: -1; }
    
    .trust-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .trust-number { font-size: 2.2rem; }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .process-steps { grid-template-columns: 1fr; }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        padding-top: 10px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-contact { text-align: center; }

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

    .footer-powered-by {
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Form */
    .form-row { grid-template-columns: 1fr; }
    .contact-form-container { padding: 30px; }

    .hero-mobile-form {
        padding: 36px 24px;
        margin-top: 32px;
    }

    .hero-call .btn {
        font-size: 0.8rem;
    }
    
    /* Lightbox */
    .lightbox-arrow {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-thumb { width: 60px; height: 42px; }
    .lightbox-main { padding: 60px 20px; }
    
    /* Map */
    .map-section { height: 300px; }
    
    /* Section headers */
    .section-header h2,
    .about-text h2,
    .why-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .page-header {
        padding: 100px 0 60px;
        min-height: 280px;
    }

    .header-content h1 {
        font-size: 2.2rem;
    }

    .service-media {
        height: 200px;
    }

    .service-body {
        padding: 26px;
    }

    .project-image img {
        height: 520px;
    }

    .project-slider {
        height: 520px;
    }

    .project-item {
        gap: 40px;
    }

    .service-card:not(.service-card--image) {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .section-padding { padding: 64px 0; }

    .container { padding: 0 20px; }

    .hero-content h1 { font-size: 1.8rem; }

    .logo {
        gap: 6px;
        font-size: 0.98rem;
    }

    .logo-mark {
        width: 62px;
        height: 62px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .hero-grid {
        padding: 30px 0 16px;
    }

    .hero-mobile-form {
        padding: 32px 20px;
        margin-top: 28px;
    }

    .hero-buttons { gap: 12px; }
    
    .section-header h2,
    .about-text h2,
    .why-content h2,
    .contact-info h2 {
        font-size: 1.7rem;
    }

    .page-header {
        padding: 80px 0 50px;
        min-height: 240px;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .service-media {
        height: 180px;
    }

    .service-card:not(.service-card--image) {
        padding: 26px;
    }

    .img-wrapper::before {
        top: 10px;
        left: 10px;
    }
    
    .gallery-grid { grid-template-columns: 1fr; }
    .trust-wrapper { grid-template-columns: 1fr; }
}
