/* ============================================
   Be Famous — Premium Master Stylesheet
   Luxury Corporate Identity
   ============================================ */

/* === Fonts (self-hosted fallback + Google) === */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap');

/* === Design Tokens === */
:root {
    /* Gold family */
    --gold-50:  #FDF8ED;
    --gold-100: #F8EED0;
    --gold-200: #F0DBA0;
    --gold-300: #E8C870;
    --gold-400: #DEB84A;
    --gold-500: #C9A84C;
    --gold-600: #B8942E;
    --gold-700: #9A7A22;
    --gold-800: #7C6118;
    
    /* Dark family */
    --ink-50:  #F5F5F0;
    --ink-100: #E0DDD5;
    --ink-200: #BFBBB0;
    --ink-300: #9E998A;
    --ink-400: #7D7764;
    --ink-500: #0A0A0A;
    --ink-600: #1A1A18;
    --ink-700: #141412;
    --ink-800: #0E0E0C;
    --ink-900: #080807;
    
    /* Neutrals */
    --warm-white: #FCFAF5;
    --cream:      #F8F5ED;
    --stone:      #E8E4DA;
    --smoke:      #D5D0C5;
    --ash:        #A39D8E;
    --charcoal:   #2C2C28;

    /* Gray aliases (mapped to design system) */
    --gray-50:  var(--warm-white);
    --gray-100: var(--cream);
    --gray-200: var(--stone);
    --gray-300: var(--smoke);
    --gray-400: var(--ash);
    --gray-500: #7a7469;
    
    /* Functional */
    --gold:       var(--gold-500);
    --gold-dark:  var(--gold-700);
    --gold-light: var(--gold-200);
    --black:      var(--ink-500);
    --black-soft: var(--ink-600);
    --white:      #FFFFFF;
    --off-white:  var(--warm-white);
    
    /* Typography */
    --font-display: 'Playfair Display', 'Palatino Linotype', 'Book Antiqua', serif;
    --font-body:    'Cairo', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    
    /* Shadows — layered for depth */
    --shadow-xs:   0 1px 3px rgba(10,10,10,0.04);
    --shadow-sm:   0 2px 8px rgba(10,10,10,0.06);
    --shadow-md:   0 4px 24px rgba(10,10,10,0.08);
    --shadow-lg:   0 8px 48px rgba(10,10,10,0.10);
    --shadow-xl:   0 16px 64px rgba(10,10,10,0.14);
    --shadow-gold: 0 4px 28px rgba(201,168,76,0.25);
    --shadow-gold-lg: 0 8px 48px rgba(201,168,76,0.30);
    
    /* Radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    
    /* Transitions */
    --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
    --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
    --transition: all 0.4s var(--ease-out);
    --transition-fast: all 0.2s var(--ease-out);
    --transition-slow: all 0.7s var(--ease-out);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.8;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* === Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-300); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* === Container === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Section === */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.section-title .gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.section-header .section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 auto 32px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.section-header .section-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    animation: divider-shimmer 2s ease-in-out infinite;
}

.section-desc {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ash);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.9;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
}

.display-1 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-gold:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 24px rgba(201,168,76,0.15);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.btn .arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .arrow {
    transform: translateX(-4px);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px) saturate(1.2);
    /* border-bottom: 1px solid rgba(10,10,10,0.06); */
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 32px rgba(10,10,10,0.06);
}

.site-header.hidden {
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease-in);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 0.5px;
}

.logo-text .gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Navigation === */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav .nav-list > li > a {
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.main-nav .nav-list > li > a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
}

.main-nav .nav-list > li > a:hover,
.main-nav .nav-list > li > a.active {
    color: var(--gold);
}

.main-nav .nav-list > li > a:hover::before,
.main-nav .nav-list > li > a.active::before {
    transform: scaleX(1);
}

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

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 260px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10,10,10,0.06);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s var(--ease-out);
    z-index: 100;
}

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

.dropdown li a {
    display: block;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition);
    border-right: 3px solid transparent;
}

