/* Premium Variables - Coast Pearls Brand Colors */
:root {
    /* Couleurs principales du logo */
    --coast-gold: #b8956f;        /* Doré du palmier et de la perle */
    --coast-gold-light: #d4c4a8;  /* Version claire du doré */
    --coast-gold-dark: #9a7a5a;   /* Version foncée du doré */
    --coast-blue: #1a365d;        /* Bleu de la maison */
    --coast-blue-dark: #0f2238;   /* Bleu foncé pour les contrastes */
    --coast-blue-light: #2d4a6f;  /* Bleu clair pour les nuances */
    
    /* Couleurs neutres */
    --coast-cream: #f5f1e8;       /* Crème du fond de logo */
    --coast-charcoal: #2c2c2c;    /* Charcoal du sous-titre */
    --coast-charcoal-light: #484848;
    
    /* Couleurs système */
    --white: #ffffff;
    --grey-light: #f8f6f3;
    --grey-medium: #8a8a8a;
    --black: #1a1a1a;
    
    --font-display: 'Libre Caslon Display', serif;
    --font-heading: 'Editorial New', serif;
    --font-body: 'Tenor Sans', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-quick: all 0.3s ease;
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    --border-radius: 2px;
    --max-width: 1400px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--coast-charcoal);
    background: var(--white);
    overflow-x: hidden;
    letter-spacing: 0.02em;
}

::selection {
    background: var(--coast-gold-light);
    color: var(--coast-charcoal);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 60px;
}

.container-fluid {
    padding: 0 40px;
}

/* Section Headers */
.section-header {
    margin-bottom: 80px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coast-gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.section-title {
    font-size: clamp(48px, 5vw, 72px);
    font-family: var(--font-display);
    color: var(--coast-charcoal);
    margin-bottom: 30px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--coast-charcoal-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Premium Header */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
    transition: var(--transition-smooth);
    height: 140px;
}

.premium-header.scrolled {
    height: 100px;
    box-shadow: var(--shadow-soft);
}

.premium-nav {
    height: 100%;
}

.nav-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    width: 300px;
    height: 110px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.premium-header.scrolled .brand-logo img {
    width: 220px;
    height: 80px;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-link {
    text-decoration: none;
    color: var(--coast-charcoal);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    transition: var(--transition-quick);
    padding: 8px 0;
}

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

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

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

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

.nav-language {
    color: var(--coast-charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--coast-blue);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius);
    transition: var(--transition-quick);
}

.nav-cta:hover {
    background: var(--coast-blue-dark);
    transform: translateY(-2px);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* Hero Section */
.hero-refined {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 2s ease-out;
}

.hero-refined:hover .hero-image {
    transform: scale(1);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(26, 54, 93, 0.2) 0%, 
        rgba(26, 54, 93, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding-top: 160px;
}

.hero-title {
    font-size: clamp(56px, 7vw, 96px);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 32px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 60px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
}

.feature {
    text-align: center;
}

.feature-number {
    display: block;
    font-size: 48px;
    font-family: var(--font-display);
    color: var(--coast-gold-light);
    margin-bottom: 8px;
}

.feature-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

.feature-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
}

/* Style uniforme pour tous les boutons Découvrir */
.discover-btn,
.scroll-indicator.discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--coast-blue);
    color: var(--white) !important;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: var(--transition-quick);
    animation: none;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.discover-btn:hover,
.scroll-indicator.discover-btn:hover {
    background: var(--coast-blue-dark);
    transform: translateX(-50%) translateY(-2px);
}

.discover-btn span {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Style pour le bouton Découvrir dans les propriétés */
.property-link.discover-btn {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: inline-flex;
    background: var(--coast-blue);
    padding: 12px 24px;
}

.property-link.discover-btn:hover {
    background: var(--coast-blue-dark);
    transform: translateY(-2px);
    gap: 20px;
}

/* About Section */
.about-refined {
    padding: 140px 0;
    background: var(--white);
}

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

.about-text {
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--coast-charcoal);
}

.about-text .lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--coast-blue);
    font-weight: 400;
    margin-bottom: 32px;
}

.about-values {
    display: grid;
    gap: 40px;
}

.value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-item i {
    font-size: 24px;
    color: var(--coast-gold);
    margin-top: 4px;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--coast-charcoal);
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--coast-charcoal-light);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
}

.visual-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.visual-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--coast-gold-light);
    border-radius: var(--border-radius);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 48px;
    font-family: var(--font-display);
    color: var(--coast-gold);
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--coast-charcoal);
}

/* Services Section */
.services-refined {
    padding: 140px 0;
    background: var(--grey-light);
}

.services-collection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.service-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--coast-gold), var(--coast-blue));
    transform: translateX(-100%);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--coast-blue) !important;
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 24px;
}

.service-title {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--coast-charcoal);
    margin-bottom: 20px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--coast-charcoal-light);
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-features span {
    padding: 6px 12px;
    background: var(--coast-cream);
    color: var(--coast-charcoal);
    font-size: 12px;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius);
}

/* Properties Section */
.properties-refined {
    padding: 140px 0;
    background: var(--white);
}

/* Gallery Layout */
.property-section {
    margin-bottom: 100px;
}

.property-section:last-of-type {
    margin-bottom: 80px;
}

.property-header {
    text-align: center;
    margin-bottom: 50px;
}

.property-header h3 {
    font-size: 36px;
    font-family: var(--font-display);
    color: var(--coast-charcoal);
    margin-bottom: 12px;
}

