/* =====================================================
   Fajar Al Madinah Heavy Equipment Rental LLC
   Premium Industrial Theme - Custom CSS
   ===================================================== */

/* ---------- Root Variables ---------- */
:root {
    --bg-main: #090A0C;
    --bg-secondary: #15171B;
    --bg-card: #1D2026;
    --bg-card-hover: #262a32;
    --gold: #E7A600;
    --gold-bright: #FDBA00;
    --gold-soft: #b88600;
    --text-white: #F5F5F5;
    --text-grey: #C7C7C7;
    --text-muted: #8a8f99;
    --border-color: rgba(231, 166, 0, 0.18);
    --shadow-gold: 0 10px 40px rgba(231, 166, 0, 0.25);
    --shadow-dark: 0 15px 50px rgba(0, 0, 0, 0.6);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}




.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 120px;   /* 🔥 yahan size big karo */
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.brand-sub {
    font-size: 12px;
    color: gray;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-white);
    line-height: 1.25;
}

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

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

section {
    padding: 100px 0;
    position: relative;
}

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

/* ---------- Typography Helpers ---------- */
.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 50px;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-grey);
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 60px;
}

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

.text-gold { color: var(--gold); }
.text-grey { color: var(--text-grey); }
.bg-secondary { background-color: var(--bg-secondary); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(231, 166, 0, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(231, 166, 0, 0.55);
    color: #000;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 166, 0, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.btn-call {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}
.btn-call:hover {
    background: var(--text-white);
    color: #000;
    transform: translateY(-3px);
}

/* ---------- Header / Navbar ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}
.header.scrolled {
    background: rgba(9, 10, 12, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}
.logo-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(231,166,0,0.35);
    position: relative;
}
.logo-icon svg { width: 30px; height: 30px; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text .brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.3px;
}
.logo-text .brand-sub {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-menu li a {
    padding: 10px 18px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 0; height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-menu li a:hover, .nav-menu li a.active {
    color: var(--gold);
}
.nav-menu li a:hover::after, .nav-menu li a.active::after {
    width: 70%;
}

.nav-cta {
    margin-left: 12px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background-color: #000;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.12); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,10,12,0.92) 0%, rgba(9,10,12,0.75) 50%, rgba(9,10,12,0.95) 100%);
}
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(231,166,0,0.12), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(231, 166, 0, 0.12);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(231,166,0,0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231,166,0,0.7); }
    70% { box-shadow: 0 0 0 14px rgba(231,166,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(231,166,0,0); }
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero h1 .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0;
    width: 100%; height: 6px;
    background: rgba(231,166,0,0.25);
    z-index: -1;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-grey);
    max-width: 640px;
    margin-bottom: 36px;
    line-height: 1.75;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}
.hero-stat h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 4px;
}
.hero-stat p {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin: 0;
}

/* Page Banner (inner pages) */
.page-banner {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,10,12,0.92), rgba(9,10,12,0.75));
}
.page-banner-content {
    position: relative;
    z-index: 2;
}
.page-banner h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 14px;
}
.page-banner h1 span { color: var(--gold); }

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-grey);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span { color: var(--gold); }

/* ---------- About Intro ---------- */
.about-intro {
    background: var(--bg-secondary);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}
.intro-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.intro-image:hover img { transform: scale(1.06); }
.intro-image::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px;
    width: 120px; height: 120px;
    border-top: 4px solid var(--gold);
    border-left: 4px solid var(--gold);
    z-index: 2;
    border-radius: 4px;
}
.intro-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.intro-text p {
    color: var(--text-grey);
    margin-bottom: 18px;
    font-size: 1.02rem;
}
.intro-features {
    list-style: none;
    margin-top: 24px;
}
.intro-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-white);
}
.intro-features li i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ---------- Why Choose Us ---------- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.feature-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-color);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 64px; height: 64px;
    display: grid;
    place-items: center;
    background: rgba(231, 166, 0, 0.12);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 1.6rem;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--gold);
    color: #000;
    transform: rotate(-8deg);
}
.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.feature-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* ---------- Service Cards ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--bg-card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-color);
}
.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.1); }
.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,10,12,0.8), transparent 50%);
}
.service-icon-badge {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #000;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(231,166,0,0.4);
}
.service-content {
    padding: 40px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-white);
    transition: var(--transition);
}
.service-card:hover .service-content h3 { color: var(--gold); }
.service-content p {
    color: var(--text-grey);
    font-size: 0.94rem;
    margin-bottom: 20px;
    flex: 1;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}
.service-link:hover { gap: 14px; }

/* ---------- Equipment Showcase ---------- */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.equipment-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}
.equipment-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.equipment-card:hover img { transform: scale(1.12); }
.equipment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,10,12,0.95) 0%, rgba(9,10,12,0.4) 60%, transparent 100%);
    z-index: 1;
    transition: var(--transition);
}
.equipment-card:hover::before {
    background: linear-gradient(to top, rgba(9,10,12,0.97) 0%, rgba(231,166,0,0.2) 100%);
}
.equipment-info {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    z-index: 2;
    transform: translateY(10px);
    transition: var(--transition);
}
.equipment-card:hover .equipment-info { transform: translateY(0); }
.equipment-info h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 6px;
}
.equipment-info p {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ---------- Stats Section ---------- */
.stats-section {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-main));
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(231,166,0,0.08), transparent 70%);
    border-radius: 50%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}
