/* ================================================================
   style.css — Adversetic Arch Premium Design System
   Warm Cream base · Forest Green glassmorphism · Gold accents
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Space+Grotesk:wght@300;400;500;600&family=Inter:wght@200;300;400;500&display=swap');

/* ── Design Tokens ── */
:root {
    --bg-dark: #F4E8DB;
    --bg-section: #F7ECE0;
    --primary: #1F2C23;
    --primary-light: #2D3E32;

    --text-dark: #1F2C23;
    --text-muted: #4A564D;
    --cream: #F4E8DB;

    --gold: #C8A96E;
    --border-color: rgba(31, 44, 35, 0.10);

    --transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 16px;
    --radius-pill: 40px;
    --radius-sm: 10px;
}

/* ── Reset ── */
html { scroll-behavior: smooth; }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(31, 44, 35, 0.25) transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ── Typography ── */
h1, h2, h3, h4, .font-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: var(--text-dark);
}

.font-space { font-family: 'Space Grotesk', sans-serif; }

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

section {
    padding: clamp(72px, 10vw, 120px) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-dark);
    margin-top: 8px;
}

.section-header p {
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 12px;
}

/* ── Deploy Banner ── */
.deploy-bar {
    background: var(--primary);
    color: var(--gold);
    text-align: center;
    padding: 6px 0;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(196, 164, 105, 0.12);
}

/* ── Header (Pill Glassmorphism) ── */
header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(31, 44, 35, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(244, 232, 219, 0.15);
    border-radius: var(--radius-pill);
    padding: 12px 36px;
    z-index: 100;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
}

header.scrolled {
    top: 10px;
    background: rgba(31, 44, 35, 0.97);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 38px;
    border-radius: 4px;
}

.logo-title {
    font-weight: 600;
    letter-spacing: .24em;
    font-size: .92rem;
    color: var(--cream);
}