.dropdown li a:hover {
    background: var(--cream);
    color: var(--gold);
    border-right-color: var(--gold);
    padding-right: 28px;
}

/* === Mobile Toggle === */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--black);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ink-900);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201,168,76,0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: hero-glow 12s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    100% { transform: translate(100px, 80px) scale(1.3); opacity: 1; }
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 18s linear infinite;
}

@keyframes float-particle {
    0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    5%   { opacity: 0.4; }
    95%  { opacity: 0.4; }
    100% { transform: translateY(-50vh) rotate(720deg); opacity: 0; }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.10);
    border: 1px solid rgba(201,168,76,0.20);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-300);
    letter-spacing: 0.5px;
    margin-bottom: 36px;
    backdrop-filter: blur(8px);
}

.hero-badge .dot,
.hero-badge > span:first-child {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title .gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ash);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: var(--ash);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { background: var(--white); overflow: hidden; }

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

.about-image {
    position: relative;
    /* Note: no overflow:hidden here — so ::before border frame + .accent show properly */
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-image-placeholder {
    border-radius: var(--radius-lg);
    height: 420px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--stone) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px dashed var(--smoke);
}

.about-image-placeholder svg { opacity: 0.25; }
.about-image-placeholder span {
    font-size: 0.85rem;
    color: var(--ash);
    font-weight: 500;
    letter-spacing: 1px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -18px;
    width: 180px;
    height: 180px;
    border: 2px solid var(--gold-300);
    border-radius: var(--radius-lg);
    opacity: 0.5;
    pointer-events: none;
}

.about-image .accent {
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-radius: var(--radius-md);
    opacity: 0.12;
    pointer-events: none;
}

.about-content .section-subtitle::after { margin-right: 0; }

.about-text {
    color: var(--ash);
    line-height: 2;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid var(--stone);
}

.about-feature:hover {
    background: var(--gold-50);
    border-color: var(--gold-200);
    transform: translateX(-4px);
    box-shadow: var(--shadow-sm);
}

.about-feature .icon-wrap {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--black);
    box-shadow: 0 2px 8px rgba(201,168,76,0.25);
}

.about-feature .icon-wrap svg { width: 16px; height: 16px; }

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10,10,10,0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-300), var(--gold-500), var(--gold-300));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--black);
    transform: rotateY(180deg) scale(1.05);
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--black);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--ash);
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

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

/* Service Card with Image */
.service-card .service-image + .service-card-body {
    padding: 20px;
}

.service-card .service-image img {
    transition: transform 0.5s var(--ease-out);
}

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

/* Service Websites Grid */
.service-websites-grid .website-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-300);
}

.service-websites-grid .website-card img {
    transition: transform 0.3s var(--ease-out);
}

.service-websites-grid .website-card:hover img {
    transform: scale(1.08);
}

/* Single Service Image */
.service-single-image {
    box-shadow: var(--shadow-md);
}

/* ============================================
   WHY US
   ============================================ */
.why-section {
    background: var(--ink-800);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.why-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
    background: rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
}

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

.why-card:hover {
    border-color: rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.03);
    transform: translateY(-6px);
}

.why-card:hover::after { opacity: 1; }

.why-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.why-card p {
    font-size: 0.92rem;
    color: var(--ash);
    line-height: 1.8;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-section { background: var(--white); }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--stone);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.package-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.package-card:hover {
    border-color: var(--gold-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 28px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.package-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.package-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1;
}

.package-currency {
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: super;
    line-height: 1;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--ash);
    margin: 20px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--stone);
}

.package-features {
    text-align: right;
    margin-bottom: 32px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(10,10,10,0.03);
}

.package-features li:last-child { border-bottom: none; }

.package-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ============================================
   STATISTICS
   ============================================ */
.stats-section {
    background: var(--ink-900);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(201,168,76,0.03) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item { padding: 48px 20px; }

.stat-item:not(:last-child) {
    border-left: 1px solid rgba(255,255,255,0.04);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--ash);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   CLIENTS
   ============================================ */
.clients-section {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--white) 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 28px;
    align-items: center;
}

