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

:root {
    --black: #0A0A0A;
    --black-soft: #101010;
    --black-card: #151515;
    --black-border: #222222;
    --black-hover: #1a1a1a;
    --gold: #C9982A;
    --gold-bright: #D4A830;
    --gold-light: #E8C560;
    --gold-dim: #A07A1E;
    --gold-glow: rgba(201, 152, 42, 0.15);
    --gold-gradient: linear-gradient(135deg, #C9982A, #E8C560);
    --white: #FFFFFF;
    --white-95: rgba(255,255,255,0.95);
    --white-80: rgba(255,255,255,0.80);
    --white-60: rgba(255,255,255,0.60);
    --white-40: rgba(255,255,255,0.40);
    --white-20: rgba(255,255,255,0.20);
    --white-10: rgba(255,255,255,0.10);
    --white-05: rgba(255,255,255,0.05);
    --font-heading: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1200px;
    --section-pad: clamp(80px, 10vw, 130px);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white-60);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--white); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
img { max-width: 100%; display: block; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease);
}
.navbar.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--white-10);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 44px;
    width: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white-80);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--gold);
}
.nav-links > li > a .caret {
    font-size: 0.65rem;
    transition: transform 0.3s var(--ease);
}
.nav-links > li:hover > a .caret {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: #181818;
    border: 1px solid var(--white-10);
    border-radius: var(--radius);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    list-style: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-links > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--white-60);
    border-radius: 8px;
    transition: all 0.25s var(--ease);
}
.dropdown li a:hover {
    background: var(--white-05);
    color: var(--gold);
}
.dropdown li a i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: var(--gold-dim);
}

/* Nav CTA */
.nav-cta {
    background: var(--gold-gradient);
    color: var(--black) !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
}
.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(201, 152, 42, 0.4);
    transform: translateY(-1px);
    color: var(--black) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(201, 152, 42, 0.35);
    transform: translateY(-2px);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white-80);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 50px;
    border: 1px solid var(--white-20);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section {
    padding: var(--section-pad) 0;
    position: relative;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 18px;
}
.section-label::before {
    content: '';
    width: 30px; height: 2px;
    background: var(--gold-gradient);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 18px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--white-50);
    max-width: 600px;
    line-height: 1.8;
}
.section-header {
    margin-bottom: 60px;
}
.section-header.center {
    text-align: center;
}
.section-header.center .section-desc {
    margin: 0 auto;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--black-soft);
    border-bottom: 1px solid var(--white-10);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 152, 42, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(201, 152, 42, 0.04) 0%, transparent 50%);
}
.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--white-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.2;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--white-40);
    margin-bottom: 18px;
}
.page-hero .breadcrumb a {
    color: var(--gold);
}
.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}
.page-hero .breadcrumb .sep {
    color: var(--white-20);
}
.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.page-hero h1 .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--white-50);
    max-width: 600px;
    line-height: 1.8;
}