.logo-sub {
    font-weight: 300;
    letter-spacing: .20em;
    font-size: .65rem;
    color: var(--gold);
    margin-top: 1px;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    color: rgba(244, 232, 219, 0.65);
    text-transform: uppercase;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.nav-cta {
    padding: 10px 22px !important;
    font-size: 0.72rem !important;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

/* Primary: cream bg, dark green text — readable everywhere */
.btn-primary {
    background-color: var(--cream);
    color: var(--primary);
    border: 1px solid var(--cream);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Outline on cream/light backgrounds: dark green border & text */
.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Outline on dark backgrounds (inside glass cards, hero, footer) */
.dark-ctx .btn-outline {
    color: var(--cream);
    border-color: rgba(244, 232, 219, 0.3);
}

.dark-ctx .btn-outline:hover {
    border-color: var(--cream);
    background-color: rgba(244, 232, 219, 0.08);
    color: var(--cream);
}

/* ── Hero ── */
.hero-bg-section {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 25, 20, 0.6) 0%, rgba(18, 25, 20, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    line-height: 1.08;
    color: #FFFFFF;
    margin-bottom: 28px;
    max-width: 900px;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.hero-desc {
    font-size: clamp(0.92rem, 1.6vw, 1.12rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 680px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    z-index: 5;
}

/* Play Button */
.btn-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--cream);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-play:hover {
    background-color: var(--gold);
    transform: scale(1.1);
}

/* Hero Bottom */
.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: clamp(60px, 8vw, 100px);
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 30px;
}

.hero-thumbnails {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-thumb {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.hero-thumb.active,
.hero-thumb:hover {
    border-color: var(--cream);
    transform: scale(1.05);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bottom-text {
    max-width: 420px;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .hero-bottom { justify-content: center; text-align: center; }
    .hero-bottom-text { text-align: center; }
    .main-nav { gap: 16px; flex-wrap: wrap; justify-content: center; }
    header { padding: 10px 20px; }
}

/* ── Glass Cards (Green Glassmorphism) ── */
.glass-card {
    background: rgba(31, 44, 35, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(244, 232, 219, 0.12);
    border-radius: 20px;
    padding: clamp(24px, 4vw, 44px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
    color: rgba(244, 232, 219, 0.8);
    transition: var(--transition);
}

.glass-card h3, .glass-card h4 { color: var(--cream); }

.glass-card:hover {
    background: rgba(31, 44, 35, 0.95);
    transform: translateY(-5px);
    border-color: rgba(244, 232, 219, 0.24);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

/* ── Mosaic / Collage Project Grid ── */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
}

.mosaic-grid .mosaic-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
.mosaic-grid .mosaic-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.mosaic-grid .mosaic-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.mosaic-grid .mosaic-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.mosaic-grid .mosaic-item:nth-child(5) { grid-column: span 1; grid-row: span 2; }
.mosaic-grid .mosaic-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.mosaic-grid .mosaic-item:nth-child(7) { grid-column: span 1; grid-row: span 2; }
.mosaic-grid .mosaic-item:nth-child(8) { grid-column: span 2; grid-row: span 1; }
.mosaic-grid .mosaic-item:nth-child(9) { grid-column: span 2; grid-row: span 1; }

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.mosaic-item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 44, 35, 0.85) 0%, rgba(31, 44, 35, 0.30) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.mosaic-item:hover .mosaic-overlay { opacity: 1; }

.mosaic-overlay .mosaic-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--cream);
    margin-bottom: 8px;
    text-align: center;
}

.mosaic-overlay .mosaic-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.mosaic-overlay .mosaic-link:hover {
    transform: scale(1.12);
    background: var(--cream);
}

@media (max-width: 900px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .mosaic-grid .mosaic-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .mosaic-grid .mosaic-item:nth-child(6) { grid-column: span 2; }
}

@media (max-width: 540px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .mosaic-grid .mosaic-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

/* ── Project Grid (for projects.php full listing) ── */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.project-img-holder {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.project-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: var(--transition);
}

.project-card:hover .project-img-holder img {
    filter: brightness(1);
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 44, 35, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
}

.project-card:hover .project-overlay { opacity: 1; }

.project-link-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--cream);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform: scale(0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.project-card:hover .project-link-btn { transform: scale(1); }

.project-link-btn:hover {
    background-color: var(--gold);
    transform: scale(1.08);
}

.project-info {
    padding: 16px 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hidden-project { display: none; }

/* ── Accordion FAQs ── */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--bg-section);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(31, 44, 35, 0.18);
}

.accordion-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(31, 44, 35, 0.03);
}

/* ── Video Player ── */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ── Team Grid ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(31, 44, 35, 0.88);
    backdrop-filter: blur(12px);
    padding: 24px;
    border: 1px solid rgba(244, 232, 219, 0.1);
    transition: var(--transition);
    color: rgba(244, 232, 219, 0.8);
}

.team-card h4 { color: var(--cream); }

.team-card:hover {
    background-color: rgba(31, 44, 35, 0.95);
    border-color: rgba(244, 232, 219, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.team-img-holder {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
}

.team-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.9);
    transition: var(--transition);
}

.team-card:hover .team-img-holder img {
    filter: grayscale(0%) brightness(1);
}

/* ── Forms ── */
.form-card {
    background: rgba(31, 44, 35, 0.90);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(244, 232, 219, 0.12);
    border-radius: 24px;
    padding: clamp(28px, 5vw, 52px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    color: rgba(244, 232, 219, 0.85);
}

.form-card label {
    display: block;
    color: var(--cream);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(244, 232, 219, 0.18);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    transition: var(--transition);
    outline: none;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
    color: rgba(244, 232, 219, 0.35);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.form-card select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C8A96E' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-card select option {
    background: var(--primary);
    color: var(--cream);
}

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

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

.form-grid .full-width {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
}

/* Form submit button — dark bg with cream text */
.form-card .btn-primary {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
    width: 100%;
    padding: 16px 32px;
    font-size: 0.82rem;
}

.form-card .btn-primary:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--primary);
}

/* ── Footer ── */
footer {
    background-color: var(--primary);
    border-top: 1px solid rgba(244, 232, 219, 0.08);
    padding: 80px 0 40px;
    color: rgba(244, 232, 219, 0.8);
}

footer a {
    color: rgba(244, 232, 219, 0.60);
}

footer a:hover {
    color: var(--cream);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo-link {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(244, 232, 219, 0.55);
    line-height: 1.8;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.86rem;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 232, 219, 0.06);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.75rem;
    color: rgba(244, 232, 219, 0.40);
}

.footer-bottom a {
    color: rgba(244, 232, 219, 0.40);
}

/* ── Scroll Reveal Animations ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal          { transform: translateY(40px); }
.reveal-left     { transform: translateX(-40px); }
.reveal-right    { transform: translateX(40px); }
.reveal-scale    { transform: scale(0.92); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
    opacity: 1;
    transform: none;
}

/* Staggered children */
.stagger {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.is-visible {
    opacity: 1;
    transform: none;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--cream);
    border-color: var(--primary);
}

/* Admin adjustments */
.admin-table { border-radius: 12px; }

/* ── Custom Spacing & Responsive Grid Alignment ── */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .grid-6 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── Service Icons & Cards ── */
.srv-icon-wrapper {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(244, 232, 219, 0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    color: var(--gold);
    transition: var(--transition);
}

.srv-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    stroke-width: 1.5;
    transition: var(--transition);
}

.glass-card:hover .srv-icon-wrapper {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
    transform: scale(1.08);
}

.glass-card:hover .srv-icon {
    color: var(--primary);
    transform: scale(1.05) rotate(4deg);
}

/* ── FAQ Dropdown Toggle ── */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 28px;
    background-color: rgba(31, 44, 35, 0.02);
    color: var(--text-muted);
}

.accordion-body p {
    padding-bottom: 22px;
    font-size: 0.90rem;
    font-weight: 300;
    line-height: 1.7;
}

.accordion-item.active .accordion-body {
    max-height: 240px;
}

.accordion-icon {
    font-size: 1.1rem;
    color: var(--gold);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

/* ── Footer Branding & Social Icons ── */
.footer-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
    stroke-width: 2;
    flex-shrink: 0;
}

.footer-links li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-social-icon {
    width: 16px;
    height: 16px;
    color: rgba(244, 232, 219, 0.6);
    transition: var(--transition);
    stroke-width: 2;
    flex-shrink: 0;
}

.footer-links li a:hover {
    color: var(--gold);
}

.footer-links li a:hover .footer-social-icon {
    color: var(--gold);
    transform: scale(1.15) translateY(-1px);
}

/* ── Go To Top Button ── */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(31, 44, 35, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(244, 232, 219, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    outline: none;
}

.go-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top:hover {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.go-to-top svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