.client-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 1px solid var(--stone);
    transition: var(--transition);
    filter: grayscale(100%) brightness(1.05);
    opacity: 0.6;
}

.client-item:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    border-color: var(--gold-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.client-item img { max-height: 36px; width: auto; }
.client-item .client-placeholder {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ash);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--stone);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.15;
}

.testimonial-card:hover {
    border-color: var(--gold-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--ash);
    line-height: 1.9;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--stone);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--ash);
}

/* ============================================
   STEPS
   ============================================ */
.steps-section { background: var(--cream); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.step-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,0.2);
}

.step-card:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}

.step-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--ash);
    line-height: 1.8;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 44px;
    left: -14px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-300), transparent);
}

/* ============================================
   NEWS
   ============================================ */
.news-section { background: var(--white); }

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--stone);
    transition: var(--transition);
}

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

.news-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.news-card:hover .news-card-image img {
    transform: scale(1.06);
}

.news-card-image .placeholder-icon {
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smoke);
}

.news-card-body { padding: 28px; }

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--ash);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-card-title a { color: inherit; }
.news-card-title a:hover { color: var(--gold); }

.news-card-excerpt {
    font-size: 0.88rem;
    color: var(--ash);
    line-height: 1.8;
    margin-bottom: 16px;
}

.news-card-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.news-card-more:hover { gap: 10px; color: var(--gold-700); }

/* ============================================
   AGENTS (Home)
   ============================================ */
.agents-section { background: var(--cream); }

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

.agent-simple-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--stone);
    transition: var(--transition);
}

.agent-simple-card:hover {
    border-color: var(--gold-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.agent-simple-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800; color: #000;
    overflow: hidden;
}
.agent-simple-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}

.agent-simple-card .country {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.agent-simple-card .name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--white); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--ash);
    margin-bottom: 36px;
    line-height: 1.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-detail:hover {
    background: var(--gold-50);
    transform: translateX(-4px);
}

.contact-detail .icon-circle {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--black);
}

.contact-detail .icon-circle svg { width: 18px; height: 18px; }

.contact-detail span,
.contact-detail a {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
}

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

/* Contact Form */
.contact-form {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--stone);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    border: 2px solid var(--stone);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--black);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.08);
}

.form-control::placeholder { color: var(--smoke); }
textarea.form-control { min-height: 140px; resize: vertical; }

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

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--ink-800);
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
        linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 100%);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--ash);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    font-size: 0.88rem;
}

.breadcrumb a { color: var(--ash); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold-300); }
.breadcrumb .sep { color: var(--charcoal); }

/* ============================================
   SINGLE SERVICE
   ============================================ */
.service-single { padding: 80px 0; }

.service-single-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
}

.service-single-content h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 24px;
}

.service-single-content p {
    font-size: 1.05rem;
    color: var(--ash);
    line-height: 2;
    margin-bottom: 20px;
}

.service-single-sidebar { position: sticky; top: 100px; }

.service-sidebar-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--stone);
    margin-bottom: 24px;
}

.service-sidebar-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.service-sidebar-list li a {
    display: block;
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--stone);
    transition: var(--transition);
}

.service-sidebar-list li:last-child a { border-bottom: none; }
.service-sidebar-list li a:hover,
.service-sidebar-list li a.active { color: var(--gold); padding-right: 6px; }

/* ============================================
   BLOG LAYOUT
   ============================================ */
.blog-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 56px;
}

.blog-posts { display: grid; gap: 32px; }

.blog-post-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--stone);
    transition: var(--transition);
}

.blog-post-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-300);
    transform: translateY(-4px);
}

.blog-post-card .post-image {
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

.blog-post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.blog-post-card .post-body {
    padding: 28px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-post-card .post-meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--ash);
    margin-bottom: 10px;
}

.blog-post-card .post-title {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.4;
}

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

.blog-post-card .post-excerpt {
    font-size: 0.92rem;
    color: var(--ash);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Sidebar */
.blog-sidebar .sidebar-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--stone);
    margin-bottom: 28px;
}

