/* ═══════════════════════════════════════════════
   Halim Talha Çelik – Gayrimenkul Danışmanı
   Modern Premium Theme
═══════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
    --gold: #C9A154;
    --gold-light: #E4C47E;
    --gold-dark: #9A7838;
    --navy: #0D1B2A;
    --navy-mid: #132234;
    --navy-light: #1E3248;
    --white: #FFFFFF;
    --off-white: #F4F1EB;
    --text-main: #1A1A2E;
    --text-muted: #6B7280;
    --border: rgba(201, 161, 84, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;

    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(201, 161, 84, 0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ─── UTILITIES ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.dark-section {
    background: var(--navy);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    border-radius: 100px;
}

.section-label.light {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 20px;
}

.section-title em {
    color: var(--gold);
    font-style: normal;
}

.section-title.light {
    color: var(--white);
}

.section-sub {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.6);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 24px rgba(201, 161, 84, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 161, 84, 0.5);
    filter: brightness(1.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════ NAVBAR ═══════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(13, 27, 42, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.3);
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

#navbar.scrolled .nav-container {
    padding: 14px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-name {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.2;
}

.logo-tagline {
    display: block;
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.06);
}

.cta-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 100px;
    box-shadow: 0 2px 16px rgba(201, 161, 84, 0.35);
}

.cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(201, 161, 84, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ═══════════════════════ HERO ═══════════════════════ */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 161, 84, 0.15) 0%, transparent 60%),
        linear-gradient(160deg, #0D1B2A 0%, #132234 40%, #0D1B2A 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A154' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Two-column hero layout */
.hero-inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 48px 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.hero-content {
    position: relative;
    text-align: left;
}

/* Left-align the title flex items */
.hero-title {
    align-items: flex-start !important;
}

.hero-actions {
    justify-content: flex-start !important;
}

.hero-stats {
    justify-content: flex-start !important;
    display: inline-flex !important;
}

/* Hero photo column */
.hero-photo-col {
    flex-shrink: 0;
    position: relative;
}

.hero-photo-wrap {
    position: relative;
    width: 340px;
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    object-fit: cover;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.5));
}

.hero-photo-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(201, 161, 84, 0.5) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.hero-photo-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 27, 42, 0.9);
    border: 1px solid rgba(201, 161, 84, 0.5);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 161, 84, 0.12);
    border: 1px solid rgba(201, 161, 84, 0.35);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.82rem;
    color: var(--gold-light);
    margin-bottom: 28px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-separator {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-slogan {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.15;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 36px;
}

.hero-desc strong {
    color: var(--gold-light);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 161, 84, 0.2);
    border-radius: var(--radius-lg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 24px 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 32px;
}

.stat span:first-child,
.stat .stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
}

.stat span:nth-child(2) {
    font-size: 1.5rem;
    color: var(--gold-light);
    font-weight: 700;
    margin-left: -4px;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(201, 161, 84, 0.25);
    align-self: center;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding: 4px 0;
    cursor: pointer;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* ═══════════════════════ AOS (simple fade) ═══════════════════════ */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-28px);
}

[data-aos="fade-left"] {
    transform: translateX(28px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* ═══════════════════════ ABOUT ═══════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    display: flex;
    justify-content: center;
}

.about-card-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Profile photo frame */
.about-photo-frame {
    position: relative;
    width: 320px;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(201, 161, 84, 0.25),
        var(--shadow-glow);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-photo-frame:hover .about-photo {
    transform: scale(1.02);
}

/* Decorative corner accents */
.photo-accent {
    position: absolute;
    width: 48px;
    height: 48px;
    border-color: var(--gold);
    border-style: solid;
    pointer-events: none;
}

.photo-accent-tl {
    top: -10px;
    left: -10px;
    border-width: 3px 0 0 3px;
    border-radius: 6px 0 0 0;
}

.photo-accent-br {
    bottom: -10px;
    right: -10px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 6px 0;
}

.about-info-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-dark);
}

.about-info-chip svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.about-para {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-para strong {
    color: var(--text-main);
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.badge {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-dark);
}

/* About Values List */
.about-values {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
}

.about-value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-value-item:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.av-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-value-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 3px;
}

