/* =========================================
   IBAS DETAILING — Main Stylesheet
   ========================================= */

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
    --gold:          #c8a951;
    --gold-light:    #e8c971;
    --gold-dim:      rgba(200, 169, 81, 0.15);
    --gold-border:   rgba(200, 169, 81, 0.3);

    --bg-base:       #0c0c0c;
    --bg-section:    #111111;
    --bg-alt:        #0f0f0f;
    --bg-card:       #161616;
    --bg-card-hover: #1c1c1c;

    --text-white:    #ffffff;
    --text-light:    #d4d4d4;
    --text-gray:     #9a9a9a;

    --border:        rgba(255, 255, 255, 0.07);
    --border-gold:   rgba(200, 169, 81, 0.25);

    --radius:        12px;
    --radius-sm:     8px;
    --radius-lg:     20px;

    --transition:    0.3s ease;
    --transition-slow: 0.6s ease;

    --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-gold:   0 8px 40px rgba(200, 169, 81, 0.2);

    --font-head:     'Bebas Neue', sans-serif;
    --font-body:     'Inter', sans-serif;

    --max-width:     1280px;
    --section-pad:   110px;
}


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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

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

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}


/* =========================================
   CONTAINER & LAYOUT
   ========================================= */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

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


/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    padding-left: 14px;
    border-left: 3px solid var(--gold);
    margin-bottom: 18px;
    line-height: 1.4;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    color: var(--text-white);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 580px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 64px;
}

.section-header .section-desc {
    margin-top: 0;
}

.accent {
    color: var(--gold);
}


/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: 0 4px 20px rgba(200, 169, 81, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 28px rgba(200, 169, 81, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}


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

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
    transition: opacity var(--transition);
}

.nav-logo:hover {
    opacity: 0.85;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo .nav-logo-img {
    height: 60px;
}

.logo-ibas {
    font-family: var(--font-head);
    font-size: 1.65rem;
    color: var(--text-white);
    letter-spacing: 0.12em;
}

.logo-detail {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    color: var(--gold);
    text-transform: uppercase;
}

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

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    background: var(--gold);
    padding: 10px 22px;
    border-radius: 4px;
    margin-left: 8px;
    transition: background var(--transition), transform var(--transition),
                box-shadow var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 169, 81, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.nav-overlay.active {
    display: block;
}


/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #0c0c0c;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5, 5, 5, 0.97) 0%,
        rgba(10, 10, 10, 0.82) 45%,
        rgba(12, 12, 12, 0.45) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 120px 32px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    background: rgba(200, 169, 81, 0.06);

    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(4.5rem, 11vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--text-white);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
}

.hero-line-1 {
    animation: fadeInUp 0.8s ease 0.55s both;
}

.hero-line-2 {
    color: var(--gold);
    animation: fadeInUp 0.8s ease 0.75s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.95s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1.15s both;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: fadeInUp 0.8s ease 1.5s both;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.scroll-line {
    width: 1.5px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}


/* =========================================
   STATS
   ========================================= */
.stats {
    padding: 0;
    background: linear-gradient(to right, #111, #0f0f0f, #111);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    border-right: 1px solid var(--border);
    text-align: center;
    transition: background var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(200, 169, 81, 0.04);
}

.stat-number {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--gold);
    line-height: 1;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-top: 6px;
}


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

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

.about-image-wrap {
    position: relative;
}

.img-placeholder {
    width: 100%;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    gap: 12px;
}

.about-ph {
    aspect-ratio: 4 / 5;
    max-height: 560px;
}

.about-ph i {
    font-size: 3rem;
    color: var(--border-gold);
}

.about-ph span {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: #000;
    padding: 22px 26px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 32px rgba(200, 169, 81, 0.35);
}

.about-experience-badge strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2.4rem;
    line-height: 1;
}

.about-experience-badge span {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-content {
    padding-bottom: 8px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0 40px;
}

.feature-row {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    flex: 1;
}

.feature-item i {
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}


/* =========================================
   SERVICES
   ========================================= */
.services {
    background: var(--bg-section);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition), background var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.featured-card {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(200, 169, 81, 0.05) 100%);
}

.featured-card::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
    background: var(--gold);
    padding: 4px 10px;
    border-radius: 100px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background var(--transition), transform var(--transition);
}

.service-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.service-card:hover .service-icon {
    background: rgba(200, 169, 81, 0.22);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.service-list li i {
    font-size: 0.6rem;
    color: var(--gold);
    flex-shrink: 0;
}

.service-price {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-gray);
    letter-spacing: 0.02em;
}

.service-price strong {
    font-size: 1.6rem;
    font-family: var(--font-head);
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-left: 4px;
}


/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us {
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.why-card {
    background: var(--bg-card);
    padding: 44px 32px;
    text-align: center;
    transition: background var(--transition);
    position: relative;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.why-card:hover {
    background: var(--bg-card-hover);
}

.why-card:hover::after {
    width: 60%;
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: transform var(--transition), background var(--transition);
}

.why-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(200, 169, 81, 0.22);
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.75;
}


/* =========================================
   GALLERY
   ========================================= */
.gallery {
    background: var(--bg-section);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px 300px;
    gap: 14px;
    grid-template-areas:
        "g-large g-large g-2"
        "g-large g-large g-3"
        "g-4     g-5     g-6";
}

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

.g-large { grid-area: g-large; }
.g-2     { grid-area: g-2; }
.g-3     { grid-area: g-3; }
.g-4     { grid-area: g-4; }
.g-5     { grid-area: g-5; }
.g-6     { grid-area: g-6; }

.gallery-ph {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    background: var(--bg-card);
}

.gallery-ph i {
    font-size: 2rem;
    color: rgba(200, 169, 81, 0.2);
}

.gallery-ph span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-overlay span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

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

.gallery-item:hover img {
    transform: scale(1.04);
}


/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
    background: var(--bg-base);
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding-bottom: 8px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1.5px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.reviewer-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.78rem;
    color: var(--text-gray);
}

