@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0f2233;       /* Deep Aegean Ocean Slate */
    --primary-light: #1c364e; /* Soft Slate Navy */
    --accent: #c59b6d;        /* Sunburned Gold / Sand Terracotta */
    --accent-hover: #ad8154;  /* Deepened Earthy Gold */
    --accent-light: #faf5ee;  /* Bleached Warm Linen Cream */
    --accent-glow: rgba(197, 155, 109, 0.2);
    --text-dark: #2c3844;     /* Charcoal with a hint of navy */
    --text-muted: #5e6d7d;    /* Soft Coastal Mist */
    --bg-light: #f7f4ef;      /* Greek Linen Off-White */
    --bg-card: #ffffff;
    --white: #ffffff;
    --border-color: #e8e2d9;  /* Soft Sandy Border */
    --font-serif: "Cormorant Garamond", serif;
    --font-display: "Playfair Display", serif;
    --font-sans: "Plus Jakarta Sans", sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s ease;
    --shadow-sm: 0 4px 10px rgba(15, 34, 51, 0.02);
    --shadow-md: 0 12px 30px rgba(15, 34, 51, 0.05);
    --shadow-lg: 0 20px 50px rgba(15, 34, 51, 0.09);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-family: var(--font-serif);
    font-weight: 400;
}

/* Responsive Containers */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

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

.section-padding {
    padding: 120px 0;
}

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

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-title span {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.section-subtitle-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

/* Buttons and Links */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-accent:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 34, 51, 0.15);
}

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

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

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

.btn-outline-gold:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--accent-glow);
}

/* Elegant Header Navigation */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.scrolled {
    position: fixed;
    background-color: rgba(247, 244, 239, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

header.scrolled .nav-links a {
    color: var(--primary);
}

header.scrolled .nav-links a:hover {
    color: var(--accent);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Beautiful Luxury Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-fast);
}

.logo:hover .logo-icon {
    background-color: var(--accent);
}

.logo-icon svg {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    width: 22px;
    height: 22px;
    transition: var(--transition-fast);
}

.logo:hover .logo-icon svg {
    stroke: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
    transition: var(--transition-fast);
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 2px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links .btn-cta {
    padding: 12px 38px; /* Increased left/right padding */
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
    padding: 5px;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

header.scrolled .mobile-nav-toggle span {
    background-color: var(--primary);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-smooth);
        z-index: 1050;
        padding: 40px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--primary) !important;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
    
    .nav-links .btn {
        width: 100%;
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Captivating Hero Section */
.hero {
    position: relative;
    z-index: 2; /* Sit above the specs section */
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column; /* Vertically stack content and booking widget on mobile */
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden; /* Clips the Ken Burns image zoom */
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 30s infinite ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 34, 51, 0.45) 0%, rgba(15, 34, 51, 0.3) 50%, rgba(15, 34, 51, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 60px auto; /* Centered block */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(46px, 7vw, 84px); /* Bigger size */
    font-weight: 700; /* Bold */
    text-align: center; /* Centered */
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
}

.hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
    color: var(--accent-light);
}

/* Floating Booking Widget Funnel */
.booking-widget-wrapper {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1050px;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1.2s forwards 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.booking-widget {
    background-color: var(--white);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.booking-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
}

.booking-field:last-of-type {
    border-right: none;
}

.booking-field label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 6px;
}

.booking-field span, .booking-field input, .booking-field select {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-sans);
}

.booking-field select {
    cursor: pointer;
    width: 100%;
}

.booking-field input[type="date"] {
    cursor: pointer;
    width: 100%;
}

.booking-widget .btn-cta {
    padding: 16px 36px;
    border-radius: 8px;
    animation: subtle-pulse 2s infinite ease-in-out;
}

@media (max-width: 991px) {
    .booking-widget-wrapper {
        position: relative;
        bottom: 0;
        left: 0;
        right: auto;
        margin: 40px auto 0 auto;
        transform: none;
        width: 100%;
        padding: 0 20px;
    }
    
    .booking-widget {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 30px;
    }
    
    .booking-field {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 16px;
    }
    
    .booking-widget .btn-cta {
        width: 100%;
    }
    
    .hero {
        height: auto;
        padding: 160px 0 100px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(197, 155, 109, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(197, 155, 109, 0.6);
    }
}

/* Key Property Metrics/Specs */
.specs {
    position: relative;
    z-index: 1; /* Sit below the hero section */
    background-color: var(--white);
    padding: 100px 0 60px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.spec-card {
    text-align: center;
    padding: 20px;
    transition: var(--transition-fast);
    position: relative;
}

.spec-card::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background-color: var(--border-color);
}

.spec-card:last-child::after {
    display: none;
}

.spec-icon {
    margin-bottom: 16px;
    color: var(--accent);
    display: flex;
    justify-content: center;
}

.spec-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
}

.spec-card h3 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 36px);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.spec-card p {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spec-card::after {
        display: none;
    }
}

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