/* ============================================================
   HERO (Home)
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 152, 42, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 152, 42, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, #0d0d0d 100%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="1" cy="1" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    opacity: 0.5;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--white-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 50px;
    padding: 6px 18px 6px 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeUp 0.8s var(--ease) both;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeUp 0.8s var(--ease) 0.15s both;
}
.hero h1 .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--white-60);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease) 0.45s both;
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid var(--white-10);
    animation: fadeUp 0.8s var(--ease) 0.6s both;
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: var(--white-40);
    margin-top: 4px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.bg-soft { background: var(--black-soft); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.service-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 14px;
    margin-bottom: 22px;
    font-size: 1.4rem;
    color: var(--gold);
    transition: all 0.3s var(--ease);
}
.service-card:hover .service-icon {
    background: var(--gold-gradient);
    color: var(--black);
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.3s var(--ease);
}
.service-link:hover { gap: 12px; }

/* Service Detail (services page) */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--white-05);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--black-card), var(--black-hover));
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white-10);
}
.service-detail-content .service-icon { margin-bottom: 18px; }
.service-detail-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.service-detail-content p {
    font-size: 0.95rem;
    color: var(--white-50);
    line-height: 1.8;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
    margin-top: 16px;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--white-60);
    padding: 8px 0;
}
.service-features li i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-main img {
    width: 70%;
    height: auto;
    opacity: 0.15;
}
.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 12px 40px rgba(201, 152, 42, 0.3);
}
.about-image-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.about-image-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-visual { position: relative; }
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}
.value-item {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: all 0.3s var(--ease);
}
.value-item:hover {
    border-color: var(--gold-dim);
    background: var(--gold-glow);
}
.value-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.value-item h4 i {
    color: var(--gold);
    font-size: 0.85rem;
}
.value-item p {
    font-size: 0.82rem;
    color: var(--white-40);
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.team-card {
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s var(--ease);
}
.team-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
}
.team-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold);
    border: 2px solid var(--white-10);
    overflow: hidden;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.team-card .team-role {
    font-size: 0.82rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.team-card p {
    font-size: 0.82rem;
    color: var(--white-40);
    line-height: 1.6;
}

/* ============================================================
   SUBSIDIARIES
   ============================================================ */
.subsidiary-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.subsidiary-card:hover {
    border-color: var(--gold-dim);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.subsidiary-visual {
    position: relative;
    min-height: 360px;
    background: linear-gradient(135deg, #1a1008, #2a1a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.subsidiary-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 152, 42, 0.1) 0%, transparent 70%);
}
.subsidiary-logo-placeholder {
    position: relative;
    z-index: 1;
    text-align: center;
}
.subsidiary-logo-placeholder .luxe-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 6px;
}
.subsidiary-logo-placeholder .luxe-sub {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-dim);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 8px;
}
.subsidiary-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.subsidiary-content .sub-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 14px;
}
.subsidiary-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.subsidiary-content p {
    font-size: 0.92rem;
    color: var(--white-50);
    line-height: 1.8;
    margin-bottom: 28px;
}
.subsidiary-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.subsidiary-features span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--white-60);
    background: var(--white-05);
    border: 1px solid var(--white-10);
    padding: 6px 14px;
    border-radius: 50px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--black-card);
    border: 1px solid var(--white-10);
    cursor: pointer;
    transition: all 0.4s var(--ease);
}
.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}
.gallery-overlay small {
    font-size: 0.75rem;
    color: var(--gold);
}
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-10);
    background: linear-gradient(135deg, var(--black-card), var(--black-hover));
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.3s var(--ease);
}
.testimonial-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}
.testimonial-stars i {
    color: var(--gold);
    font-size: 0.85rem;
}
.testimonial-card blockquote {
    font-size: 0.92rem;
    color: var(--white-60);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
}
.testimonial-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}
.testimonial-role {
    font-size: 0.78rem;
    color: var(--white-40);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--white-10);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--white-80);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-question i {
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info-block {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-info-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 12px;
    color: var(--gold);
    font-size: 1.1rem;
}
.contact-info-block h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-info-block p,
.contact-info-block a {
    font-size: 0.88rem;
    color: var(--white-50);
    line-height: 1.6;
}
.contact-info-block a:hover { color: var(--gold); }
.contact-form {
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}
.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--white-60);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s var(--ease);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}
.form-group textarea {
    min-height: 110px;
    resize: vertical;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-submit {
    width: 100%;
    margin-top: 6px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, #1a1508 0%, #2a1a0a 50%, #1a1508 100%);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 152, 42, 0.08) 0%, transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
}
.cta-banner p {
    font-size: 1.05rem;
    color: var(--white-50);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #060606;
    border-top: 1px solid var(--white-10);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.85rem;
    color: var(--white-40);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    color: var(--white-40);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
    background: var(--gold-glow);
    border-color: var(--gold-dim);
    color: var(--gold);
}
.footer-col h5 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white-80);
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--white-40);
    transition: all 0.3s var(--ease);
}
.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--white-10);
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--white-20);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.3s var(--ease);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .subsidiary-card { grid-template-columns: 1fr; }
    .subsidiary-visual { min-height: 240px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
    .service-detail { grid-template-columns: 1fr; gap: 30px; }
    .service-detail.reverse { direction: ltr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        flex-direction: column;
        background: #111;
        padding: 80px 30px 40px;
        gap: 4px;
        align-items: stretch;
        transition: right 0.4s var(--ease);
        border-left: 1px solid var(--white-10);
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; }
    .nav-links > li > a {
        padding: 14px 12px;
        font-size: 1rem;
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--white-05);
        border-radius: 8px;
        margin-top: 4px;
        display: none;
    }
    .nav-links > li.dropdown-open .dropdown { display: block; }
    .nav-cta {
        text-align: center;
        justify-content: center;
        margin-top: 12px;
    }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 1.6rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values { grid-template-columns: 1fr; }
    .about-image-badge { right: 10px; bottom: -15px; }
    .team-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
}