.blog-sidebar .sidebar-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.blog-sidebar .search-form {
    display: flex;
    gap: 10px;
}

.blog-sidebar .search-form input {
    flex: 1;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    border: 2px solid var(--stone);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

.blog-sidebar .search-form input:focus { border-color: var(--gold-400); }

.blog-sidebar .search-form button {
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--black);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    transition: var(--transition);
}

.blog-sidebar .search-form button:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--stone);
    transition: var(--transition);
}

.sidebar-categories li:last-child a { border-bottom: none; }
.sidebar-categories li a:hover { color: var(--gold); padding-right: 6px; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--stone);
    color: var(--charcoal);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--gold-400);
    color: var(--gold);
    transform: translateY(-2px);
}

.pagination .current {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--black);
    border-color: var(--gold);
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-post { padding: 80px 0; }

.single-post .post-header { margin-bottom: 48px; }

.single-post .post-header h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.single-post .post-meta {
    display: flex;
    gap: 24px;
    font-size: 0.88rem;
    color: var(--ash);
    flex-wrap: wrap;
}

.single-post .post-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
}

.single-post .post-image img { width: 100%; }

.single-post .post-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-post .post-content p {
    font-size: 1.1rem;
    color: var(--ash);
    line-height: 2.1;
    margin-bottom: 24px;
}

.single-post .post-content h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--black);
    margin: 40px 0 20px;
}

.single-post .post-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin: 32px 0 16px;
}

.single-post .post-content img {
    border-radius: var(--radius-md);
    margin: 28px 0;
}

.single-post .post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--stone);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.single-post .post-tags a {
    background: var(--cream);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: var(--transition);
}

.single-post .post-tags a:hover {
    background: var(--gold);
    color: var(--black);
}

/* Related Posts */
.related-posts {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--stone);
}

.related-posts h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 36px;
}

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

/* ============================================
   AGENTS PAGE
   ============================================ */
.agents-page .country-group { margin-bottom: 56px; }

.agents-page .country-header {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.agents-page .agents-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.agents-page .agent-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--stone);
    transition: var(--transition);
}

.agents-page .agent-card:hover {
    border-color: var(--gold-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.agents-page .agent-card .name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.agents-page .agent-card .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--charcoal);
}

.agents-page .agent-card .info-item .ico {
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    transition: var(--transition);
}

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

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--gold);
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    color: var(--black);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px;
    max-height: 600px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--ash);
    line-height: 1.9;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--ink-800);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 80px 0 56px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--ash);
    line-height: 1.9;
    margin-bottom: 24px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    color: var(--ash);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-links li a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--ash);
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 0.88rem;
    color: var(--ash);
}

.footer-contact li .ico {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 24px 0;
}

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

.footer-bottom p { font-size: 0.85rem; color: var(--ash); }

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--ash);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.35);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 40px rgba(37,211,102,0.45);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 96px;
    left: 28px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.scroll-top.visible { opacity: 1; visibility: visible; }

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate { opacity: 0; }