/* Immersive Carousels (Villa & Area Gallery) */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background-color: var(--primary);
    aspect-ratio: 16/9;
    max-height: 650px;
}

@media (max-width: 768px) {
    .gallery-container {
        aspect-ratio: 4/3;
    }
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c1824; /* Sleek dark background for letterboxing */
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fit completely inside the container */
    transition: var(--transition-smooth);
}

.slide-item:hover img {
    transform: scale(1.03);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(15, 34, 51, 0.8) 0%, rgba(15, 34, 51, 0) 100%);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.3s;
}

.slide-item.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    z-index: 10;
    color: var(--primary);
}

.gallery-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.gallery-btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.gallery-btn.prev {
    left: 30px;
}

.gallery-btn.next {
    right: 30px;
}

@media (max-width: 768px) {
    .gallery-btn {
        width: 44px;
        height: 44px;
    }
    
    .gallery-btn.prev {
        left: 15px;
    }
    
    .gallery-btn.next {
        right: 15px;
    }
}

/* Gallery Indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background-color: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* Meet the Host Section (Magazine-style layout) */
.host-section {
    background-color: var(--white);
}

.host-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.host-img-container {
    position: relative;
}

.host-img-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    border-radius: 12px;
    z-index: 1;
}

.host-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    display: block;
}

.host-content-wrapper {
    padding-left: 20px;
}

.host-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.8;
}

.host-signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 28px;
    color: var(--accent);
    margin-top: 32px;
}

@media (max-width: 991px) {
    .host-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .host-content-wrapper {
        padding-left: 0;
    }
    
    .host-img-frame {
        display: none;
    }
}

/* Editorial Magazine Cards (Attractions & Activities) */
.explore-section {
    background-color: var(--accent-light);
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.tab-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background-color: var(--white);
}

.tab-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px var(--accent-glow);
}

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

.article-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.article-img-wrapper {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.article-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

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

.article-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-tag {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.article-body h4 {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.article-body p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    font-family: var(--font-sans);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    align-self: flex-start;
}

.read-more svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--accent);
}

.read-more:hover svg {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

/* Contact and Map Section */
.contact-section {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h4 {
    font-size: 28px;
    margin-bottom: 28px;
    font-weight: 400;
}

.contact-details-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.contact-detail-text h5 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 15px;
    color: var(--text-dark);
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Luxe Floating-Label Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 18px 16px 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    background-color: var(--white);
    color: var(--text-dark);
    transition: var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 15px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-fast);
    pointer-events: none;
}

/* Floating Label Animation */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 5px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.submit-btn {
    width: 100%;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background-color: var(--primary);
    box-shadow: 0 8px 24px rgba(15, 34, 51, 0.15);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

/* Dedicated Subpage Article Hero & Contents */
.article-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 34, 51, 0.85) 0%, rgba(15, 34, 51, 0.3) 100%);
    z-index: -1;
}

.article-hero-content {
    padding-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-light);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.back-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: var(--transition-fast);
}

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

.back-link:hover svg {
    transform: translateX(-4px);
}

.article-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--white);
}

.article-meta {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
}

/* Article Body Content Grid */
.article-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
}

.article-text-content {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-dark);
}

.article-text-content p {
    margin-bottom: 30px;
}

.article-text-content h3 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    line-height: 1.25;
}

.article-quote {
    border-left: 2px solid var(--accent);
    padding-left: 30px;
    margin: 40px 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--primary);
    line-height: 1.6;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.media-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: var(--primary);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    cursor: pointer;
}

.video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.video-placeholder:hover .video-play-btn {
    background-color: var(--accent);
    color: var(--white);
    transform: scale(1.05);
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-left: 2px;
}

@media (max-width: 991px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Footer Section */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 40px 0;
    border-top: 4px solid var(--accent);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: var(--accent-light);
    font-size: 14px;
    opacity: 0.8;
}

.footer-links h5, .footer-cta h5 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 4px;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-cta p {
    color: var(--accent-light);
    font-size: 14px;
    opacity: 0.8;
}

.footer-cta .btn {
    align-self: flex-start;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 226, 217, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-light);
    font-size: 13px;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 34, 51, 0.98);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.lightbox-caption {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    margin-top: 16px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2010;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-btn {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 2010;
}

.lightbox-btn svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.lightbox-btn:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.lightbox-btn.prev {
    left: 40px;
}

.lightbox-btn.next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-btn.prev { left: 10px; }
    .lightbox-btn.next { right: 10px; }
    .lightbox-close { top: 20px; right: 20px; }
}