.property-header p {
    font-size: 18px;
    color: var(--coast-gold);
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

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

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 4px;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-quick);
    z-index: 10000;
    line-height: 1;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--coast-gold);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: var(--transition-quick);
    user-select: none;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--coast-gold);
    color: var(--coast-charcoal);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 18px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 75vh;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        bottom: 20px;
        font-size: 14px;
        padding: 10px 20px;
    }
}

.properties-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 80px;
}

.property-featured {
    position: relative;
    height: 600px;
}

.property-featured .property-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.property-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 54, 93, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 48px;
}

.property-details h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 12px;
}

.property-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 20px;
}

.property-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.property-stats span {
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-quick);
}

.property-link:hover {
    gap: 20px;
}

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

.property-item {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.property-item:hover img {
    transform: scale(1.1);
}

.property-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    color: var(--white);
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.property-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.property-info p {
    font-size: 14px;
    opacity: 0.9;
}

.properties-cta {
    text-align: center;
    margin-top: 80px;
}

.btn-refined {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--coast-blue);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.btn-refined:hover {
    background: var(--coast-blue-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Founders Section */
.founders-section {
    padding: 140px 0;
    background: var(--white);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-card {
    background: var(--grey-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.founder-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.founder-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.founder-card:hover .founder-image img {
    transform: scale(1.02);
}

.founder-info {
    padding: 30px;
    text-align: center;
}

.founder-info h3 {
    font-size: 28px;
    font-family: var(--font-display);
    color: var(--coast-charcoal);
    margin-bottom: 8px;
}

.founder-role {
    font-size: 14px;
    color: var(--coast-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 400;
}

.founder-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--coast-charcoal-light);
}

/* Owners Section */
.owners-section {
    padding: 140px 0;
    background: var(--coast-cream);
}

.owners-section .section-header {
    margin-bottom: 100px;
}

.owners-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    text-align: center;
    padding: 50px 32px;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--coast-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--coast-blue);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    background: var(--coast-gold);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: var(--font-display);
    color: var(--coast-charcoal);
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--coast-charcoal-light);
    max-width: 320px;
    margin: 0 auto;
}

.owners-process {
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius);
}

.owners-process h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--coast-charcoal);
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--coast-gold), var(--coast-blue));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--coast-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--coast-charcoal);
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--coast-charcoal-light);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--coast-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 56px;
    font-family: var(--font-display);
    color: var(--coast-gold-light);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-refined {
    padding: 140px 0;
    background: var(--white);
}

.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 48px;
    color: var(--coast-gold-light);
    margin-bottom: 40px;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--coast-charcoal);
    font-style: italic;
    margin-bottom: 40px;
}

.testimonial-author h4 {
    font-size: 20px;
    color: var(--coast-charcoal);
    margin-bottom: 8px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--coast-gold);
    letter-spacing: 0.05em;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--coast-gold);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-quick);
}

.nav-dot.active {
    background: var(--coast-gold);
}

/* Contact Section */
.contact-refined {
    padding: 140px 0;
    background: var(--grey-light);
}

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

.contact-details {
    margin-top: 60px;
}

.detail-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.detail-item i {
    font-size: 20px;
    color: var(--coast-gold);
    margin-top: 4px;
}

.detail-item h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--coast-charcoal);
    margin-bottom: 8px;
}

.detail-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--coast-charcoal-light);
}

.social-refined {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.social-refined a {
    width: 48px;
    height: 48px;
    border: 1px solid var(--coast-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coast-gold);
    text-decoration: none;
    transition: var(--transition-quick);
}

.social-refined a:hover {
    background: var(--coast-gold);
    color: var(--white);
}

/* Contact Form */
.contact-form-refined {
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.contact-form-refined h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--coast-charcoal);
}

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

.form-group {
    position: relative;
    margin-bottom: 32px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(44, 44, 44, 0.2);
    font-size: 16px;
    color: var(--coast-charcoal);
    transition: var(--transition-quick);
}

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

.form-group label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 16px;
    color: var(--coast-charcoal-light);
    pointer-events: none;
    transition: var(--transition-quick);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -8px;
    font-size: 12px;
    color: var(--coast-gold);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.privacy-check input {
    width: auto;
    margin: 0;
}

.privacy-check span {
    font-size: 14px;
    color: var(--coast-charcoal-light);
}

.btn-submit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--coast-blue);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 15px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background: var(--coast-blue-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer-refined {
    padding: 80px 0 40px;
    background: var(--coast-charcoal);
    color: var(--white);
}

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

.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.8;
}

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

.footer-info h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--coast-gold-light);
}

.footer-info p,
.footer-info a {
    display: block;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-quick);
}

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

.footer-info i {
    margin-right: 8px;
    color: var(--coast-gold);
}


.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .services-collection {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .owners-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .brand-logo img {
        width: 200px;
        height: 70px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 32px;
    }
    
    .feature-divider {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-collection {
        grid-template-columns: 1fr;
    }

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

    .property-header h3 {
        font-size: 28px;
    }

    .property-header p {
        font-size: 16px;
    }

    .properties-showcase {
        grid-template-columns: 1fr;
    }

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

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image {
        height: 250px;
    }

    .founder-info {
        padding: 25px 20px;
    }

    .founder-info h3 {
        font-size: 24px;
    }

    .founder-bio {
        font-size: 14px;
    }

    .owners-benefits {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 40px 60px;
    overflow-y: auto;
}

.mobile-menu-overlay.show {
    display: block;
}

.mobile-menu {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 32px;
}

.mobile-menu a {
    font-size: 24px;
    color: var(--coast-charcoal);
    text-decoration: none;
    font-family: var(--font-heading);
}

.mobile-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--coast-charcoal);
    cursor: pointer;
}