/* ============================================================
   HAZAR CATERING - Main Stylesheet
   Dark Luxury Theme
   ============================================================ */

/* ============================================================
   TABLE OF CONTENTS
   ============================================================
   1.  CSS Custom Properties (Variables)
   2.  Reset & Base Styles
   3.  Typography
   4.  Utility Classes
   5.  Container & Layout
   6.  Buttons
   7.  Header & Navbar
   8.  Mobile Navigation
   9.  Hero Section
   10. Stats Section
   11. Section Styling (Titles, Spacing)
   12. Services Section
   13. Why Choose Us
   14. Process Timeline
   15. Service Areas
   16. Gallery
   17. Testimonials
   18. Certifications
   19. Blog Section
   20. CTA Section
   21. Footer
   22. Contact Page
   23. Blog Detail Page
   24. Service Detail / Region Detail
   25. Breadcrumbs
   26. WhatsApp Button
   27. Scroll to Top
   28. Pagination
   29. Form Elements
   30. Animations & Transitions
   31. Loading Spinner
   32. Responsive - Tablet
   33. Responsive - Mobile
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================ */
:root {
    /* Background Colors */
    --bg-body: #0a0a0a;
    --bg-card: #111111;
    --bg-section-alt: #1a1a1a;
    --bg-darker: #050505;

    /* Accent Colors */
    --gold-primary: #c8a97e;
    --gold-hover: #b8860b;
    --gold-light: #d4b896;
    --gold-dark: #a07850;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-muted: #9ca3af;
    --text-secondary: #d1d5db;
    --text-dark: #0a0a0a;

    /* Border Colors */
    --border-color: #2a2a2a;
    --border-light: #333333;

    /* Additional Colors */
    --red-primary: #dc2626;
    --red-hover: #b91c1c;
    --green-whatsapp: #25d366;
    --overlay-dark: rgba(10, 10, 10, 0.7);
    --overlay-darker: rgba(0, 0, 0, 0.85);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 80px;
    --container-width: 1280px;
    --container-padding: 20px;

    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(200, 169, 126, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    --z-top: 9999;
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--gold-primary);
    transition: color var(--transition-base);
}

