/* ============================================================
   Bray Construct Huși – Stylesheet
   ============================================================ */

:root {
    --red: #e30613;
    --red-dark: #b8000d;
    --red-light: #ff1a28;
    --black: #111111;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);
    --radius: 10px;
    --font-head: 'Montserrat', Arial, sans-serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 800; line-height: 1.2; }

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

/* ── Preloader ─────────────────────────────────────────── */
#preloader {
    position: fixed; inset: 0; background: #fff;
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.loader-inner svg { animation: spin 1.2s linear infinite; }
.loader-inner span { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--red); letter-spacing: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Top Bar ───────────────────────────────────────────── */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    padding: 7px 0;
    position: relative;
    z-index: 200;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 5px; }
.topbar-left a:hover { color: var(--red); }
.topbar-right { display: flex; gap: 10px; align-items: center; }
.topbar-right a { color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 5px; width: 28px; height: 28px; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); transition: var(--transition); }
.topbar-right a:hover { background: var(--red); color: #fff; }
.wa-topbar { width: auto !important; border-radius: 20px !important; padding: 0 10px !important; background: #25D366 !important; }
.wa-topbar:hover { background: #128C7E !important; }

/* ── Header ────────────────────────────────────────────── */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    transition: top 0.35s ease;
}
#header.with-topbar { top: 37px; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}
.logo svg { height: 60px; width: auto; }
.header-spacer { height: 97px; }

/* ── Navbar ─────────────────────────────────────────────  */
#navbar ul { display: flex; align-items: center; gap: 4px; }
#navbar ul li a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
}
#navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; right: 50%;
    height: 2px; background: var(--red);
    transition: 0.3s ease;
    border-radius: 2px;
}
#navbar ul li a:hover::after,
#navbar ul li a.active::after { left: 14px; right: 14px; }
#navbar ul li a:hover, #navbar ul li a.active { color: var(--red); }

.btn-nav {
    background: var(--red) !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 9px 18px !important;
    font-weight: 700 !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--red-dark) !important; color: #fff !important; }

.hamburger {
    display: none;
    background: none; border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px; padding: 6px;
}
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-close { display: none; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
    padding: 13px 28px; border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer; transition: var(--transition);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(227,6,19,0.35); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #333; }

/* ── Section Styles ──────────────────────────────────── */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
    display: inline-block; font-size: 0.78rem; font-family: var(--font-head);
    font-weight: 700; color: var(--red); letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 12px; padding: 4px 16px; background: rgba(227,6,19,0.08); border-radius: 20px;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--dark); margin-bottom: 16px; }
.section-header p { color: var(--gray); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.red-line {
    width: 60px; height: 4px; background: var(--red); margin: 16px auto 0; border-radius: 4px;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    position: relative; min-height: 92vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 0;
    background: #0d0d0d;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('../images/gallery/lucrare-03.jpg') center/cover no-repeat;
    opacity: 0.55;
    transform: scale(1.05);
    animation: heroZoom 15s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.72) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: #fff;
    max-width: 820px; padding: 0 20px;
}
.hero-badge {
    display: inline-block; background: var(--red); color: #fff;
    font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 6px 20px; border-radius: 30px; margin-bottom: 24px;
    animation: fadeInDown 0.8s ease both;
}
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 20px; letter-spacing: -1px;
    animation: fadeInUp 0.9s ease 0.2s both;
}
.hero h1 span { color: var(--red); }
.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px; line-height: 1.7;
    animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.6s both;
}
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5); font-size: 1.5rem;
    animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }
.hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    padding: 20px 0;
}
.hero-stats .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.hero-stat { text-align: center; color: #fff; }
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--red); line-height: 1; }
.hero-stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 4px; letter-spacing: 1px; }

