/* ============================================================
   AILERON CHAUFFEUR – Modern Dark Prestige Design System
   Color Philosophy: Obsidian black + burnished gold
   Typography: Playfair Display (headings) + Raleway (UI)
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: oklch(0.08 0.002 285);
    color: oklch(0.92 0.005 80);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1280px;
    }
}

/* ============================================================
   UTILITIES & COMPONENTS
   ============================================================ */

.text-gold-gradient {
    background: linear-gradient(135deg, #d4a86a 0%, #f0d080 50%, #d4a86a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gold {
    background: linear-gradient(135deg, #d4a86a 0%, #e8c878 50%, #d4a86a 100%);
    color: #0a0a0a;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.75rem 1.75rem;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    display: inline-block;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.4s ease;
}

.btn-gold:hover::after {
    left: 100%;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e8c878 0%, #f0d080 50%, #e8c878 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 168, 106, 0.4);
}

.section-title-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.section-title-divider::before,
.section-title-divider::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a86a);
}

.section-title-divider::after {
    background: linear-gradient(90deg, #d4a86a, transparent);
}

.section-title-divider h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: #d4a86a;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #d4a86a;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #d4a86a;
    flex-shrink: 0;
}

.service-card {
    background: oklch(0.11 0.003 285);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a86a, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(212, 168, 106, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.navbar-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: rgba(240, 237, 232, 0.8);
    transition: color 0.2s ease;
    text-decoration: none;
}

.navbar-link:hover,
.navbar-link.active {
    color: #d4a86a;
}

.navbar-link.active {
    border-bottom: 1px solid #d4a86a;
    padding-bottom: 2px;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #d4a86a;
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.navbar-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .navbar-desktop {
        display: flex;
    }
}

.navbar-icons {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .navbar-icons {
        display: flex;
    }
}

.navbar-icons a {
    color: #d4a86a;
    cursor: pointer;
    transition: transform 0.2s;
}

.navbar-icons a:hover {
    transform: scale(1.1);
}

.navbar-book-btn {
    background: #d4a86a;
    color: #000;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.navbar-book-btn:hover {
    background: #f0d080;
}

.navbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #d4a86a;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
}

@media (min-width: 1024px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid #d4a86a;
    animation: slideDown 0.3s ease;
}

.navbar-mobile.open {
    display: flex;
}

.navbar-mobile a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: rgba(240, 237, 232, 0.8);
    text-decoration: none;
    cursor: pointer;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 168, 106, 0.2);
}

.navbar-mobile-btn {
    background: #d4a86a;
    color: #000;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.3) 100%);
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12rem;
    background: linear-gradient(to bottom, transparent, rgba(10,10,10,0.95));
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: #c9a84c;
    animation: pulse 2s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.hero-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-stars svg {
    width: 18px;
    height: 18px;
    fill: #d4a86a;
}

.hero-stars span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: #d4a86a;
    margin-left: 0.5rem;
    letter-spacing: 0.1em;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    color: #f0ede8;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title .gold {
    color: #c9a84c;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-service {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-service-sep {
    color: #d4a86a;
    font-size: 0.6rem;
}

.hero-service span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: rgba(240, 237, 232, 0.85);
    font-weight: 400;
    letter-spacing: 0.03em;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-call-btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: #c9a84c;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    background: transparent;
}

.hero-call-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: #c9a84c;
}

/* ============================================================
   BOOKING BAR
   ============================================================ */

.booking-bar {
    position: relative;
    z-index: 10;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 1.25rem 0;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: flex-end;
}

