/* ============================================================
   FLOYD MEDIA — Main Stylesheet
   Theme: Brown & Black — Modern Elegant
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Backgrounds */
    --bg-primary:       #080808;
    --bg-secondary:     #0e0b08;
    --bg-card:          #140d06;
    --bg-card-hover:    #1e1208;
    --bg-nav:           rgba(8, 6, 4, 0.96);

    /* Browns */
    --brown-deep:       #2c1507;
    --brown-mid:        #4a2210;
    --brown-rich:       #7a3d1e;
    --brown-light:      #a0582a;

    /* Gold Accents */
    --gold:             #c9a84c;
    --gold-light:       #e0c068;
    --gold-dark:        #9a7e35;
    --gold-subtle:      rgba(201, 168, 76, 0.08);
    --gold-border:      rgba(201, 168, 76, 0.18);
    --gold-border-hover:rgba(201, 168, 76, 0.50);

    /* Text */
    --text-primary:     #f0ebe3;
    --text-secondary:   #b8a898;
    --text-muted:       #70584a;

    /* Effects */
    --shadow-card:      0 4px 30px rgba(0, 0, 0, 0.50);
    --shadow-hover:     0 8px 50px rgba(201, 168, 76, 0.12);
    --shadow-nav:       0 2px 30px rgba(0, 0, 0, 0.60);

    /* Transitions */
    --transition:       0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast:  0.2s ease;

    /* Borders */
    --radius-sm:        4px;
    --radius-md:        10px;
    --radius-lg:        18px;

    /* Layout */
    --max-width:        1200px;
    --section-pad:      100px;
}

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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtle background texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(74, 34, 16, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(44, 21, 7, 0.10) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }

.lead { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.9; }

/* === LAYOUT UTILITIES === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section { position: relative; z-index: 1; }

.section-pad { padding: var(--section-pad) 0; }

/* Section heading block */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-title { margin-bottom: 16px; }
.section-title span { color: var(--gold); }

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 18px 0 40px;
    border-radius: 2px;
}

.section-divider.center { margin: 18px auto 40px; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a0f07;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.40);
    color: #1a0f07;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold-border-hover);
}
.btn-outline:hover {
    background: var(--gold-subtle);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    margin-top: 12px;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff; }

.btn-lg { padding: 17px 42px; font-size: 0.95rem; }
.btn-sm { padding: 9px 22px; font-size: 0.82rem; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--bg-nav);
    padding: 14px 0;
    box-shadow: var(--shadow-nav);
    backdrop-filter: blur(12px);
}

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

.nav-logo img {
    height: 52px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .nav-logo img { height: 44px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown .nav-link .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-link .fa-chevron-down { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    min-width: 230px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.87rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}
.dropdown-menu li a i {
    width: 18px;
    color: var(--gold);
    font-size: 0.85rem;
}
.dropdown-menu li a:hover {
    color: var(--text-primary);
    background: var(--gold-subtle);
    padding-left: 26px;
}

.dropdown-divider {
    border-top: 1px solid var(--gold-border);
    margin: 6px 0;
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 10px 22px; font-size: 0.82rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: var(--radius-sm);
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(122, 61, 30, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(44, 21, 7, 0.30) 0%, transparent 50%),
        var(--bg-primary);
}

/* Decorative lines */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(44, 21, 7, 0.15) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    animation: bounceY 2s ease-in-out infinite;
}
.hero-scroll i { font-size: 1rem; color: var(--gold); }
.hero-scroll:hover { color: var(--gold); }

/* Hero geometric decoration */
.hero-deco {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.2s ease 1s forwards;
}
.hero-deco::before, .hero-deco::after {
    content: '';
    position: absolute;
    border: 1px solid var(--gold-border);
    border-radius: 50%;
}
.hero-deco::before { inset: 0; }
.hero-deco::after  { inset: 40px; border-color: rgba(201,168,76,0.08); }

.hero-deco-inner {
    position: absolute;
    inset: 80px;
    border: 1px solid rgba(201,168,76,0.06);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,34,16,0.20) 0%, transparent 70%);
}

/* === STATS BAR === */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--gold-border);
    transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gold-subtle); }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* === CARDS === */
.card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold-border-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

/* Service Card */
.service-card .card-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--brown-deep), var(--brown-mid));
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
    color: var(--gold);
    transition: var(--transition);
}
.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #1a0f07;
    border-color: transparent;
}

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

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-top: 20px;
    transition: var(--transition-fast);
}
.service-card .card-link i { font-size: 0.75rem; transition: transform 0.2s ease; }
.service-card:hover .card-link i { transform: translateX(4px); }

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