/* ── Services Grid ───────────────────────────────────── */
.services-section { background: var(--light-gray); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.service-card {
    background: #fff; border-radius: var(--radius);
    padding: 36px 28px; text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative; overflow: hidden;
    border-top: 4px solid transparent;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(227,6,19,0.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.9rem; color: var(--red);
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); color: #fff; transform: scale(1.1); }
.service-card h3 { font-size: 1.12rem; margin-bottom: 12px; color: var(--dark); }
.service-card p { color: var(--gray); font-size: 0.93rem; }

/* ── Why Us ──────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.why-img { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.why-badge {
    position: absolute; bottom: 24px; right: 24px;
    background: var(--red); color: #fff;
    padding: 16px 20px; border-radius: var(--radius);
    text-align: center; box-shadow: 0 8px 24px rgba(227,6,19,0.4);
}
.why-badge .big { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.why-badge .small { font-size: 0.78rem; opacity: 0.9; }
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 10px; background: rgba(227,6,19,0.08); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.2rem; }
.why-item-text h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item-text p { font-size: 0.88rem; color: var(--gray); }

/* ── Gallery ──────────────────────────────────────────── */
.gallery-filter {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px;
}
.gallery-filter button {
    font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
    padding: 8px 20px; border-radius: 30px; border: 2px solid var(--border);
    background: #fff; cursor: pointer; transition: var(--transition); letter-spacing: 0.5px;
    text-transform: uppercase;
}
.gallery-filter button.active, .gallery-filter button:hover {
    background: var(--red); border-color: var(--red); color: #fff;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius); aspect-ratio: 4/3;
    cursor: pointer; box-shadow: var(--shadow);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 2rem; }
.gallery-overlay span { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; margin-top: 8px; }

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #3a0007 100%);
    padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/gallery/lucrare-01.jpg') center/cover no-repeat;
    opacity: 0.25;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
    display: inline-flex; align-items: center; gap: 10px;
    color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
    background: rgba(255,255,255,0.1); padding: 12px 24px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2); transition: var(--transition);
}
.cta-phone:hover { background: rgba(255,255,255,0.18); }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials-section { background: var(--light-gray); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.testimonial-card {
    background: #fff; padding: 32px; border-radius: var(--radius);
    box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 16px; left: 24px;
    font-family: Georgia, serif; font-size: 5rem; color: rgba(227,6,19,0.12); line-height: 1;
}
.stars { color: #f5a623; margin-bottom: 14px; font-size: 1rem; }
.testimonial-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--red); display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
}
.author-name { font-weight: 700; font-size: 0.92rem; }
.author-city { font-size: 0.78rem; color: var(--gray); }

/* ── Process ──────────────────────────────────────────── */
.process-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0; position: relative;
}
.process-steps::before {
    content: '';
    position: absolute; top: 44px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, var(--red), #ff6b6b);
    z-index: 0;
}
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
    width: 88px; height: 88px; border-radius: 50%;
    background: var(--red); color: #fff;
    font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(227,6,19,0.3);
    border: 4px solid #fff;
}
.step-item h4 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.85rem; color: var(--gray); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-q {
    padding: 18px 24px; font-family: var(--font-head); font-weight: 700; font-size: 0.98rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    background: #fff; transition: var(--transition); user-select: none;
    color: var(--dark);
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--red); background: rgba(227,6,19,0.03); }
.faq-q i { transition: transform 0.3s ease; color: var(--red); flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
    background: #fafafa; padding: 0 24px;
}
.faq-a p { color: var(--gray); font-size: 0.95rem; padding: 16px 0; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── Contact ──────────────────────────────────────────── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
    display: flex; gap: 16px; align-items: flex-start;
    background: #fff; padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.contact-info-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(227,6,19,0.08); display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.88rem; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-info-text a, .contact-info-text p { font-weight: 600; color: var(--dark); font-size: 0.98rem; }
.contact-info-text a:hover { color: var(--red); }

.contact-form {
    background: #fff; padding: 40px; border-radius: 16px; box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 6px; font-size: 1.4rem; }
.contact-form .subtitle { color: var(--gray); margin-bottom: 28px; font-size: 0.92rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 2px solid var(--border);
    border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem;
    transition: var(--transition); background: #fafafa; color: var(--dark);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(227,6,19,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23999'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; }
.form-success { background: #d4edda; color: #155724; padding: 14px 20px; border-radius: 8px; margin-bottom: 20px; display: none; border-left: 4px solid #28a745; }
.form-error { background: #f8d7da; color: #721c24; padding: 14px 20px; border-radius: 8px; margin-bottom: 20px; display: none; border-left: 4px solid #e30613; }

/* ── Map ──────────────────────────────────────────────── */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 400px; border: none; }

/* ── Page Hero ────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--dark), #2a0007);
    padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.page-hero .breadcrumb a { color: var(--red); }
.page-hero .breadcrumb span { margin: 0 8px; }

/* ── Despre Noi ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -24px; left: -24px;
    width: 200px; height: 160px; border-radius: 12px;
    overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.about-content p { color: var(--gray); margin-bottom: 18px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.value-item { background: rgba(227,6,19,0.05); padding: 16px; border-radius: 8px; border-left: 3px solid var(--red); }
.value-item h4 { font-size: 0.92rem; color: var(--dark); margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; color: var(--gray); margin: 0; }
.team-section { background: var(--light-gray); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 100%; height: 200px; object-fit: cover; }
.team-info { padding: 20px; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-info p { font-size: 0.85rem; color: var(--red); font-weight: 600; }

/* ── Footer ───────────────────────────────────────────── */
#footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-top: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-col ul li a i { color: var(--red); font-size: 0.7rem; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 0.95rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.footer-contact li i { color: var(--red); margin-top: 3px; min-width: 14px; }
.footer-contact li a { color: rgba(255,255,255,0.7); }
.footer-contact li a:hover { color: var(--red); }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--red); }

/* ── Float Buttons ────────────────────────────────────── */
.wa-float {
    position: fixed; bottom: 90px; right: 24px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    animation: pulseWa 2.5s infinite;
    transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulseWa {
    0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.5)}
    50%{box-shadow:0 6px 40px rgba(37,211,102,0.8)}
}
.wa-tooltip {
    position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
    background: var(--dark); color: #fff; padding: 6px 12px; border-radius: 6px;
    font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: 0.3s ease;
}
.wa-tooltip::after { content:''; position:absolute; left:100%; top:50%; transform:translateY(-50%); border:6px solid transparent; border-left-color:var(--dark); }
.wa-float:hover .wa-tooltip { opacity: 1; }

.phone-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--red); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; box-shadow: 0 6px 24px rgba(227,6,19,0.45);
    transition: transform 0.3s ease;
    animation: pulsePhone 3s infinite;
}
.phone-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulsePhone {
    0%,100%{box-shadow:0 6px 24px rgba(227,6,19,0.45)}
    50%{box-shadow:0 6px 40px rgba(227,6,19,0.75)}
}

