/* ============================================
   AKTAŞ YATIRIM - Ana CSS Dosyası
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #9B7A2E;
    --navy: #0A1628;
    --navy-mid: #0F1F3D;
    --navy-light: #162644;
    --white: #FFFFFF;
    --off-white: #F5F0E8;
    --gray: #8B8B8B;
    --light-gray: #F4F4F4;
    --text-dark: #1A1A2E;
    --text-light: #E0D9CC;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Arial, sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 20px 60px rgba(0,0,0,0.3);
    --shadow-gold: 0 8px 32px rgba(201,168,76,0.3);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--navy);
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

ul {
    list-style: none;
}

/* ---------- PRELOADER ---------- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 30px;
}

.pre-aktas {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 12px;
    animation: fadeInDown 0.8s ease forwards;
}

.pre-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: expandWidth 1s ease 0.4s forwards;
    transform: scaleX(0);
}

.pre-yatirim {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 8px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(201,168,76,0.2);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    background: var(--gold);
    width: 0;
    animation: loadProgress 2s ease forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes expandWidth {
    to { transform: scaleX(1); }
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* ---------- NAVIGATION ---------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    padding: 12px 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-aktas {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 6px;
}

.logo-yatirim {
    font-size: 0.6rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

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

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
}

.btn-instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253,29,29,0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.7rem;
}

/* ---------- HERO SECTION ---------- */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, #0D1E3E 50%, #0A1628 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
                radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 40px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-title-main {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 8px;
    line-height: 1;
}

.hero-title-sub {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 3px;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    padding: 20px 40px;
    text-align: center;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(201,168,76,0.3);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    vertical-align: super;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    color: var(--gold);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---------- SECTION COMMONS ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-light {
    background: var(--off-white);
    color: var(--text-dark);
}

.section-gold {
    background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
    color: var(--navy);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 5px 18px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dark-badge {
    background: rgba(10,22,40,0.15);
    border-color: rgba(10,22,40,0.4);
    color: var(--navy);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.dark-title {
    color: var(--navy);
}

.dark-title em {
    color: var(--navy-light) !important;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
}

.dark-divider {
    background: linear-gradient(90deg, transparent, var(--navy), transparent);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

/* ---------- FADE IN ANIMATION ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- ABOUT SECTION ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.about-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.05);
}

.about-address i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 4px;
}

.about-address strong {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.about-address span {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    padding: 28px;
    border: 1px solid rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.04);
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.08);
    transform: translateY(-4px);
}

.value-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.15);
    margin-bottom: 16px;
}

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

.value-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    font-weight: 300;
}

/* ---------- SECTORS GRID ---------- */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sector-card {
    position: relative;
    padding: 50px 40px;
    background: var(--bg);
    background-size: cover !important;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.sector-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.3) 100%);
    transition: opacity 0.3s ease;
}

.sector-card:hover {
    transform: scale(1.02);
}

.sector-card:hover::before {
    background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.5) 100%);
}

.sector-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.1);
    margin-bottom: 16px;
}

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

.sector-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.sector-card p {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sector-arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: var(--transition);
}

.sector-card:hover .sector-arrow {
    background: var(--gold);
    color: var(--navy);
}

/* ---------- DETAIL SECTIONS ---------- */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.detail-lead {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 20px;
}

.detail-content p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.feature-list {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.04);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.08);
}

.feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 4px;
    font-weight: 500;
}

.feature-item span {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    font-weight: 300;
}

.projects-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid rgba(201,168,76,0.1);
    background: rgba(201,168,76,0.03);
    transition: var(--transition);
}

.project-item:hover {
    border-color: rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.07);
    transform: translateX(4px);
}

.project-item i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.project-item strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.project-item span {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    font-weight: 300;
}

/* ---------- HOTEL SECTION ---------- */
.hotel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hotel-location i {
    color: var(--navy);
    font-size: 1rem;
}

.hotel-location span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--navy-mid);
    text-transform: uppercase;
}

.hotel-desc {
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 400;
    opacity: 0.85;
}

.room-types h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
    opacity: 0.6;
}

.room-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(10,22,40,0.07);
    border: 1px solid rgba(10,22,40,0.1);
    transition: var(--transition);
}

.room-card:hover {
    background: rgba(10,22,40,0.12);
    transform: translateX(4px);
}

