/* ============================================
   PHUKET ELITE TRAVEL - Premium Minimal Theme
   Минималистичный премиальный дизайн
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    /* Нейтральная премиальная палитра - Light Theme */
    --color-white: #FFFFFF;
    --color-bg: #FAFAFA;
    --color-bg-alt: #F5F5F5;
    --color-border: #E5E5E5;
    --color-border-light: #EEEEEE;

    /* Текст */
    --color-text: #1A1A1A;
    --color-text-secondary: #666666;
    --color-text-muted: #999999;

    /* Акценты */
    --color-accent: #2C2C2C;
    --color-accent-hover: #000000;
    --color-gold: #B8A066;
    --color-gold-light: #D4C4A0;

    /* Тени - минимальные */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);

    /* Переходы */
    --transition: 0.3s ease;

    /* Радиусы */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;

    /* Контейнеры */
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Отступы секций */
    --section-padding: 120px;
    --section-padding-mobile: 80px;

    /* Цветовая схема */
    color-scheme: light;
}

/* ========== DARK THEME ========== */
[data-theme="dark"] {
    --color-white: #0F0F0F;
    --color-bg: #1A1A1A;
    --color-bg-alt: #242424;
    --color-border: #333333;
    --color-border-light: #2A2A2A;

    --color-text: #F5F5F5;
    --color-text-secondary: #A0A0A0;
    --color-text-muted: #707070;

    --color-accent: #F5F5F5;
    --color-accent-hover: #FFFFFF;
    --color-gold: #D4B896;
    --color-gold-light: #A89060;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);

    color-scheme: dark;
}

/* System preference dark mode */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --color-white: #0F0F0F;
        --color-bg: #1A1A1A;
        --color-bg-alt: #242424;
        --color-border: #333333;
        --color-border-light: #2A2A2A;

        --color-text: #F5F5F5;
        --color-text-secondary: #A0A0A0;
        --color-text-muted: #707070;

        --color-accent: #F5F5F5;
        --color-accent-hover: #FFFFFF;
        --color-gold: #D4B896;
        --color-gold-light: #A89060;

        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);

        color-scheme: dark;
    }
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(184, 160, 102, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(184, 160, 102, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 60%, rgba(100, 100, 100, 0.03) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    background-attachment: fixed;
    min-height: 100vh;
}

[data-theme="dark"] body {
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(212, 184, 150, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 184, 150, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) body {
        background-image:
            radial-gradient(ellipse at 20% 20%, rgba(212, 184, 150, 0.06) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 80%, rgba(212, 184, 150, 0.04) 0%, transparent 50%),
            radial-gradient(ellipse at 40% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
            url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    }
}

/* Animated background orbs */
.site-wrapper {
    position: relative;
    overflow-x: hidden;
}

.site-wrapper::before,
.site-wrapper::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.5;
}

.site-wrapper::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 160, 102, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float-orb 20s ease-in-out infinite;
}

.site-wrapper::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 160, 102, 0.1) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation: float-orb 25s ease-in-out infinite reverse;
}

[data-theme="dark"] .site-wrapper::before,
[data-theme="dark"] .site-wrapper::after {
    opacity: 0.3;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
}

p:last-child {
    margin-bottom: 0;
}

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

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

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

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
    background: transparent;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* Alternating section styles */
.section-gray {
    background: rgba(245, 245, 245, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .section-gray {
    background: rgba(30, 30, 30, 0.5);
    border-color: rgba(255, 255, 255, 0.03);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .section-gray {
        background: rgba(30, 30, 30, 0.5);
        border-color: rgba(255, 255, 255, 0.03);
    }
}

/* Glass effect for alternating sections */
.section-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .section-glass {
    background: rgba(40, 40, 40, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
}

.section-title {
    margin-bottom: 1rem;
}

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

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
    transition: var(--transition);
}

[data-theme="dark"] .site-header {
    background-color: rgba(15, 15, 15, 0.98);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .site-header {
        background-color: rgba(15, 15, 15, 0.98);
    }
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

@media (max-width: 768px) {
    .header-content {
        height: 70px;
    }
}

/* Logo */
.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation */
.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--color-text);
}

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.nav-menu li.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform var(--transition);
}