#backToTop {
    position: fixed; bottom: 160px; right: 24px; z-index: 998;
    width: 44px; height: 44px; border-radius: 8px;
    background: rgba(0,0,0,0.5); color: #fff; border: none;
    display: none; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer; transition: var(--transition);
    backdrop-filter: blur(6px);
}
#backToTop:hover { background: var(--red); }
#backToTop.visible { display: flex; }

/* ── Lightbox ─────────────────────────────────────────── */
.lightbox-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.lb-img-wrap { max-width: 90vw; max-height: 85vh; }
.lb-img-wrap img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 80px rgba(0,0,0,0.6); }
.lb-close, .lb-prev, .lb-next {
    position: absolute; background: rgba(255,255,255,0.1); border: none; color: #fff;
    font-size: 1.4rem; width: 50px; height: 50px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); backdrop-filter: blur(4px);
}
.lb-close { top: 20px; right: 20px; font-size: 1.6rem; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--red); }

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Admin Styles ─────────────────────────────────────── */
.admin-body { background: #f0f2f5; font-family: var(--font-body); }
.admin-login {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--dark), #3a0007);
}
.login-box {
    background: #fff; padding: 48px 40px; border-radius: 16px;
    box-shadow: var(--shadow-lg); width: 100%; max-width: 420px; text-align: center;
}
.login-box .logo-wrap { margin-bottom: 28px; }
.login-box h2 { font-size: 1.5rem; margin-bottom: 6px; }
.login-box .sub { color: var(--gray); margin-bottom: 28px; font-size: 0.9rem; }
.login-box .alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; font-size: 0.9rem; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px; background: var(--dark); color: rgba(255,255,255,0.85);
    padding: 0; flex-shrink: 0; display: flex; flex-direction: column;
}
.sidebar-brand {
    padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; gap: 12px;
}
.sidebar-brand span { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; }
.sidebar-brand .brand-sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 400; display: block; }
.sidebar-nav { padding: 16px 0; flex: 1; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 24px; color: rgba(255,255,255,0.7); font-size: 0.9rem;
    font-weight: 600; transition: var(--transition); border-left: 3px solid transparent;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(255,255,255,0.06); color: #fff; border-left-color: var(--red);
}
.sidebar-nav a i { width: 20px; text-align: center; color: var(--red); }
.sidebar-nav .nav-section { padding: 12px 24px 6px; font-size: 0.7rem; letter-spacing: 2px; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.sidebar-footer { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.sidebar-footer a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition); }
.sidebar-footer a:hover { color: var(--red); }

.admin-main { flex: 1; padding: 0; display: flex; flex-direction: column; }
.admin-topbar {
    background: #fff; padding: 16px 32px; display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); sticky: top; position: sticky; top: 0; z-index: 100;
}
.admin-topbar h1 { font-size: 1.3rem; font-weight: 700; }
.admin-content { padding: 32px; flex: 1; }

.admin-card {
    background: #fff; border-radius: 12px; padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 24px;
}
.admin-card h3 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #f0f2f5; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-bottom: 28px; }
.stat-card {
    background: #fff; border-radius: 12px; padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 4px solid var(--red); text-align: center;
}
.stat-card .stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--red); }
.stat-card .stat-lbl { font-size: 0.82rem; color: var(--gray); margin-top: 4px; }