.animate.fade-in { animation: fadeIn 0.8s var(--ease-out) forwards; }
.animate.slide-up { animation: slideUp 0.8s var(--ease-out) forwards; }
.animate.slide-right { animation: slideInRight 0.8s var(--ease-out) forwards; }
.animate.slide-left { animation: slideInLeft 0.8s var(--ease-out) forwards; }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.2rem; }
    .section-title { font-size: 2.2rem; }
    .display-1 { font-size: 3.5rem; }
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .package-card.featured { transform: none; }
    .package-card.featured:hover { transform: translateY(-6px); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-stats { flex-wrap: wrap; gap: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .agents-preview { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .blog-post-card { grid-template-columns: 1fr; }
    .blog-post-card .post-image { min-height: 200px; }
    .blog-post-card .post-body { padding: 24px; }
    .service-single-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .agents-page .agents-list { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
    .stat-item:not(:last-child) { border-left: none; }
    .stat-item:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.04); }
    .stat-item:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.04); }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .section-title { font-size: 1.8rem; }
    .section-header { margin-bottom: 48px; }

    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-stats { flex-wrap: wrap; gap: 24px; margin-top: 48px; padding-top: 28px; }
    .hero-stat-number { font-size: 1.8rem; }

    .page-header { padding: 150px 0 60px; }
    .page-header h1 { font-size: 2rem; }

    /* Prevent horizontal overflow from side-slide animations on mobile */
    [data-reveal="fade-left"],
    [data-reveal="fade-right"] {
        transform: translateY(40px);
    }

    /* Mobile Nav */
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 90px 28px 28px;
        transition: right 0.4s var(--ease-out);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active { right: 0; }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .main-nav .nav-list > li > a {
        padding: 16px 0;
        display: block;
        border-bottom: 1px solid var(--stone);
        font-size: 0.95rem;
    }

    .main-nav .nav-list > li > a::before { display: none; }

    .has-dropdown .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 12px;
        display: none;
        border: none;
        background: var(--cream);
        border-radius: var(--radius-sm);
    }

    .has-dropdown.open .dropdown { display: block; }

    .menu-toggle { display: flex; }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10,10,10,0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        backdrop-filter: blur(4px);
    }

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

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item { padding: 28px 12px; }
    .stat-item:not(:last-child) { border-left: none; }
    .stat-item:nth-child(odd) { border-left: 1px solid rgba(255,255,255,0.04); }
    .stat-number { font-size: 2.2rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card:not(:last-child)::after { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
    .agents-page .agents-list { grid-template-columns: 1fr; }
    .page-content { padding: 50px 0; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-image::before { display: none; } /* hide frame decoration on mobile — too tight */
    .about-image .accent { width: 80px; height: 80px; bottom: -8px; left: -8px; }
    .contact-form { padding: 32px 24px; }
    .service-single-content h1 { font-size: 1.8rem; }
    .single-post .post-header h1 { font-size: 1.8rem; }
    .display-1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .pagination a, .pagination span { width: 38px; height: 38px; font-size: 0.85rem; }
    .single-post .post-meta { flex-direction: column; gap: 8px; }
    .whatsapp-float { width: 48px; height: 48px; bottom: 20px; left: 20px; }
    .scroll-top { width: 40px; height: 40px; bottom: 80px; left: 20px; }
    .section-title { font-size: 1.5rem; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--black);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}
.cta-desc {
    color: var(--ash);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.cta-section .btn-lg {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* ============================================
   FORM LOADING STATE
   ============================================ */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}
.btn-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .animate { animation: none !important; transition: none !important; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: translate(0, 0) scale(1); }

[data-reveal="fade-up"] { transform: translateY(60px); }
[data-reveal="fade-down"] { transform: translateY(-60px); }
[data-reveal="fade-left"] { transform: translateX(-60px); }
[data-reveal="fade-right"] { transform: translateX(60px); }
[data-reveal="scale-in"] { transform: scale(0.85); }
[data-reveal="zoom-in"] { transform: scale(0.6) translateY(40px); }

[data-reveal].reveal-delay-1 { transition-delay: 0.1s; }
[data-reveal].reveal-delay-2 { transition-delay: 0.2s; }
[data-reveal].reveal-delay-3 { transition-delay: 0.3s; }
[data-reveal].reveal-delay-4 { transition-delay: 0.4s; }
[data-reveal].reveal-delay-5 { transition-delay: 0.5s; }
[data-reveal].reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   3D CARD TILT
   ============================================ */
.tilt-card {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.1s ease-out;
}
.tilt-card .tilt-content {
    transform: translateZ(30px);
    transition: transform 0.3s ease-out;
}
.tilt-card .tilt-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.15), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.tilt-card:hover .tilt-glow { opacity: 1; }

/* ============================================
   BUTTON EFFECTS
   ============================================ */
.btn-ripple {
    position: relative;
    overflow: hidden;
}
.btn-ripple .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: scale(0);
    animation: ripple-anim 0.6s ease-out forwards;
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

.btn-shimmer {
    position: relative;
    overflow: hidden;
}
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-25deg);
    animation: shimmer-sweep 3s ease-in-out infinite;
}
@keyframes shimmer-sweep {
    0% { left: -60%; }
    100% { left: 120%; }
}