.nav-menu li.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    transform: translateX(-50%) translateY(10px);
    z-index: 1000;
    list-style: none;
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    border: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

/* Header CTA */
.header-cta .btn {
    font-size: 0.8125rem;
    padding: 0.75rem 1.5rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--color-text);
    color: var(--color-text);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.theme-toggle .icon-sun {
    display: none;
}

.theme-toggle .icon-moon {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .theme-toggle .icon-sun {
        display: block;
    }
    :root:not([data-theme="light"]) .theme-toggle .icon-moon {
        display: none;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .header-cta {
        display: none;
    }

    .main-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: var(--color-white);
        z-index: 999;
        padding: 100px 24px 40px;
        flex-direction: column;
    }

    .main-navigation.active {
        display: flex;
    }

    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-border-light);
    }

    .nav-menu li a {
        display: block;
        font-size: 1.125rem;
        padding: 1.25rem 0;
    }

    /* Mobile dropdown */
    .nav-menu li.has-dropdown > a::after {
        float: right;
        margin-top: 8px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        background: transparent;
        display: none;
        padding-left: 1rem;
    }

    .nav-menu li.has-dropdown:hover .dropdown-menu,
    .nav-menu li.has-dropdown.active .dropdown-menu {
        display: block;
        transform: none;
    }

    .dropdown-menu li a {
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .dropdown-menu li a:hover {
        background: transparent;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 0.9375rem;
}

.btn-full {
    width: 100%;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0.4) 100%
    );
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(15, 15, 15, 0.95) 0%,
        rgba(15, 15, 15, 0.85) 40%,
        rgba(15, 15, 15, 0.5) 100%
    );
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(15, 15, 15, 0.95) 0%,
            rgba(15, 15, 15, 0.85) 40%,
            rgba(15, 15, 15, 0.5) 100%
        );
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.9);
    }

    [data-theme="dark"] .hero-overlay {
        background: rgba(15, 15, 15, 0.9);
    }

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

    .hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 768px) and (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .hero-overlay {
        background: rgba(15, 15, 15, 0.9);
    }
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 140px 0 80px;
    background-color: var(--color-bg);
    text-align: center;
}

.page-header-large {
    position: relative;
    padding: 180px 0 120px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-medium {
    position: relative;
    padding: 140px 0 80px;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header-medium .page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-header-bg-villas {
    background-image: url('../images/header-villas.jpg');
}

.page-header-bg-yachts {
    background-image: url('../images/header-yachts.jpg');
}

.page-header-bg-tours {
    background-image: url('../images/header-tours.jpg');
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.85),
        rgba(255, 255, 255, 0.9)
    );
}

[data-theme="dark"] .page-header-overlay {
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0.85),
        rgba(15, 15, 15, 0.9)
    );
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .page-header-overlay {
        background: linear-gradient(
            to bottom,
            rgba(15, 15, 15, 0.85),
            rgba(15, 15, 15, 0.9)
        );
    }
}

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

.page-title {
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header-large {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .page-header-medium {
        padding: 120px 0 60px;
        min-height: auto;
    }
}

/* ========== ABOUT HERO ========== */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

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

.about-hero-content {
    text-align: center;
    padding: 100px 0 60px;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
}

/* About block: text + image side by side */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-block-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.about-block-text p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.about-block-text p:last-child {
    margin-bottom: 0;
}

.about-block-image {
    border-radius: 12px;
    overflow: hidden;
}

.about-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
    }

    .about-hero-content {
        padding: 80px 0 40px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

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

    .about-block-image {
        order: -1;
    }
}

/* ========== INTRO SECTION ========== */
.content-block {
    max-width: var(--container-narrow);
}

.content-block-centered {
    margin: 0 auto;
    max-width: 620px;
    text-align: left;
}

.content-block-centered h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

/* ========== КТО МЫ ========== */
.who-we-are-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.who-we-are-text:last-child {
    margin-bottom: 0;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.experience-list li {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--color-text);
    padding: 0.25rem 0;
}

.experience-list li::before {
    content: "— ";
    color: var(--color-primary);
}