a:hover {
    color: var(--gold-hover);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

::selection {
    background-color: var(--gold-primary);
    color: var(--text-dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.75rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

p.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.9;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--gold-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

strong {
    font-weight: 600;
    color: var(--text-primary);
}

em {
    font-style: italic;
}

small {
    font-size: 0.875rem;
}

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

.text-white {
    color: var(--text-primary);
}

.text-muted {
    color: var(--text-muted);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.font-heading {
    font-family: var(--font-heading);
}

.font-body {
    font-family: var(--font-body);
}


/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.bg-dark {
    background-color: var(--bg-body);
}

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

.bg-section-alt {
    background-color: var(--bg-section-alt);
}

.bg-gold {
    background-color: var(--gold-primary);
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-none {
    display: none;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-end {
    justify-content: flex-end;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 2.5rem; }
.gap-6 { gap: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.border-gold {
    border: 1px solid var(--gold-primary);
}

.rounded {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

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


/* ============================================================
   5. CONTAINER & LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-sm {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-lg {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

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

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.col {
    flex: 1;
    padding-left: 1rem;
    padding-right: 1rem;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 1rem;
    padding-right: 1rem;
}


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1.4;
    white-space: nowrap;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--text-dark);
    border-color: var(--gold-primary);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--text-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-outline:hover {
    background-color: var(--gold-primary);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-red {
    background-color: var(--red-primary);
    color: var(--text-primary);
    border-color: var(--red-primary);
}

.btn-red:hover {
    background-color: var(--red-hover);
    border-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.btn-white {
    background-color: var(--text-primary);
    color: var(--text-dark);
    border-color: var(--text-primary);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-primary);
    border-color: transparent;
    padding: 10px 20px;
}

.btn-ghost:hover {
    color: var(--gold-primary);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ============================================================
   7. HEADER & NAVBAR
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
    padding: 18px 0;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: var(--z-modal);
}

.header-logo img {
    height: 100px;
    width: auto;
}

.header-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.header-logo .logo-text span {
    color: var(--gold-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: width var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-dropdown);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.nav-dropdown-menu a:hover {
    color: var(--gold-primary);
    background-color: rgba(200, 169, 126, 0.05);
    padding-left: 24px;
}

.nav-cta {
    z-index: var(--z-modal);
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: var(--z-modal);
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header for inner pages (not transparent) */
.header-inner {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-color);
}


/* ============================================================
   8. MOBILE NAVIGATION
   ============================================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(10, 10, 10, 0.98);
    z-index: var(--z-modal-backdrop);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-menu a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-nav.active .mobile-nav-menu a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav.active .mobile-nav-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-menu a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-menu a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active .mobile-nav-menu a:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav.active .mobile-nav-menu a:nth-child(8) { transition-delay: 0.45s; }

.mobile-nav-menu a:hover {
    color: var(--gold-primary);
}

.mobile-nav-menu a.active {
    color: var(--gold-primary);
}

.mobile-nav-contact {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-contact a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-contact a:hover {
    color: var(--gold-primary);
}

.mobile-nav-social {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.mobile-nav-social a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.mobile-nav-social a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background-color: rgba(200, 169, 126, 0.1);
}


/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 var(--container-padding);
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--gold-primary);
    vertical-align: middle;
    margin: 0 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--gold-primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.hero-scroll-indicator i {
    color: var(--gold-primary);
    font-size: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Hero Slider */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 var(--container-padding);
}

/* Inner page hero (shorter) */
.hero-inner {
    min-height: 45vh;
    padding-top: 120px;
}

.hero-inner .hero-title {
    font-size: 3rem;
}

.hero-inner .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.9) 100%
    );
}


/* ============================================================
   10. STATS SECTION
   ============================================================ */
.stats-section {
    padding: 60px 0;
    background-color: var(--bg-section-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background-color: var(--border-color);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-number span {
    font-size: 2rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* ============================================================
   11. SECTION STYLING (TITLES, SPACING)
   ============================================================ */
.section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background-color: var(--bg-section-alt);
}

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

.section-header.text-left {
    text-align: left;
    margin-left: 0;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--gold-primary);
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--gold-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-header.text-left .section-line {
    margin-left: 0;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-decorator {
    text-align: center;
    padding: 1rem 0;
}

.section-decorator span {
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: var(--border-color);
}


/* ============================================================
   12. SERVICES SECTION
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.service-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-image .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.8) 0%, transparent 50%);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.service-card-icon i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: color var(--transition-base);
}

.service-card:hover .service-card-icon i {
    color: var(--text-dark);
}

.service-card-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-card-title a {
    color: inherit;
    transition: color var(--transition-base);
}

.service-card-title a:hover {
    color: var(--gold-primary);
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1.25rem;
    transition: gap var(--transition-base);
}

.service-card-link:hover {
    gap: 10px;
    color: var(--gold-hover);
}

.service-card-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-base);
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}


/* ============================================================
   13. WHY CHOOSE US
   ============================================================ */
.why-us-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.why-us-stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.why-us-stat-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
}

.why-us-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-us-stat-card .stat-icon i {
    font-size: 1.25rem;
    color: var(--gold-primary);
}

.why-us-stat-card .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.why-us-stat-card .stat-label {
    font-size: 0.85rem;
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(200, 169, 126, 0.3);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ============================================================
   14. PROCESS TIMELINE
   ============================================================ */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
    padding-left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
    padding-right: 0;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: var(--bg-body);
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-number {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-number {
    left: -25px;
}

.timeline-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.timeline-content:hover {
    border-color: rgba(200, 169, 126, 0.3);
    transform: translateY(-4px);
}

.timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}


/* ============================================================
   15. SERVICE AREAS
   ============================================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.area-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.area-badge:hover {
    border-color: var(--gold-primary);
    background-color: rgba(200, 169, 126, 0.05);
    transform: translateY(-2px);
}

.area-badge i {
    color: var(--gold-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.area-badge span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-base);
}

.area-badge:hover span {
    color: var(--gold-primary);
}


/* ============================================================
   16. GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
    background-color: rgba(10, 10, 10, 0.7);
}

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--text-primary);
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay i {
    opacity: 1;
    transform: scale(1);
}

.gallery-item-overlay .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-caption h5 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.gallery-caption p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

.gallery-placeholder-content {
    text-align: center;
    color: var(--text-muted);
}

.gallery-placeholder-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--border-light);
}

.gallery-placeholder-content span {
    font-size: 0.8rem;
}

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--bg-section-alt);
    color: var(--text-muted);
}

.blog-card-placeholder i {
    font-size: 2.5rem;
    color: var(--border-light);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: var(--z-top);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}


/* ============================================================
   17. TESTIMONIALS
   ============================================================ */
.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    scroll-snap-align: start;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(200, 169, 126, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}

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

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -5px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.testimonial-author-info h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-nav button {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonials-nav button:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}


/* ============================================================
   18. CERTIFICATIONS
   ============================================================ */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.certification-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.certification-card:hover {
    border-color: rgba(200, 169, 126, 0.3);
    transform: translateY(-4px);
}

.certification-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 1.25rem;
}

.certification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certification-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.08);
    border: 1px solid rgba(200, 169, 126, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.certification-icon i {
    font-size: 1.75rem;
    color: var(--gold-primary);
}

.certification-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.certification-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.certification-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}


/* ============================================================
   19. BLOG SECTION
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 126, 0.3);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background-color: var(--gold-primary);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
}

.blog-card-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-card-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta span i {
    font-size: 0.75rem;
    color: var(--gold-primary);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    transition: color var(--transition-base);
}

.blog-card-title a:hover {
    color: var(--gold-primary);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-author img {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.blog-card-author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.blog-card-readmore {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-readmore i {
    font-size: 0.75rem;
    transition: transform var(--transition-base);
}

.blog-card:hover .blog-card-readmore i {
    transform: translateX(4px);
}


/* ============================================================
   20. CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-section .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-section .cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 1;
}

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

.cta-content .section-subtitle {
    color: var(--gold-primary);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

.cta-contact-info a:hover {
    color: var(--gold-primary);
}

.cta-contact-info a i {
    color: var(--gold-primary);
}


/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 80px!important;
    width: auto;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-logo .logo-text span {
    color: var(--gold-primary);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background-color: rgba(200, 169, 126, 0.1);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--gold-primary);
    transition: width var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-contact-item a {
    color: var(--text-muted);
    transition: color var(--transition-base);
}

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

/* Footer Bottom / Copyright */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-copyright a {
    color: var(--gold-primary);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

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


/* ============================================================
   22. CONTACT PAGE
   ============================================================ */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-form label .required {
    color: var(--red-primary);
    margin-left: 2px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-section-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.contact-form .btn {
    margin-top: 0.5rem;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.form-message.error {
    display: block;
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #ef4444;
}

/* Contact Info Side */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.1rem;
    color: var(--gold-primary);
}

.contact-info-text h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--text-muted);
}

.contact-info-text a:hover {
    color: var(--gold-primary);
}

/* Contact Map */
.contact-map {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1) contrast(0.9) brightness(0.7);
}

/* Contact social */
.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.contact-social a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background-color: rgba(200, 169, 126, 0.1);
}


/* ============================================================
   23. BLOG DETAIL PAGE
   ============================================================ */
.blog-detail {
    padding: var(--section-padding) 0;
}

.blog-detail-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-header {
    margin-bottom: 2.5rem;
}

.blog-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-detail-meta span i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

.blog-detail-featured-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.blog-detail-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Blog Content Typography */
.blog-detail-content {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.blog-detail-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-detail-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.blog-detail-content img {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-detail-content ul li,
.blog-detail-content ol li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.blog-detail-content ul li {
    list-style-type: disc;
}

.blog-detail-content ol li {
    list-style-type: decimal;
}

.blog-detail-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background-color: var(--bg-card);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.blog-detail-content blockquote p {
    margin-bottom: 0;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
}

.blog-detail-content a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-detail-content a:hover {
    color: var(--gold-hover);
}

/* Blog Tags */
.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-detail-tags span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-tag {
    padding: 5px 14px;
    background-color: var(--bg-section-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.blog-tag:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Blog Share */
.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.blog-detail-share span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-detail-share a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.blog-detail-share a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Related Posts */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}


/* ============================================================
   24. SERVICE DETAIL / REGION DETAIL
   ============================================================ */
.detail-section {
    padding: var(--section-padding) 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.detail-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.detail-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.detail-content img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.detail-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
}

.detail-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-content ul li i {
    color: var(--gold-primary);
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Sidebar */
.detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.sidebar-links a:last-child {
    border-bottom: none;
}

.sidebar-links a:hover {
    color: var(--gold-primary);
    padding-left: 8px;
}

.sidebar-links a i {
    font-size: 0.75rem;
    transition: transform var(--transition-base);
}

.sidebar-links a:hover i {
    transform: translateX(4px);
}

.sidebar-links a.active {
    color: var(--gold-primary);
    font-weight: 600;
}

.sidebar-cta {
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.1), rgba(200, 169, 126, 0.05));
    text-align: center;
}

.sidebar-cta h4 {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}


/* ============================================================
   25. BREADCRUMBS
   ============================================================ */
.breadcrumbs {
    padding: 16px 0;
    background-color: var(--bg-section-alt);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumbs-list li a {
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.breadcrumbs-list li a:hover {
    color: var(--gold-primary);
}

.breadcrumbs-list li.active {
    color: var(--gold-primary);
}

.breadcrumbs-separator {
    color: var(--text-muted);
    font-size: 0.7rem;
    opacity: 0.5;
}


/* ============================================================
   26. WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background-color: var(--green-whatsapp);
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-fixed);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #ffffff;
    animation: none;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}


/* ============================================================
   27. SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-fixed);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

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

.scroll-top:hover {
    background-color: var(--gold-primary);
    color: var(--text-dark);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}


/* ============================================================
   28. PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 3rem;
    padding-top: 2rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.pagination a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.pagination .active {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--text-dark);
    font-weight: 600;
}

.pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination .dots {
    border: none;
    background: none;
    color: var(--text-muted);
}


/* ============================================================
   29. FORM ELEMENTS (Global)
   ============================================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-section-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

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

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold-primary);
    cursor: pointer;
}

.form-check label {
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
}

.form-error {
    font-size: 0.8rem;
    color: var(--red-primary);
    margin-top: 4px;
}

.form-helper {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}


/* ============================================================
   30. ANIMATIONS & TRANSITIONS
   ============================================================ */

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* Hover lift effect */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Shimmer / Skeleton Loading */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-section-alt) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* Gold glow animation */
@keyframes gold-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(200, 169, 126, 0.2); }
    50% { box-shadow: 0 0 20px rgba(200, 169, 126, 0.4); }
}


/* ============================================================
   31. LOADING SPINNER
   ============================================================ */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-top);
    transition: opacity 0.5s ease;
}

.spinner-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-color);
    border-top-color: var(--gold-primary);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner-sm {
    width: 24px;
    height: 24px;
    border-width: 2px;
}