.about-value-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ═══════════════════════ YETKİNLİKLER ═══════════════════════ */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.skill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 161, 84, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 14px;
    transition: var(--transition);
}

.skill-card:hover {
    background: rgba(201, 161, 84, 0.09);
    border-color: rgba(201, 161, 84, 0.4);
    transform: translateY(-3px);
}

.skill-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.skill-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.skill-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.skill-level {
    font-size: 0.73rem;
    color: var(--gold-light);
    font-weight: 500;
}

/* ═══════════════════════ NEDEN BİZ ═══════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(201, 161, 84, 0.1);
    line-height: 1;
    position: absolute;
    top: 14px;
    right: 18px;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════ HARİTA ═══════════════════════ */
.map-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 161, 84, 0.25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

.map-info-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 161, 84, 0.2);
    border-radius: var(--radius-md);
    padding: 18px 24px;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.87rem;
    flex: 1;
    min-width: 180px;
}

.map-info-item>span:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ═══════════════════════ FEATURES ═══════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 161, 84, 0.15);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    cursor: default;
}

.feature-card:hover {
    background: rgba(201, 161, 84, 0.08);
    border-color: rgba(201, 161, 84, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ═══════════════════════ REGIONS ═══════════════════════ */
.regions-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.region-map-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.map-pin-area {
    display: flex;
    justify-content: center;
}

.map-city {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.city-svg {
    width: 160px;
    height: 160px;
}

.city-label {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold-dark);
    letter-spacing: 0.15em;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.region-tag {
    padding: 7px 15px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--white);
    transition: var(--transition);
    cursor: default;
}

.region-tag.active,
.region-tag:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.region-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.region-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.region-highlight:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.rh-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.region-highlight h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.region-highlight p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.region-highlight-desc {
    display: inline-block;
    margin-top: 6px;
}

/* ═══════════════════════ LISTINGS ═══════════════════════ */
.listings-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 161, 84, 0.15);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    cursor: pointer;
}

.platform-card:hover {
    background: rgba(201, 161, 84, 0.08);
    border-color: rgba(201, 161, 84, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.platform-card.special {
    border-color: rgba(201, 161, 84, 0.35);
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-emoji {
    font-size: 1.8rem;
}

.platform-name {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
}

.platform-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: auto;
}

.platform-btn .arrow {
    transition: transform 0.2s;
}

.platform-card:hover .arrow {
    transform: translateX(4px);
}

.special-btn {
    color: var(--gold-light);
}

.listing-note {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(201, 161, 84, 0.06);
    border: 1px dashed rgba(201, 161, 84, 0.3);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

.listing-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold);
}

.listing-note a {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ═══════════════════════ CONTACT ═══════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

a.contact-item:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text-main);
    transition: var(--transition);
    background: var(--white);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 161, 84, 0.12);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 40px 24px;
    color: var(--text-main);
}

.form-success span {
    font-size: 3rem;
}

.form-success p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 32px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201, 161, 84, 0.15);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.footer-tagline {
    display: block;
    font-size: 0.72rem;
    color: var(--gold-light);
}

.footer-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    font-style: italic;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-quick {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-link-quick:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.82rem;
}

.footer-powered {
    color: var(--gold-light);
}

/* ═══════════════════════ PARTICLES ═══════════════════════ */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(201, 161, 84, 0.6);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-col {
        order: -1;
    }

    .regions-wrap {
        grid-template-columns: 1fr;
    }

    /* Hero responsive */
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 120px 32px 80px;
        gap: 48px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        align-items: center !important;
    }

    .hero-actions {
        justify-content: center !important;
    }

    .hero-stats {
        justify-content: center !important;
        display: flex !important;
    }

    .hero-photo-col {
        display: flex;
        justify-content: center;
        order: -1;
    }

    .hero-photo-wrap {
        width: 260px;
    }

    /* New sections responsive 1024 */
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--navy-mid);
        padding: 80px 24px 40px;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        transform: translateX(100%);
    }

    .nav-links.open {
        display: flex;
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        padding: 20px 24px;
        gap: 8px;
    }

    .stat {
        padding: 0 16px;
    }

    .stat-divider {
        height: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .listings-platforms {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-quick {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .contact-form-card {
        padding: 28px 20px;
    }
}