.who-we-are-accent {
    font-weight: 600;
    color: var(--color-text);
}

/* ========== ШАГИ 2x2 ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    flex-shrink: 0;
}

.step-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.step-number {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 2;
}

.step-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
}

.step-card-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.step-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

/* CTA кнопка в секции */
.section-cta-btn {
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 1024px) {
    .services-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-preview {
        grid-template-columns: 1fr;
    }
}

/* Service Preview Cards - Full Image Style */
.service-preview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

/* Background Image */
.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-preview-card:hover .service-card-bg img {
    transform: scale(1.1);
}

/* Gradient Overlay */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 2;
    transition: var(--transition);
}

.service-preview-card:hover .service-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* Content */
.service-card-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.service-preview-card:hover .service-card-content {
    transform: translateY(-8px);
}

/* Label */
.service-card-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(184, 160, 102, 0.15);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

/* Title */
.service-preview-card h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.service-preview-card:hover h3 {
    color: var(--color-gold);
}

/* Description */
.service-preview-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    max-width: 90%;
}

/* Button */
.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-preview-card:hover .service-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.service-card-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
}

.service-card-btn svg {
    transition: transform 0.3s ease;
}

.service-preview-card:hover .service-card-btn svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-preview-card {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .service-preview-card {
        height: 350px;
    }

    .service-preview-card h3 {
        font-size: 1.5rem;
    }

    .service-card-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-block {
    padding: 3rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
}

.service-block h3 {
    margin-bottom: 1rem;
}

.service-block > p {
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.service-price {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
}

/* ========== CATEGORY GRID (Villas, Yachts) ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-md);
}

.category-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.category-card:hover .category-card-image img {
    transform: scale(1.03);
}

.category-card-content {
    padding: 1.5rem 2rem 2rem;
}

.category-card-content h3 {
    margin-bottom: 0.5rem;
}

.category-card-content p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.category-price {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ========== TOURS GRID ========== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

.tour-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.tour-card:hover {
    box-shadow: var(--shadow-md);
}

.tour-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.tour-card:hover .tour-card-image img {
    transform: scale(1.03);
}

.tour-card-content {
    padding: 1.5rem;
}

.tour-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tour-card-content p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.tour-price {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* ========== BENEFITS GRID ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-size: 0.875rem;
}

/* ========== ROUTES LIST ========== */
.routes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .routes-list {
        grid-template-columns: 1fr;
    }
}

.route-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
}

.route-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.route-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.route-duration {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    margin-left: 1rem;
}

/* ========== PROCESS TIMELINE ========== */
.process-timeline {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: var(--color-bg);
    border-radius: 50%;
}

.process-step-content h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step-content p {
    font-size: 0.9375rem;
}

@media (max-width: 640px) {
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .process-step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* ========== PRINCIPLES GRID ========== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
}

.principle-item {
    padding: 2rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
}

.principle-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.principle-item p {
    font-size: 0.875rem;
}

/* ========== VALUES GRID ========== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    padding: 2rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
}

.value-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 0.875rem;
}

/* ========== STATS ROW ========== */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

@media (max-width: 640px) {
    .stats-row {
        gap: 2rem;
    }

    .stat-item {
        flex: 1 1 40%;
    }

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

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

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
}

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

.about-image img {
    width: 100%;
    height: auto;
}

/* ========== WHY US GRID ========== */
/* Why Us Section */
.section-why-us {
    padding-top: calc(var(--section-padding) * 0.8);
    padding-bottom: calc(var(--section-padding) * 0.8);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 3.5rem;
}

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

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

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Us Cards - Full Image Style */
.why-us-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: default;
}

/* Background Image */
.why-us-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-us-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    filter: brightness(1);
}

.why-us-card:hover .why-us-card-bg img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Gradient Overlay */
.why-us-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 2;
    transition: background 0.5s ease;
}

.why-us-card:hover .why-us-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

/* Content */
.why-us-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.why-us-card:hover .why-us-card-content {
    transform: translateY(-8px);
}

/* Title */
.why-us-card-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.why-us-card:hover .why-us-card-content h3 {
    color: var(--color-gold);
}

