/* Contact page microinteractions */
.booking-button, .form-submit {
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.booking-button:hover, .form-submit:hover {
    background: #444;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px) scale(1.03);
}
.booking-option, .faq-item {
    transition: box-shadow 0.2s, transform 0.15s;
}
.booking-option:hover, .faq-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    transform: translateY(-2px) scale(1.02);
}
/* Complete Website Redesign - Elegant Minimalist Style */

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

:root {
    /* Color System */
    --primary-white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-primary: #2C2C2C;
    --text-secondary: #666666;
    --accent-brown: #9B7F61;
    --pure-black: #000000;

    /* Typography Scale */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;

    /* Breakpoints */
    --mobile: 768px;
    --tablet: 1024px;
    --desktop: 1200px;
    --large: 1400px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

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

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

/* Container System */
.container {
    max-width: var(--large);
    margin: 0 auto;
    padding: 0 5%;
}

.content-section {
    padding: var(--space-xxl) 0;
}

/* Image System */
img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    max-width: 100%;
    height: auto;
    /* Performance optimizations */
    will-change: filter;
    transform: translateZ(0);
    /* Force hardware acceleration */
}

img:hover {
    filter: grayscale(80%);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-serif {
    font-family: var(--font-serif);
}

.text-sans {
    font-family: var(--font-sans);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

/* Reset existing styles */
.top-bar,
.header,
.nav-container,
.nav-menu,
.hero,
.intro-section,
.services-section,
.about-section,
.footer {
    all: unset;
    display: block;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-brown);
}

/* Lists */
ul,
ol {
    list-style: none;
}

/* Buttons */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Form Elements */
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-xxl: 4rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    p {
        font-size: 1rem;
    }
}

/* Hero Section - Elegant Minimalist Design */
.hero {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    background: var(--primary-white);
    padding: 0 5%;
    margin-top: 0px;
    /* Reverted back to previous value */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    max-width: var(--large);
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.hero-text {
    padding-right: var(--space-lg);
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 0.9;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.hero-description {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    /* Position to show the top part (head) of the image */
    filter: grayscale(100%);
}

/* Navigation - Minimal and Clean */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-sm) 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--large);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

/* Hamburger Menu Styles */
.nav-toggle {
    display: none;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: relative;
}

.hamburger {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.3s ease;
}

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

.hamburger::after {
    top: 8px;
}

/* Hamburger Animation */
.nav-toggle.open .hamburger {
    background-color: transparent;
}

.nav-toggle.open .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-brown);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.show {
        display: flex;
    }

    .hero-text h1 {
        font-size: clamp(3rem, 10vw, 5rem);
    }

    .hero-image img {
        height: 300px;
    }
}

/* Con
tent Sections - Clean and Minimal */
.content-section {
    padding: var(--space-xxl) 5%;
    max-width: var(--desktop);
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--space-xl);
    font-style: italic;
    color: var(--text-primary);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* Card System */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.content-card {
    background: var(--primary-white);
    padding: var(--space-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: var(--space-md);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* Introduction Section */
.intro-section {
    padding: var(--space-xxl) 5%;
    background: var(--primary-white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    max-width: var(--desktop);
    margin: 0 auto;
    align-items: center;
}

.intro-text {
    padding-right: var(--space-lg);
}

.intro-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
}

/* Services Section */
.services-section {
    padding: var(--space-xxl) 5%;
    background: var(--light-gray);
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.services-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    line-height: 1.1;
    font-style: italic;
}

.services-header h3 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    max-width: var(--desktop);
    margin: 0 auto;
}

.service-card {
    background: var(--primary-white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.service-card:hover .service-image {
    filter: grayscale(70%);
}

.service-content {
    padding: var(--space-lg);
    text-align: center;
}

.service-content h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.service-arrow {
    color: var(--accent-brown);
    font-size: 1.5rem;
    margin-top: var(--space-sm);
}

/* About Section */
.about-section {
    padding: var(--space-xxl) 5%;
    background: var(--primary-white);
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-xxl);
    max-width: var(--desktop);
    margin: 0 auto;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.about-text h3 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* Responsive Content Sections */
@media (max-width: 1024px) {

    .intro-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .intro-text,
    .about-text {
        padding-right: 0;
        text-align: center;
    }

    .card-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: var(--space-xl) var(--space-md);
    }

    .intro-image img,
    .about-image {
        height: 300px;
        object-position: top;  /* Show faces on mobile */
    }

    .service-image {
        height: 250px;
        object-position: top;  /* Show faces on mobile */
    }

    /* Ensure hero image shows faces on mobile */
    .hero-image img {
        object-position: top;
    }
}

/* Butto
ns and Interactive Elements */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-primary {
    background-color: var(--accent-brown);
    color: var(--primary-white);
    border: 2px solid var(--accent-brown);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-brown);
    transform: translateY(-2px);
}

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

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

.btn-minimal {
    background: none;
    color: var(--text-primary);
    border: none;
    border-bottom: 1px solid transparent;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.btn-minimal:hover {
    color: var(--accent-brown);
    border-bottom-color: var(--accent-brown);
}

/* Form Elements */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--primary-white);
    border: 1px solid #E5E5E5;
    border-radius: 0;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-brown);
    box-shadow: 0 0 0 2px rgba(155, 127, 97, 0.1);
}

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