/* === ABOUT SECTION === */
.about-section { background: var(--bg-secondary); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brown-deep) 0%, var(--bg-card) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}
.about-img-placeholder i { font-size: 3rem; color: var(--gold-border-hover); }

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1a0f07;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(201,168,76,0.30);
}
.about-badge .badge-num  { font-size: 2rem; line-height: 1; }
.about-badge .badge-text { font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase; }

.about-content .section-label { margin-top: 0; }

.about-list {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.about-list li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/* === PORTFOLIO GRID === */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,4,2,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-overlay h4 { color: var(--text-primary); margin-bottom: 4px; }
.portfolio-overlay p  { color: var(--text-muted); font-size: 0.82rem; }

/* === CTA SECTION === */
.cta-section {
    background:
        linear-gradient(135deg, rgba(74,34,16,0.40) 0%, transparent 60%),
        var(--bg-card);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    text-align: center;
    padding: 100px 0;
}

.cta-title { margin-bottom: 20px; }
.cta-title span { color: var(--gold); }
.cta-section p { max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

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

.contact-info h3 { margin-bottom: 28px; }

.contact-items { display: flex; flex-direction: column; gap: 22px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item-icon {
    width: 46px;
    height: 46px;
    background: var(--brown-deep);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item-text span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.contact-item-text a, .contact-item-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s;
}
.contact-item-text a:hover { color: var(--gold); }

/* === FORMS === */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    outline: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
    border-color: var(--gold);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.10);
}
.form-control.is-invalid { border-color: #e05c5c; }

textarea.form-control { resize: vertical; min-height: 130px; }

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

/* Checkboxes (quote form) */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.checkbox-item:has(input:checked),
.checkbox-item:hover {
    border-color: var(--gold);
    background: var(--gold-subtle);
}
.checkbox-item input[type="checkbox"] {
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
}
.checkbox-item label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    cursor: pointer;
}

/* Alert messages */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: rgba(72, 187, 120, 0.12); border: 1px solid rgba(72,187,120,0.3); color: #68d391; }
.alert-error   { background: rgba(224, 92, 92, 0.12);  border: 1px solid rgba(224,92,92,0.3);  color: #fc8181; }

/* === PAGE HERO (inner pages) === */
.page-hero {
    padding: 160px 0 80px;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(74,34,16,0.20) 0%, transparent 55%),
        var(--bg-primary);
    border-bottom: 1px solid var(--gold-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.35;
}
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb i { font-size: 0.65rem; }

/* === SERVICE DETAIL PAGE === */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.feature-item:hover { border-color: var(--gold-border-hover); background: var(--bg-card-hover); }
.feature-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-sidebar .card { position: sticky; top: 100px; }
.service-sidebar h4 { margin-bottom: 18px; }
.service-sidebar ul { display: flex; flex-direction: column; gap: 10px; }
.service-sidebar ul li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; color: var(--text-secondary);
}
.service-sidebar ul li i { color: var(--gold); font-size: 0.8rem; }

/* === FOOTER === */
.footer {
    background: #050303;
    border-top: 1px solid var(--gold-border);
    padding-top: 70px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: #1a0f07;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a:hover { color: var(--text-secondary); padding-left: 6px; }

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.footer-contact p i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}
.footer-contact p a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact p a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(44,21,7,0.8);
    padding: 24px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* === PORTFOLIO PAGE === */
.portfolio-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 9px 22px;
    border: 1px solid var(--gold-border);
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #1a0f07;
    border-color: var(--gold);
}

/* === ADMIN (basic) — full styles in admin.css === */
.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(74,34,16,0.15) 0%, transparent 60%),
        var(--bg-primary);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes bounceY {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    :root { --section-pad: 70px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-visual { max-width: 400px; margin: 0 auto; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar .card { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--gold-border); border-right: 1px solid var(--gold-border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--gold-border); border-right: none; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px; }

    .hamburger { display: flex; }
    .nav-cta   { display: none; }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: #0a0604;
        border-left: 1px solid var(--gold-border);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 24px 40px;
        gap: 4px;
        z-index: 999;
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }

    .nav-link { padding: 12px 8px; width: 100%; font-size: 0.95rem; }
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--gold-border);
        border-radius: 0;
        padding: 0;
        display: none;
        background: transparent;
        margin-left: 12px;
        margin-top: 4px;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu li a { padding: 9px 12px; font-size: 0.85rem; }

    .hero-deco { display: none; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .hero-actions   { flex-direction: column; }
    .cta-actions    { flex-direction: column; align-items: center; }
}