/* Description */
.why-us-card-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    opacity: 0.8;
    transform: translateY(5px);
    transition: all 0.4s ease;
}

.why-us-card:hover .why-us-card-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Decorative corner */
.why-us-card::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 4;
    transition: all 0.4s ease;
    opacity: 0;
}

.why-us-card:hover::before {
    opacity: 1;
    border-color: var(--color-gold);
}

.why-us-card::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 4;
    transition: all 0.4s ease;
    opacity: 0;
}

.why-us-card:hover::after {
    opacity: 1;
    border-color: var(--color-gold);
}

@media (max-width: 640px) {
    .why-us-card {
        height: 280px;
    }

    .why-us-card-content h3 {
        font-size: 1.25rem;
    }
}

/* ========== STEPS GRID ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-item {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: var(--color-bg);
    border-radius: 50%;
}

.step-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    font-size: 0.875rem;
}

/* ========== CTA SECTION ========== */
.section-cta {
    background: linear-gradient(135deg, rgba(184, 160, 102, 0.1) 0%, rgba(184, 160, 102, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    border-top: 1px solid rgba(184, 160, 102, 0.15);
    border-bottom: 1px solid rgba(184, 160, 102, 0.15);
}

[data-theme="dark"] .section-cta {
    background: linear-gradient(135deg, rgba(212, 184, 150, 0.08) 0%, rgba(212, 184, 150, 0.03) 100%);
    border-color: rgba(212, 184, 150, 0.1);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ========== CONTACT LAYOUT ========== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 2.5rem;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-text);
    background-color: var(--color-white);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

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

.form-row {
    margin-bottom: 1rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.form-note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    margin-bottom: 0.5rem;
}

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

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

.contact-info-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-info-block p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: var(--color-bg);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    transition: var(--transition);
}

.contact-method:hover {
    background-color: var(--color-border-light);
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--color-text-secondary);
}

.contact-method-text {
    font-size: 0.9375rem;
}

/* ========== FOOTER ========== */
.site-footer {
    padding: 80px 0 40px;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border-light);
}

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

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand .logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    display: block;
    margin-bottom: 0.25rem;
}

.footer-brand .logo-subtitle {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.footer-menu ul {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.footer-menu a:hover {
    color: var(--color-text);
}

.footer-contact p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

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

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-text);
}

/* ========== SITE MAIN ========== */
.site-main {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .site-main {
        padding-top: 70px;
    }
}

/* Pages with hero don't need padding */
.home .site-main,
.page-template-front-page .site-main {
    padding-top: 0;
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

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

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

/* ========== ANIMATIONS ========== */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn 0.6s ease forwards;
    }

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

/* ========== WORDPRESS SPECIFIC ========== */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.alignwide {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ========== CONTACT PAGE - PREMIUM DESIGN ========== */

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

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

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

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.85) 100%);
}

.contact-hero-decor {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--color-bg);
    clip-path: ellipse(70% 100% at 50% 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.contact-hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
    }

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

    .contact-hero-subtitle {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0 120px;
    background: var(--color-bg);
}

.contact-layout-premium {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .contact-layout-premium {
        grid-template-columns: 1fr;
    }
}

/* Form Wrapper Reset */
.contact-layout-premium .contact-form-wrapper {
    width: 100%;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
}

/* Form Card Premium */
.contact-form-card-premium {
    width: 100%;
    background: var(--color-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-form-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border-light);
    width: 100%;
}

.form-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-card-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.form-card-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-text);
}

.form-card-header p {
    margin: 0.25rem 0 0;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* Form Premium */
.request-form-premium {
    width: 100%;
}

.request-form-premium .form-row {
    margin-bottom: 1.5rem;
    width: 100%;
}

.request-form-premium .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.request-form-premium .form-row-2 > .form-group-premium {
    min-width: 0;
    width: 100%;
}

.request-form-premium .form-row-2 > .form-group-premium input,
.request-form-premium .form-row-2 > .form-group-premium select {
    width: 100% !important;
}

@media (max-width: 576px) {
    .request-form-premium .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.form-group-premium {
    position: relative;
    width: 100%;
    min-width: 0;
}

.form-group-premium label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.form-group-premium.focused label {
    color: var(--color-gold);
}

.form-group-premium label .label-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group-premium label .label-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    transition: transform 0.3s;
}

.form-group-premium.focused label .label-icon svg {
    transform: scale(1.1);
}

.form-group-premium label .required {
    color: var(--color-gold);
    font-weight: 600;
}

.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
    width: 100% !important;
    max-width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-bg);
    color: var(--color-text);
    transition: all 0.3s;
    font-family: inherit;
    box-sizing: border-box;
    display: block;
}