.stat-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 12px;
    background: rgba(29, 32, 38, 0.6);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.stat-icon {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 14px;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}
.stat-label {
    color: var(--text-grey);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, #1a1c20, #0f1114);
    border-radius: 20px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(231,166,0,0.15), transparent 70%);
    border-radius: 50%;
}
.cta-content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 280px;
}
.cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}
.cta-content p {
    color: var(--text-grey);
    max-width: 540px;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    background: var(--bg-card);
    padding: 26px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
}
.contact-card:hover {
    border-color: var(--border-color);
    transform: translateX(8px);
    box-shadow: var(--shadow-gold);
}
.contact-card-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    display: grid;
    place-items: center;
    background: rgba(231,166,0,0.12);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--gold);
    font-size: 1.4rem;
}
.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.contact-card p, .contact-card a {
    color: var(--text-grey);
    font-size: 0.95rem;
    word-break: break-word;
}
.contact-card a:hover { color: var(--gold); }

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-group {
    margin-bottom: 18px;
    position: relative;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-grey);
    font-weight: 500;
}
.form-group label .required { color: var(--gold); }
.form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-main);
    box-shadow: 0 0 0 3px rgba(231,166,0,0.15);
}
textarea.form-control {
    min-height: 130px;
    resize: vertical;
}
.form-error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}
.form-group.has-error .form-control {
    border-color: #ff6b6b;
}
.form-group.has-error .form-error { display: block; }

/* ---------- Mission / Vision ---------- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.mv-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--gold-bright), var(--gold));
}
.mv-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-gold);
}
.mv-icon {
    width: 72px; height: 72px;
    display: grid;
    place-items: center;
    background: rgba(231,166,0,0.12);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 22px;
}
.mv-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.mv-card p { color: var(--text-grey); }

/* ---------- Map ---------- */
.map-wrapper {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 60px;
    height: 420px;
}
.map-wrapper iframe {
    width: 100%; height: 100%;
    border: 0;
    filter: grayscale(60%) invert(92%) hue-rotate(180deg);
}

/* ---------- Footer ---------- */
.footer {
    background: #05060a;
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--gold);
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--gold);
}
.footer-about p {
    color: var(--text-grey);
    font-size: 0.93rem;
    margin-top: 20px;
    margin-bottom: 22px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    color: var(--text-grey);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-4px);
    border-color: var(--gold);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: var(--text-grey);
    font-size: 0.93rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.8rem;
}
.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-grey);
    font-size: 0.93rem;
}
.footer-contact-info li::before { display: none; }
.footer-contact-info i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-info a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 22px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-bottom strong { color: var(--gold); font-weight: 600; }

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
    position: fixed;
    bottom: 26px; right: 26px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.7rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    animation: waFloat 2.5s ease-in-out infinite;
    transition: var(--transition);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.7);
}
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3px solid #25D366;
    opacity: 0.5;
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---------- Info Note ---------- */
.info-note {
    background: rgba(231,166,0,0.08);
    border-left: 4px solid var(--gold);
    padding: 26px 30px;
    border-radius: 10px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.info-note i {
    font-size: 2rem;
    color: var(--gold);
}
.info-note-text { flex: 1; min-width: 220px; }
.info-note-text h4 { font-size: 1.15rem; margin-bottom: 6px; }
.info-note-text p { color: var(--text-grey); font-size: 0.95rem; }
.info-note-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Business Hours ---------- */
.hours-card {
    background: var(--bg-card);
    padding: 34px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
}
.hours-card h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hours-list {
    list-style: none;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-grey);
    font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li strong { color: var(--text-white); }
.hours-list li span.closed { color: #ff6b6b; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .intro-grid, .contact-grid, .mv-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .intro-image img { height: 400px; }
}

@media (max-width: 900px) {
    section { padding: 70px 0; }
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: rgba(9, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 10px;
        align-items: flex-start;
        transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-color);
    }
    .nav-menu.active { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-menu li a {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-cta { margin-left: 0; margin-top: 14px; width: 100%; }
    .nav-cta .btn { width: 100%; justify-content: center; }

    .logo-text .brand-name { font-size: 1rem; }
    .logo-text .brand-sub { font-size: 0.65rem; }
    .logo-icon { width: 44px; height: 44px; }
}

@media (max-width: 640px) {
    section { padding: 60px 0; }
    .hero { padding: 110px 0 60px; min-height: auto; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 24px; }
    .hero-stat { flex: 1; min-width: 100px; }
    .hero-stat h3 { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-banner { padding: 40px 26px; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 22px; }
    .page-banner { padding: 140px 0 70px; }
    .floating-whatsapp { width: 54px; height: 54px; font-size: 1.5rem; bottom: 18px; right: 18px; }
    .section-eyebrow { padding-left: 40px; }
    .section-eyebrow::before { width: 28px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection */
::selection { background: var(--gold); color: #000; }