.featured-room {
    background: rgba(10,22,40,0.12);
    border-color: rgba(10,22,40,0.25);
}

.room-card i {
    color: var(--navy);
    font-size: 1.3rem;
    flex-shrink: 0;
    opacity: 0.7;
}

.room-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 2px;
    font-weight: 600;
}

.room-card p {
    font-size: 0.78rem;
    color: var(--navy);
    opacity: 0.6;
    font-weight: 300;
    margin: 0;
}

.hotel-facilities h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 24px;
    opacity: 0.6;
}

.facility-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(10,22,40,0.06);
    border: 1px solid rgba(10,22,40,0.08);
    transition: var(--transition);
}

.facility-item:hover {
    background: rgba(10,22,40,0.1);
    transform: translateX(4px);
}

.facility-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,22,40,0.1);
    flex-shrink: 0;
}

.facility-icon i {
    color: var(--navy);
    font-size: 1rem;
}

.facility-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 2px;
    font-weight: 600;
}

.facility-item p {
    font-size: 0.78rem;
    color: var(--navy);
    opacity: 0.6;
    font-weight: 300;
    margin: 0;
}

/* ---------- BEACH SECTION ---------- */
.beach-section {
    background: linear-gradient(180deg, var(--navy) 0%, #0D1A30 100%);
}

.beach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.beach-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.beach-location i {
    color: var(--gold);
    font-size: 1rem;
}

.beach-location span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

.beach-lead {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 16px;
}

.beach-content p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.beach-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.beach-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
}

.beach-feature i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.beach-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.beach-image-main {
    position: relative;
    margin-bottom: 12px;
}

.beach-image-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.beach-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(10,22,40,0.85);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.beach-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.beach-image-grid img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* ---------- AUTOMOTIVE SECTION ---------- */
.auto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.auto-lead {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.auto-content p {
    color: var(--gray);
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.auto-principles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.principle-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px;
    border: 1px solid rgba(10,22,40,0.1);
    background: rgba(10,22,40,0.04);
    transition: var(--transition);
}

.principle-card:hover {
    border-color: rgba(10,22,40,0.2);
    background: rgba(10,22,40,0.07);
    transform: translateX(4px);
}

.principle-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(10,22,40,0.2);
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
}

.principle-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.principle-text p {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

.auto-image {
    position: relative;
}

.auto-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.auto-overlay {
    padding: 28px;
    background: var(--navy);
    border-top: 2px solid var(--gold);
}

.auto-overlay-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.auto-brands {
    margin-top: 20px;
}

.brand-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
}

.brand-note i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.brand-note span {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* ---------- CONTACT SECTION ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    flex-shrink: 0;
}

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

.contact-details strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-details span {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact-details a {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s;
}

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

.map-container {
    margin-top: 24px;
    border: 1px solid rgba(201,168,76,0.2);
    overflow: hidden;
}

/* ---------- CONTACT FORM ---------- */
.contact-form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 40px;
}

.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--navy-mid);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-success {
    margin-top: 16px;
    padding: 16px;
    background: rgba(78,175,74,0.15);
    border: 1px solid rgba(78,175,74,0.4);
    color: #7EE07A;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------- FOOTER ---------- */
footer {
    background: #040D1A;
    border-top: 1px solid rgba(201,168,76,0.15);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 280px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,168,76,0.3);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-links h5,
.footer-contact-info h5 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    transition: color 0.3s;
}

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

.footer-contact-info p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

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

.footer-contact-info a {
    color: rgba(255,255,255,0.45);
    transition: color 0.3s;
}

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

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: center;
}

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

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 500;
}

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

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ---------- PARTICLES ANIMATION ---------- */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1.5); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 24px;
    }

    section {
        padding: 70px 0;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--navy-mid);
        border-left: 1px solid rgba(201,168,76,0.2);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        z-index: 999;
        transition: transform 0.3s ease;
        transform: translateX(100%);
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
    }

    .about-grid,
    .detail-grid,
    .hotel-grid,
    .beach-grid,
    .auto-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-stats {
        gap: 0;
    }

    .hero-stat {
        padding: 16px 20px;
    }

    .hero-stat-divider {
        height: 40px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

@media (max-width: 600px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        flex: 1;
        min-width: 120px;
        padding: 12px;
    }

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

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

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

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

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

    .contact-form-wrap {
        padding: 24px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-title-main {
        letter-spacing: 4px;
    }
}