.spinner-lg {
    width: 64px;
    height: 64px;
    border-width: 4px;
}


/* ============================================================
   32. PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
    position: relative;
    padding: 140px 0 60px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.page-header-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-header-tall {
    padding: 160px 0 80px;
}

.page-header-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.header-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.header-meta-item i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

/* Breadcrumb (inline in page header) */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 0.65rem;
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 500;
}


/* ============================================================
   33. BUTTON & SECTION TAG ALIASES
   ============================================================ */
.btn-gold {
    background-color: var(--gold-primary);
    color: var(--text-dark);
    border-color: var(--gold-primary);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--text-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-outline-gold:hover {
    background-color: var(--gold-primary);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-outline-white:hover {
    background-color: var(--text-primary);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}


/* ============================================================
   34. ALERTS
   ============================================================ */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.alert-error {
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #ef4444;
}


/* ============================================================
   35. UTILITY CLASSES (Extended)
   ============================================================ */
.content-area {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.content-area h2 { font-size: 1.75rem; margin-top: 2rem; margin-bottom: 1rem; }
.content-area h3 { font-size: 1.4rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.content-area p { margin-bottom: 1.25rem; color: var(--text-secondary); }
.content-area img { width: 100%; border-radius: var(--radius-lg); margin: 2rem 0; }
.content-area ul, .content-area ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.content-area ul li, .content-area ol li { margin-bottom: 0.5rem; color: var(--text-secondary); line-height: 1.7; }
.content-area a { color: var(--gold-primary); }

.no-content {
    padding: 4rem 2rem;
}

.no-content-icon {
    font-size: 3rem;
    color: var(--border-light);
    margin-bottom: 1.5rem;
}

.no-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.no-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.link-gold {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-base);
}

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

.link-gold i {
    transition: transform var(--transition-base);
}

.link-gold:hover i {
    transform: translateX(4px);
}

.section-title-left {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.section-title-left span {
    color: var(--gold-primary);
}


/* ============================================================
   36. ABOUT PAGE
   ============================================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* ============================================================
   37. PROCESS STEPS (About page)
   ============================================================ */
.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
}

.process-step:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.process-step-number {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.1);
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step-number span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.process-step-content {
    flex: 1;
}

.process-step-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.08);
    border: 1px solid rgba(200, 169, 126, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.process-step-icon i {
    font-size: 1rem;
    color: var(--gold-primary);
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-step-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.process-step-connector {
    display: none;
}


/* ============================================================
   38. REGIONS LISTING PAGE
   ============================================================ */
.region-group {
    margin-bottom: 3rem;
}

.region-group:last-child {
    margin-bottom: 0;
}

.region-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.region-group-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.region-group-icon i {
    font-size: 1.1rem;
    color: var(--gold-primary);
}

.region-group-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.region-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.region-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.region-badge:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.region-badge i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}


/* ============================================================
   39. REGION DETAIL PAGE
   ============================================================ */
.region-intro {
    margin-bottom: 3rem;
}

.region-intro-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.region-intro p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.region-services-section,
.region-quality-section,
.region-pricing-section,
.region-advantages-section,
.region-why-section,
.region-faq-section {
    margin-bottom: 4rem;
}

.region-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.region-service-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.region-service-card:hover {
    border-color: rgba(200, 169, 126, 0.3);
}

.region-service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.region-service-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.region-service-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.quality-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quality-list {
    list-style: none;
    padding: 0;
}

.quality-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.quality-list li i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3rem;
    margin-top: 1.5rem;
}

/* Region Why Cards */
.region-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.region-why-card {
    padding: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.region-why-card:hover {
    border-color: rgba(200, 169, 126, 0.3);
    transform: translateY(-4px);
}

.region-why-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

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

.region-why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.region-why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Link Gold */
.link-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 500;
    transition: all var(--transition-base);
}

.link-gold:hover {
    color: var(--gold-light);
    gap: 10px;
}

.region-pricing-section p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    position: relative;
    padding: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(200, 169, 126, 0.3);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(200, 169, 126, 0.08) 0%, var(--bg-card) 100%);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #0a0a0a;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-card-header i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.pricing-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-card-price {
    text-align: center;
    padding: 1.25rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.price-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-card-features li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.pricing-card .btn {
    margin-top: auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.advantage-card:hover {
    border-color: rgba(200, 169, 126, 0.3);
    transform: translateY(-4px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

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

.advantage-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    border-color: rgba(200, 169, 126, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

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

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.region-cta-box {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.08), rgba(200, 169, 126, 0.03));
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.region-cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.region-cta-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.region-cta-content .cta-buttons {
    justify-content: center;
}

.other-regions-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.region-side-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.region-side-title:first-child {
    margin-top: 0;
}

.region-side-title i {
    color: var(--gold-primary);
}

.region-badges-sm {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.region-badge-sm {
    padding: 8px 14px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all var(--transition-base);
}

.region-badge-sm:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}


/* ============================================================
   40. SERVICE DETAIL FEATURES
   ============================================================ */
.service-features {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.service-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-item i {
    flex-shrink: 0;
}


/* ============================================================
   41. SIDEBAR ENHANCEMENTS
   ============================================================ */
.sidebar-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-post-item {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-post-item:last-child {
    border-bottom: none;
}

.sidebar-post-link {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    transition: opacity var(--transition-base);
}

.sidebar-post-link:hover {
    opacity: 0.8;
}

.sidebar-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

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

.sidebar-post-thumb-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-section-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-light);
}

.sidebar-post-info h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.25rem;
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-post-date i {
    font-size: 0.7rem;
    color: var(--gold-primary);
}

.sidebar-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background-color: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.sidebar-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.sidebar-cta-phone:hover {
    color: var(--gold-hover);
}


/* ============================================================
   42. RESPONSIVE - TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px;
    }

    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }

    /* Navbar */
    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Section Header */
    .section-title {
        font-size: 2.25rem;
    }

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

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

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

    /* Areas */
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Detail */
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    /* Grid helpers */
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* CTA */
    .cta-content h2 {
        font-size: 2.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }

    /* Page Header */
    .page-header {
        padding: 120px 0 50px;
    }

    .page-header-title {
        font-size: 2.25rem;
    }

    /* About */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    /* Regions */
    .region-badges {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Region Detail */
    .region-services-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

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

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


/* ============================================================
   33. RESPONSIVE - MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
        --container-padding: 16px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }

    /* Hero */
    .hero {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 20px;
        margin: 0 8px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-inner {
        min-height: 35vh;
        padding-top: 100px;
    }

    .hero-inner .hero-title {
        font-size: 2rem;
    }

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

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Section */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

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

    .service-card-image {
        height: 200px;
    }

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

    .why-us-stat-card {
        padding: 1.5rem;
    }

    .why-us-stat-card .stat-number {
        font-size: 2rem;
    }

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

    /* Timeline */
    .process-timeline::before {
        left: 25px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-number,
    .timeline-item:nth-child(odd) .timeline-number,
    .timeline-item:nth-child(even) .timeline-number {
        left: 0;
        right: auto;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    /* Areas */
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .area-badge {
        padding: 12px 14px;
    }

    .area-badge span {
        font-size: 0.85rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }

    /* Certifications */
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .certification-card {
        padding: 1.5rem;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 200px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

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

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

    .cta-contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    /* Footer */
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 250px;
    }

    /* Blog Detail */
    .blog-detail-title {
        font-size: 1.75rem;
    }

    .blog-detail-meta {
        gap: 1rem;
    }

    .blog-detail-content {
        font-size: 0.95rem;
    }

    .blog-detail-content h2 {
        font-size: 1.5rem;
    }

    .blog-detail-content h3 {
        font-size: 1.25rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 26px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    /* Grid helpers */
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .grid-6 {
        grid-template-columns: 1fr;
    }

    .col-6,
    .col-4,
    .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Page Header */
    .page-header {
        padding: 110px 0 40px;
    }

    .page-header-title {
        font-size: 1.75rem;
    }

    .page-header-subtitle {
        font-size: 0.95rem;
    }

    .page-header-tall {
        padding: 120px 0 50px;
    }

    /* About */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-stat-number {
        font-size: 1.75rem;
    }

    /* Regions */
    .region-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Region Detail */
    .region-why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .region-why-card {
        padding: 1.5rem;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .advantage-card {
        padding: 1.5rem 1rem;
    }

    .region-cta-box {
        padding: 2rem 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }

    /* WhatsApp + Scroll Top */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 80px;
        left: 20px;
    }

    /* Pagination */
    .pagination {
        gap: 6px;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}


/* ============================================================
   RESPONSIVE - Small Mobile (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none;
    }

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

    .stat-number {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

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

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

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

    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
    }

    .footer-social {
        justify-content: center;
    }

    .blog-detail-share {
        flex-wrap: wrap;
    }

    /* Regions & Region Detail */
    .region-badges {
        grid-template-columns: 1fr;
    }

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

    .pricing-card {
        padding: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .header,
    .footer,
    .whatsapp-btn,
    .scroll-top,
    .mobile-nav {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        padding: 20px 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