/* Slider controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 44px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background var(--transition), border-color var(--transition),
                color var(--transition), transform var(--transition);
}

.slider-btn:hover {
    background: var(--gold-dim);
    border-color: var(--border-gold);
    color: var(--gold);
    transform: scale(1.06);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), width var(--transition);
    padding: 0;
}

.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}


/* =========================================
   FAQ
   ========================================= */
.faq {
    background: var(--bg-section);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 100px;
}

.faq-header .section-title {
    margin-bottom: 20px;
}

.faq-intro {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 8px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.faq-item.open {
    border-color: var(--border-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    text-align: left;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--transition);
    background: none;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}

.faq-icon i {
    font-size: 0.65rem;
    color: var(--gold);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--gold);
}

.faq-item.open .faq-icon i {
    color: #000;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.85;
}


/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    position: relative;
    padding: var(--section-pad) 0;
    background-color: #0a0a0a;
    /*
        BACKGROUND IMAGE — Uncomment to add a bg image:
        background-image: url('../images/cta-bg.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    */
    background-image:
        radial-gradient(ellipse at 50% 50%, rgba(200, 169, 81, 0.06) 0%, transparent 60%),
        linear-gradient(rgba(200, 169, 81, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 169, 81, 0.03) 1px, transparent 1px);
    background-size: auto, 80px 80px, 80px 80px;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-content .section-label {
    border-left: none;
    padding-left: 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    color: var(--text-white);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 48px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 24px;
    min-width: 180px;
    transition: background var(--transition), border-color var(--transition),
                transform var(--transition), box-shadow var(--transition);
}

.cta-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.cta-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-btn-icon i {
    font-size: 1.1rem;
    color: var(--gold);
}

.cta-btn-text {
    text-align: left;
}

.cta-btn-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 2px;
}

.cta-btn-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-white);
}


/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #090909;
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-brand > p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: background var(--transition), border-color var(--transition),
                color var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: var(--gold-dim);
    border-color: var(--border-gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 22px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-gray);
    transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact-item a {
    font-size: 0.88rem;
    color: var(--text-gray);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
}


/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--transition), visibility var(--transition),
                transform var(--transition), background var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(200, 169, 81, 0.35);
}

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

.back-to-top:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 24px rgba(200, 169, 81, 0.5);
    transform: translateY(-3px);
}


/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children in grids */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.25s; }

.why-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.gallery-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.faq-list .reveal:nth-child(2) { transition-delay: 0.08s; }
.faq-list .reveal:nth-child(3) { transition-delay: 0.16s; }
.faq-list .reveal:nth-child(4) { transition-delay: 0.24s; }
.faq-list .reveal:nth-child(5) { transition-delay: 0.32s; }
.faq-list .reveal:nth-child(6) { transition-delay: 0.4s; }


/* =========================================
   KEYFRAME ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50%       { transform: scaleY(0.6); opacity: 0.4; }
}


/* =========================================
   RESPONSIVE — LARGE DESKTOP
   ========================================= */
@media (max-width: 1200px) {
    :root {
        --section-pad: 90px;
    }

    .about-grid {
        gap: 56px;
    }

    .faq-layout {
        gap: 56px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: 36px;
    }
}


/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-container {
        padding: 0 24px;
    }

    /* Services — 2 columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why Us — 2 columns */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery — 2 columns */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 280px 280px;
        grid-template-areas:
            "g-large g-2"
            "g-3     g-4";
    }

    /* Testimonials — 2 cards visible */
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }

    /* FAQ layout — stacked */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-header {
        position: static;
    }

    /* Footer — 2 columns */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* =========================================
   RESPONSIVE — MOBILE LARGE
   ========================================= */
@media (max-width: 768px) {
    :root {
        --section-pad: 70px;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Mobile nav drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: #0f0f0f;
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 40px 40px;
        gap: 4px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.open {
        right: 0;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 24px;
        width: 100%;
        text-align: center;
        padding: 14px 22px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .stat-item:nth-child(2),
    .stat-item:nth-child(4) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

    /* About — stacked */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-ph {
        max-height: 380px;
    }

    .about-experience-badge {
        right: 16px;
        bottom: -16px;
    }

    /* Services — 1 column */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Why Us — 2 columns stay */

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
        grid-template-areas:
            "g-large g-2"
            "g-3     g-4";
    }

    /* Testimonials — 1 card */
    .testimonial-card {
        flex: 0 0 100%;
    }

    /* FAQ */
    .faq-layout {
        gap: 40px;
    }

    /* CTA */
    .cta-actions {
        gap: 14px;
    }

    .cta-btn {
        min-width: 140px;
        flex: 1 1 140px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: auto;
    }
}


/* =========================================
   RESPONSIVE — MOBILE SMALL
   ========================================= */
@media (max-width: 480px) {
    :root {
        --section-pad: 60px;
    }

    .container {
        padding: 0 18px;
    }

    .hero-content {
        padding: 100px 18px 70px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row {
        flex-direction: column;
        gap: 12px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 220px);
        grid-template-areas:
            "g-large"
            "g-2"
            "g-3"
            "g-4";
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}