.btn-magnetic {
    transition: transform 0.2s ease-out;
}

/* ============================================
   HERO TEXT REVEAL
   ============================================ */
.hero-title .reveal-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotateX(-40deg);
    transform-origin: bottom;
    animation: text-reveal 0.8s var(--ease-out) forwards;
}
.hero-title .reveal-text:nth-child(1) { animation-delay: 0.1s; }
.hero-title .reveal-text:nth-child(2) { animation-delay: 0.25s; }
.hero-title .reveal-text:nth-child(3) { animation-delay: 0.4s; }
@keyframes text-reveal {
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ============================================
   TYPING EFFECT
   ============================================ */
.typing-text {
    display: inline;
    border-left: 3px solid var(--gold);
    animation: blink-cursor 0.8s step-end infinite;
}
@keyframes blink-cursor {
    50% { border-color: transparent; }
}

/* ============================================
   GRADIENT TEXT ANIMATION
   ============================================ */
.gold-gradient-text {
    background: linear-gradient(90deg, var(--gold-300), var(--gold-500), var(--gold-300), var(--gold-500));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
.parallax-section {
    position: relative;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    inset: -20% 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 0;
}
.parallax-section > .container { position: relative; z-index: 1; }

/* ============================================
   READING PROGRESS BAR
   ============================================ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-400));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* ============================================
   DECORATIVE FLOATING SHAPES
   ============================================ */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.floating-shape {
    position: absolute;
    border: 2px solid var(--gold);
    opacity: 0.08;
    border-radius: 50%;
    animation: float-drift 20s ease-in-out infinite;
}
.floating-shape:nth-child(1) {
    width: 300px; height: 300px;
    top: -80px; right: -80px;
    animation-delay: 0s;
    animation-duration: 25s;
}
.floating-shape:nth-child(2) {
    width: 200px; height: 200px;
    bottom: 10%; left: -60px;
    animation-delay: -5s;
    animation-duration: 20s;
}
.floating-shape:nth-child(3) {
    width: 150px; height: 150px;
    top: 40%; left: 20%;
    animation-delay: -10s;
    animation-duration: 18s;
    border-radius: 30% 70% 70% 30%;
}
.floating-shape:nth-child(4) {
    width: 100px; height: 100px;
    bottom: 20%; right: 20%;
    animation-delay: -7s;
    animation-duration: 22s;
    border-color: rgba(255,255,255,0.05);
    border-radius: 40% 60% 30% 70%;
}
@keyframes float-drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(40px, -30px) rotate(270deg); }
}

/* ============================================
   IMAGE REVEAL
   ============================================ */
.image-reveal {
    position: relative;
    overflow: hidden;
}
.image-reveal img {
    transform: scale(1.1);
    transition: transform 1.2s var(--ease-out), opacity 0.8s var(--ease-out);
    opacity: 0;
}
.image-reveal.revealed img {
    transform: scale(1);
    opacity: 1;
}
.image-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(0);
    transition: transform 1.2s var(--ease-out);
    z-index: 1;
}
.image-reveal.revealed::after {
    transform: translateX(100%);
}

/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 auto 32px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.section-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    animation: divider-shimmer 2s ease-in-out infinite;
}
@keyframes divider-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   STAGGER GRID ITEMS
   ============================================ */
.stagger-grid > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger-grid.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-grid.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-grid.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-grid.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-grid.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-grid.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-grid.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-grid.visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-grid.visible > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-grid.visible > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-grid.visible > * { opacity: 1; transform: translateY(0); }

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.stat-number, .hero-stat-number {
    display: inline-block;
}
.counter-counted {
    animation: counter-pop 0.4s var(--ease-out);
}
@keyframes counter-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ============================================
   SERVICE CARD 3D HOVER
   ============================================ */
.service-card-3d {
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.service-card-3d:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 40px rgba(212,175,55,0.06);
}

/* ============================================
   PREMIUM LOADING SKELETON
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   SMOOTH COUNTER
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    .stagger-grid > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