/* Links */
.link {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.link:hover {
    color: var(--accent-brown);
    border-bottom-color: var(--accent-brown);
}

.link-accent {
    color: var(--accent-brown);
    border-bottom: 1px solid var(--accent-brown);
}

.link-accent:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* Focus States for Accessibility */
.btn:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.nav-link:focus,
.link:focus {
    outline: 2px solid var(--accent-brown);
    outline-offset: 2px;
}

/* Interactive Cards */
.interactive-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.interactive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-brown);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* En
hanced Responsive Design System */

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-text h1 {
        font-size: 8rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {

    .hero-content,
    .intro-content,
    .about-content {
        gap: var(--space-xl);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }

    .hero-text {
        order: 2;
        padding-right: 0;
    }

    .hero-image {
        order: 1;
    }

    .intro-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .intro-text,
    .about-text {
        padding-right: 0;
    }

    .services-grid,
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-xxl: 4rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .navigation {
        padding: var(--space-sm) var(--space-md);
    }

    .nav-menu {
        display: none;
        /* Will implement mobile menu later */
    }

    .hero {
        padding: var(--space-xl) var(--space-md);
        min-height: auto;
        margin-top: 80px;
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: var(--space-md);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: var(--space-lg);
        line-height: 1.6;
    }

    .hero-image img,
    .intro-image img,
    .about-image {
        height: 350px;
        object-position: top;
        margin-bottom: var(--space-md);
    }

    .service-image {
        height: 200px;
        object-position: top;
    }

    .content-section {
        padding: var(--space-xl) var(--space-md);
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: var(--space-lg);
    }

    .services-grid,
    .card-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-content,
    .content-card {
        padding: var(--space-md);
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-xxl: 3rem;
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 15vw, 4rem);
        letter-spacing: 0.05em;
    }

    .hero-image img {
        height: 200px;
    }

    .section-title {
        font-size: clamp(1.2rem, 8vw, 2rem);
    }

    .service-content h4 {
        font-size: 1rem;
    }

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

/* Print Styles */
@media print {
    .navigation {
        display: none;
    }

    .hero {
        min-height: auto;
        page-break-after: always;
    }

    .content-section {
        padding: 2rem 0;
    }

    .service-card,
    .content-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    img {
        filter: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --accent-brown: #8B4513;
    }

    .service-card,
    .content-card {
        border: 2px solid var(--text-primary);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* S
ubtle Animations and Micro-interactions */

/* Smooth page transitions */
html {
    scroll-behavior: smooth;
}

/* Enhanced hover effects */
.nav-link {
    position: relative;
    overflow: hidden;
}

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

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

/* Card hover animations */
.service-card,
.content-card {
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover,
.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button animations */
.btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Image hover effects */
.hero-image img,
.intro-image img,
.about-image,
.service-image {
    transition: all 0.4s ease;
}

.hero-image:hover img,
.intro-image:hover img,
.about-image:hover,
.service-card:hover .service-image {
    transform: scale(1.02);
    filter: grayscale(70%);
}

/* Text animations on scroll */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to elements */
.hero-text {
    animation: slideInFromLeft 0.8s ease-out;
}

.hero-image {
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

.section-title {
    animation: fadeInScale 0.6s ease-out;
}

/* Staggered animations for cards */
.service-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.service-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.service-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Loading animation for images */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Smooth focus transitions */
*:focus {
    transition: outline 0.2s ease;
}

/* Parallax effect for hero section */
.hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Subtle pulse animation for accent elements */
@keyframes subtlePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.service-arrow {
    animation: subtlePulse 2s ease-in-out infinite;
}

/* Smooth scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-brown);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .hero-text,
    .hero-image,
    .section-title,
    .service-card {
        animation: none;
    }

    .service-arrow {
        animation: none;
    }
}

/* Footer - Minimal and Clean */
.footer {
    background-color: var(--primary-white);
    color: var(--text-primary);
    padding: var(--space-xl) 0 var(--space-lg);
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    margin-bottom: var(--space-lg);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-brown);
}

.footer-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid var(--light-gray);
    padding-top: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* CTA Section - Elegant Call to Action */
.cta-section {
    padding: var(--space-xxl) 0;
    background-color: var(--light-gray);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-brown);
    color: var(--primary-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: var(--primary-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-submit {
    background-color: var(--accent-brown);
    color: var(--primary-white);
    padding: 1rem 2rem;
    border: none;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: var(--space-md);
}

.form-submit:hover {
    background-color: var(--text-primary);
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: var(--space-md);
    }

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

    .contact-form {
        padding: var(--space-md);
    }
}

/* Pack
ages Grid - 3 columns in one row */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

/* Package Card with aligned buttons */
.package-card {
    background: var(--primary-white);
    padding: var(--space-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.package-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-features {
    flex-grow: 1;
    margin-bottom: var(--space-lg);
}

.package-footer {
    margin-top: auto;
}

/* Responsive packages grid */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}