@media (min-width: 640px) {
    .booking-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .booking-form {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

.form-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    color: rgba(201, 168, 76, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}

.form-input-wrapper {
    position: relative;
}

.form-input-wrapper svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: #c9a84c;
    opacity: 0.6;
    pointer-events: none;
}

.form-input,
.form-select {
    width: 100%;
    padding-left: 2rem;
    padding-right: 0.75rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    font-size: 0.875rem;
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.2s;
}

.form-input::placeholder {
    color: #666;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #c9a84c;
}

.form-select {
    appearance: none;
    padding-right: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
}

.form-select option {
    background: #111;
    color: #e0e0e0;
}

.booking-btn {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.7rem 1rem;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
    background: oklch(0.08 0.002 285);
    border-top: 1px solid rgba(212, 168, 106, 0.2);
    border-bottom: 1px solid rgba(212, 168, 106, 0.2);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4a86a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: rgba(240, 237, 232, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services-section {
    padding: 5rem 0;
    background: oklch(0.08 0.002 285);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #f0ede8;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    color: rgba(240, 237, 232, 0.65);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */

.about-section {
    padding: 5rem 0;
    background: oklch(0.08 0.002 285);
    position: relative;
    overflow: hidden;
}

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

.about-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: rgba(240, 237, 232, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */

.why-choose-section {
    padding: 5rem 0;
    background: oklch(0.08 0.002 285);
    position: relative;
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 168, 106, 0.15);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    border-color: rgba(212, 168, 106, 0.4);
    background: rgba(212, 168, 106, 0.05);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon svg {
    width: 100%;
    height: 100%;
    stroke: #d4a86a;
    stroke-width: 1.5;
    fill: none;
}

.why-choose-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #f0ede8;
    margin-bottom: 0.75rem;
}

.why-choose-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: rgba(240, 237, 232, 0.7);
    line-height: 1.6;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
    padding: 5rem 0;
    background: oklch(0.08 0.002 285);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a86a;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #f0ede8;
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: rgba(240, 237, 232, 0.7);
}

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

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

.contact-form-group label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: #d4a86a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-group input,
.contact-form-group textarea {
    font-family: 'Raleway', sans-serif;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: #e0e0e0;
    transition: border-color 0.2s;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #d4a86a;
}

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

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    padding: 5rem 0;
    background: oklch(0.08 0.002 285);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f0ede8;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: rgba(240, 237, 232, 0.7);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-call-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: #c9a84c;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    background: transparent;
}

.cta-call-link:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: #c9a84c;
}

.cta-phone {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: #d4a86a;
    margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    background: oklch(0.06 0.001 285);
    border-top: 1px solid rgba(212, 168, 106, 0.2);
    padding: 3rem 0 1rem;
    color: rgba(240, 237, 232, 0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: rgba(240, 237, 232, 0.6);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 168, 106, 0.3);
    border-radius: 50%;
    color: #d4a86a;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: rgba(212, 168, 106, 0.1);
    border-color: #d4a86a;
}

.footer-column h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #f0ede8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

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

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

.footer-column a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: rgba(240, 237, 232, 0.6);
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #d4a86a;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 168, 106, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: rgba(240, 237, 232, 0.5);
}

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

.footer-bottom-links a {
    color: rgba(240, 237, 232, 0.6);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #d4a86a;
}

/* ============================================================
   POLICY PAGES (Privacy & Terms)
   ============================================================ */

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.policy-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #f0ede8;
    margin-bottom: 1rem;
}

.policy-header p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: rgba(240, 237, 232, 0.7);
}

.policy-content {
    font-family: 'Raleway', sans-serif;
    color: rgba(240, 237, 232, 0.8);
    line-height: 1.8;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4a86a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #f0ede8;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.policy-content ul,
.policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.75rem;
    background: #d4a86a;
    color: #000;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.policy-back-link:hover {
    background: #f0d080;
    transform: translateY(-2px);
}

/* ============================================================
   POLICY PAGE DECORATIVE PARTICLES
   ============================================================ */

.policy-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.policy-particle {
    position: absolute;
    border-radius: 50%;
    background: #d4a86a;
    animation: pulse 3s ease-in-out infinite;
}

/* ============================================================
   SECTION DECORATIVE PARTICLES
   ============================================================ */

.services-particles,
.about-particles,
.why-choose-particles,
.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-particle {
    position: absolute;
    border-radius: 50%;
    background: #d4a86a;
    animation: pulse 3s ease-in-out infinite;
}


// ============================================================
// MIDDLE SECTION DECORATIVE PARTICLES
// ============================================================

function createSectionParticles(containerId, count) {
    const container = document.getElementById(containerId);
    if (!container) return;

    for (let i = 0; i < count; i++) {
        const particle = document.createElement('div');
        particle.className = 'section-particle';
        particle.style.width = `${Math.random() * 3 + 1}px`;
        particle.style.height = particle.style.width;
        particle.style.left = `${Math.random() * 100}%`;
        particle.style.top = `${Math.random() * 100}%`;
        particle.style.opacity = Math.random() * 0.4 + 0.15;
        particle.style.animationDuration = `${Math.random() * 4 + 3}s`;
        particle.style.animationDelay = `${Math.random() * 2}s`;
        container.appendChild(particle);
    }
}

// Initialize all section particles
document.addEventListener('DOMContentLoaded', function() {
    createSectionParticles('services-particles', 15);
    createSectionParticles('about-particles', 12);
    createSectionParticles('why-choose-particles', 18);
    createSectionParticles('contact-particles', 15);
});

/* Service Card Background Images */
.services-grid > .service-card:nth-of-type(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/airport.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.services-grid > .service-card:nth-of-type(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/airport.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.services-grid > .service-card:nth-of-type(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/corporate.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.services-grid > .service-card:nth-of-type(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/wedding.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
