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

:root {
    --burgundy: #8B4846;
    --burgundy-dark: #6B3636;
    --burgundy-light: #A55856;
    --cream: #FAF6F2;
    --cream-dark: #F5EFE7;
    --brown-dark: #4A2F2F;
    --text-dark: #2C2C2C;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader-spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 1.5s linear infinite;
}

.loader-spinner i {
    font-size: 2.5rem;
    color: white;
}

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

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

/* Header */
header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.sticky {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--burgundy);
    letter-spacing: 0.5px;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--burgundy);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--burgundy);
    padding-left: 2rem;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

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

.btn-book:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 72, 70, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--burgundy);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    background: white;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--cream);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    display: block;
   max-height: calc(100vh - 100px);
    overflow-y: scroll;
}

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

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-item .nav-link {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--text-dark);
}

.mobile-dropdown-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.8rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.mobile-dropdown-menu {
    background: var(--cream);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.active {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.7rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-dropdown-item:hover {
    background: var(--cream-dark);
    color: var(--burgundy);
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    color: var(--burgundy-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-btn {
    background: var(--burgundy);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--burgundy-dark);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 72, 70, 0.4);
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

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

/* Summer Section */
.summer-section {
    padding: 6rem 2rem;
    background: var(--burgundy);
    color: white;
}

.summer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.summer-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.summer-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.summer-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.summer-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.summer-btn {
    background: white;
    color: var(--burgundy);
    border: 2px solid white;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.summer-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background: white;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--burgundy-dark);
    margin-bottom: 3rem;
    line-height: 1.3;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    border-radius: 50%;
    overflow: hidden;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(139, 72, 70, 0.2);
    transition: all 0.5s ease;
}

.story-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(139, 72, 70, 0.3);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (min-width: 769px) and (max-width: 1023px) {
  .story-stats :nth-child(2) {
    display: none;
  }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 72, 70, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Choose Section */
.choose-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.choose-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 72, 70, 0.15);
}

.choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.choose-card:hover .choose-icon {
    transform: rotateY(360deg);
}

.choose-icon i {
    font-size: 2rem;
    color: white;
}

.choose-card h3 {
    font-size: 1.3rem;
    color: var(--burgundy-dark);
    margin-bottom: 1rem;
}

.choose-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Gallery Slider */
.gallery-section {
    padding: 0;
    position: relative;
}

.gallery-slider {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 72, 70, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay h2 {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slider-controls button {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--burgundy);
    font-size: 1.2rem;
}

.slider-controls button:hover {
    background: var(--burgundy);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    opacity: 1;
    transform: scale(1.3);
}

/* Perfect Section */
.perfect-section {
    height: 500px;
    background: linear-gradient(rgba(74, 47, 47, 0.8), rgba(74, 47, 47, 0.8)),
        url('/assets/images/photo-1526907279934-3c9d2e53170f-467313c3-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perfect-overlay {
    text-align: center;
    color: white;
}

.perfect-overlay h2 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.perfect-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.perfect-btn {
    background: white;
    color: var(--burgundy);
    border: 2px solid white;
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.perfect-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Embrace Section */
.embrace-section {
    padding: 6rem 2rem;
    background: white;
}

.embrace-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.embrace-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--burgundy-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.embrace-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.embrace-list li {
    font-size: 1.2rem;
    padding: 1rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.embrace-list li:hover {
    color: var(--burgundy);
    transform: translateX(10px);
}

.embrace-list li i {
    color: var(--burgundy);
    font-size: 1rem;
}

.embrace-btn {
    background: var(--burgundy);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.embrace-btn:hover {
    background: var(--burgundy-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 72, 70, 0.4);
}

.embrace-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.embrace-image:hover {
    transform: scale(1.03) rotate(-2deg);
}

/* Experts Section */
.experts-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.experts-container {
    max-width: 1400px;
    margin: 0 auto;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.expert-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 72, 70, 0.2);
}

.expert-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.expert-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(139, 72, 70, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expert-card:hover .expert-image::after {
    opacity: 1;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expert-card:hover .expert-image img {
    transform: scale(1.1);
}

.expert-card h3 {
    font-size: 1.3rem;
    color: var(--burgundy-dark);
    margin: 1.5rem 0 0.5rem;
}

.expert-card p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-section {
    padding: 6rem 2rem;
    background: white;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 72, 70, 0.15);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--burgundy);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: var(--burgundy-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 1rem;
    color: var(--burgundy-dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--burgundy);
    color: white;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    height: 300px;
    margin: 3rem 0;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.testimonial-card.active {
    opacity: 1;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 0 0.2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: var(--cream-dark);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 72, 70, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--burgundy-dark);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 2rem;
    color: var(--burgundy);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: var(--burgundy);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 72, 70, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: white;
    text-align: center;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-container p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: white;
    color: var(--burgundy);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: var(--brown-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--burgundy);
    transform: translateY(-3px);
}

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--burgundy-light);
    padding-left: 0.5rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: var(--burgundy-light);
    margin-top: 0.2rem;
}

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

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-bottom i {
    color: #FF6B6B;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--burgundy);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--burgundy-dark);
    transform: translateY(-5px);
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(rgba(139, 72, 70, 0.9), rgba(107, 54, 54, 0.9)),
        url('assets/images/photo-1604654894610-df63bc536371-1c1e8cae-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Content Section */
.content-section {
    padding: 6rem 2rem;
    background: white;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--burgundy-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ff0000;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Map */
.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

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

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(139, 72, 70, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: var(--cream);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--burgundy-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--cream-dark);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-dark);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 72, 70, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--burgundy);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--burgundy);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 72, 70, 0.2);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--burgundy-dark);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    color: var(--burgundy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--cream);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li i {
    color: var(--burgundy);
}

/* Coming Soon */
.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: white;
    text-align: center;
    padding: 2rem;
}

.coming-soon-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    min-width: 120px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* 404 Page */
.error-404-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
    padding: 2rem;
}

.error-404-content h1 {
    font-size: 10rem;
    color: var(--burgundy);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-404-content h2 {
    font-size: 3rem;
    color: var(--burgundy-dark);
    margin-bottom: 1rem;
}

.error-404-content p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

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

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

    .hero-title,
    .perfect-overlay h2,
    .gallery-overlay h2 {
        font-size: 3rem;
    }

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

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



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

    nav {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .hero-container,
    .summer-container,
    .story-content,
    .embrace-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .summer-image {
        order: -1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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


    .story-image {
        width: 250px;
        height: 250px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .gallery-slider {
        height: 400px;
    }

    .gallery-overlay h2 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

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

}

@media (max-width: 625px) {

    .choose-grid,
    .blog-grid,
    .services-grid,
    .pricing-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 625px) and (max-width: 1024px) {

    .choose-grid,
    .blog-grid,
    .services-grid,
    .pricing-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .pricing-price {
        font-size: 2.5rem;
        color: var(--burgundy);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

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

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

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

    .story-stats {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .gallery-overlay h2 {
        font-size: 2rem;
    }

    .perfect-overlay h2 {
        font-size: 2.5rem;
    }

    .error-404-content h1 {
        font-size: 6rem;
    }

    .coming-soon-content h1 {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .blog-meta {
        display: inline;
    }
}

@media (min-width: 769px) {
    .mobile-menu.active{
        display: none;
    }
}