.admin-form .form-group { margin-bottom: 20px; }
.admin-form label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: #444; }
.admin-form input[type=text], .admin-form input[type=email], .admin-form input[type=url],
.admin-form textarea, .admin-form select {
    width: 100%; padding: 11px 14px; border: 2px solid #e0e0e0; border-radius: 8px;
    font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition);
    outline: none;
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus {
    border-color: var(--red); box-shadow: 0 0 0 4px rgba(227,6,19,0.08);
}
.admin-form textarea { min-height: 100px; resize: vertical; }
.admin-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-save { background: var(--red); color: #fff; padding: 11px 28px; border: none; border-radius: 8px; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: var(--transition); }
.btn-save:hover { background: var(--red-dark); }
.btn-secondary { background: #f0f2f5; color: #444; padding: 11px 22px; border: none; border-radius: 8px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: var(--transition); }
.btn-secondary:hover { background: #e0e0e0; }

.gallery-admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.gallery-admin-item { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; border: 2px solid #e0e0e0; }
.gallery-admin-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-admin-item .del-btn {
    position: absolute; top: 6px; right: 6px;
    background: rgba(227,6,19,0.9); color: #fff; border: none;
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
    font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.gallery-admin-item .del-btn:hover { background: var(--red); transform: scale(1.1); }
.gallery-admin-item .move-btn {
    position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.6); color: #fff; border: none;
    padding: 3px 10px; border-radius: 4px; cursor: grab; font-size: 0.75rem;
}
.upload-area {
    border: 2px dashed #d0d0d0; border-radius: 12px; padding: 40px;
    text-align: center; cursor: pointer; transition: var(--transition);
    background: #fafafa;
}
.upload-area:hover, .upload-area.dragging { border-color: var(--red); background: rgba(227,6,19,0.03); }
.upload-area i { font-size: 2.5rem; color: #ccc; margin-bottom: 12px; }
.upload-area p { color: var(--gray); font-size: 0.9rem; }
.upload-area strong { color: var(--red); }

/* ── Services Detail Cards ────────────────────────────── */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px;
}
.service-detail-card {
    background: #fff;
    border-radius: 14px;
    padding: 38px 32px 32px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--red);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.sdc-icon {
    width: 76px; height: 76px;
    border-radius: 18px;
    background: rgba(227,6,19,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 2.1rem;
    margin-bottom: 22px;
    transition: var(--transition);
}
.service-detail-card:hover .sdc-icon { background: var(--red); color: #fff; }
.service-detail-card h3 { font-size: 1.22rem; margin-bottom: 14px; color: var(--dark); }
.service-detail-card > p { color: var(--gray); margin-bottom: 20px; font-size: 0.94rem; line-height: 1.75; flex: 1; }
.sdc-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.sdc-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; color: var(--dark);
    padding: 6px 10px; border-radius: 6px;
    background: rgba(227,6,19,0.04);
}
.sdc-features li i { color: var(--red); flex-shrink: 0; font-size: 0.78rem; }
.sdc-cta { margin-top: auto; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid, .about-grid { grid-template-columns: 1fr; }
    .why-img img, .about-img-main img { height: 350px; }
    .about-img-secondary { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .header-spacer { height: 72px; }
    #header .header-inner { padding: 12px 20px; }
    .logo svg { height: 52px; }
    .hamburger { display: flex; }
    #navbar {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
        background: var(--dark); flex-direction: column;
        padding: 24px 0; z-index: 1000;
        transition: right 0.35s cubic-bezier(.4,0,.2,1);
        overflow-y: auto;
    }
    #navbar.open { right: 0; }
    #navbar ul { flex-direction: column; gap: 0; padding: 20px 0; }
    #navbar ul li a { color: rgba(255,255,255,0.85); padding: 14px 28px; border-radius: 0; font-size: 0.95rem; }
    #navbar ul li a:hover, #navbar ul li a.active { color: var(--red); background: rgba(255,255,255,0.04); }
    #navbar ul li a::after { display: none; }
    .btn-nav { margin: 8px 28px; border-radius: 8px !important; text-align: center; justify-content: center; }
    .nav-close { display: flex; align-items: center; justify-content: flex-end; padding: 0 20px 12px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.4rem; cursor: pointer; width: 100%; }
    .hero { min-height: 95vh; }
    .hero h1 { font-size: 2rem; }
    .hero-stats .container { gap: 12px; }
    .hero-stat .num { font-size: 1.5rem; }
    section { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .admin-content { padding: 20px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .cta-btns { flex-direction: column; align-items: center; }
    .contact-form { padding: 24px 20px; }
}