.form-group-premium input:focus,
.form-group-premium select:focus,
.form-group-premium textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(184, 160, 102, 0.1);
}

.form-group-premium.error input,
.form-group-premium.error select,
.form-group-premium.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

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

.form-group-premium select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8A066' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form-group-premium .field-error {
    display: block;
    font-size: 0.8125rem;
    color: #dc3545;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    padding-left: 1.25rem;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Premium Submit Button */
.btn-premium-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-premium-submit:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 160, 102, 0.4);
}

.btn-premium-submit .btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.btn-premium-submit .btn-icon svg {
    width: 20px;
    height: 20px;
}

.btn-premium-submit:hover .btn-icon {
    transform: translateX(4px);
}

.btn-premium-submit .btn-loader {
    display: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-premium-submit.loading .btn-text,
.btn-premium-submit.loading .btn-icon {
    opacity: 0;
}

.btn-premium-submit.loading .btn-loader {
    display: block;
    position: absolute;
}

.btn-premium-submit:disabled {
    cursor: not-allowed;
}

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

/* Privacy Text */
.form-privacy-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 1.25rem;
    text-align: center;
}

.form-privacy-premium svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Error Message */
.form-error-premium {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Success State Premium */
.form-success-premium {
    text-align: center;
    padding: 3rem 2rem;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s ease;
    box-shadow: 0 10px 40px rgba(184, 160, 102, 0.4);
}

.success-circle svg {
    width: 50px;
    height: 50px;
    color: #fff;
    stroke-width: 3;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.form-success-premium h3 {
    font-size: 1.75rem;
    margin: 0 0 0.75rem;
    color: var(--color-text);
}

.form-success-premium p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.btn-secondary-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gold);
    background: transparent;
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-premium:hover {
    background: var(--color-gold);
    color: #fff;
}

/* Contact Info Premium */
.contact-info-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card-premium {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.info-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.info-card-header h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--color-text);
}

.info-card-badge {
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
}

.contact-items-premium {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item-premium:hover {
    background: var(--color-bg-alt);
    transform: translateX(4px);
}

.contact-item-premium.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

.contact-item-icon-premium {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-item-premium:hover .contact-item-icon-premium {
    transform: scale(1.05);
}

.contact-item-premium.whatsapp .contact-item-icon-premium {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-item-icon-premium svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-item-text {
    flex: 1;
}

.contact-item-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.contact-item-arrow {
    opacity: 0.3;
    transition: all 0.3s;
}

.contact-item-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--color-text);
}

.contact-item-premium:hover .contact-item-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Contact Features Premium */
.contact-features-premium {
    background: linear-gradient(135deg, var(--color-white), var(--color-bg));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--color-border-light);
}

.feature-item-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.feature-item-premium:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item-premium:first-child {
    padding-top: 0;
}

.feature-icon-premium {
    width: 44px;
    height: 44px;
    background: rgba(184, 160, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-premium svg {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
}

.feature-text-premium {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.feature-text-premium strong {
    font-size: 0.9375rem;
    color: var(--color-text);
}

.feature-text-premium span {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Location Card Premium */
.contact-location-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(184, 160, 102, 0.1), rgba(212, 196, 160, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(184, 160, 102, 0.2);
}

.contact-location-premium .location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-location-premium .location-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.contact-location-premium .location-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-location-premium .location-text strong {
    font-size: 1rem;
    color: var(--color-text);
}

.contact-location-premium .location-text span {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

@media (max-width: 968px) {
    .contact-form-card-premium {
        padding: 2rem;
    }

    .form-card-header {
        flex-direction: column;
        text-align: center;
    }
}
