/* Custom Styles - Minimalist Design */

:root {
    --purple-primary: #7B2CBF;
    --purple-dark: #5A189A;
    --purple-light: #9D4EDD;
    --purple-soft: #E0AAFF;
    --purple-bg: #F8F4FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.8;
    font-size: 16px;
    scroll-behavior: smooth;
    padding-top: 0;
}

/* Navigation */
#mainNavbar {

    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 20px 0;
}

#mainNavbar.navbar-scrolled {
   
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFF !important;
    margin: 0 8px;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #e0ad65;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: #e0ad65 !important;
}

.btn-reserve {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
}

.navbar-brand {
    display: none;
}

.navbar-logo {
    max-height: 60px;
    width: auto;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 26, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNavbar.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-brand {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .navbar-logo {
        max-height: 50px;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-toggler {
        position: relative;
        z-index: 1;
    }
    
    #mainNavbar .container-lg {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    
    #mainNavbar {
        background: rgba(26, 26, 26, 0.4);
        backdrop-filter: blur(20px);
    }
    
    .navbar-collapse {
        background: transparent;
        margin-top: 15px;
        padding: 20px;
        width: 100%;
        flex-basis: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        margin: 5px 0;
        color: #ffffff !important;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #e0ad65 !important;
    }
    
    .btn-reserve {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}
body #mainNavbar.navbar-scrolled a {
    color: #0c0c0c !important;
}
/* Hero Logo */
.hero-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .hero-logo {
        display: none;
    }
}

/* Typography - Serif for headings */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', serif;
}


/* Hero Section */
.hero-section {
    padding: 140px 0 120px;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 1;
}

.hero-section .container-lg {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(224, 173, 101, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(224, 173, 101, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-section .container-lg {
    position: relative;
    z-index: 1;
}

.benefit-card {
    background-color: #ffffff;
    padding: 50px 35px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e0ad65, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(224, 173, 101, 0.15);
    border-color: rgba(224, 173, 101, 0.2);
}

.benefit-icon {
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 20px;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e0ad65, transparent);
    opacity: 0.3;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon::after {
    width: 60px;
    opacity: 0.6;
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-3px);
}

.benefit-icon i {
    font-size: 2.2rem;
    color: #8b6f47;
    font-weight: 300;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    color: #e0ad65;
    transform: scale(1.1);
}

.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 18px;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: #1a1a1a;
}

.benefit-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .benefit-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .benefit-icon i {
        font-size: 2rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
}

/* Emotional Section */
.emotional-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.emotional-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(224, 173, 101, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(224, 173, 101, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.emotional-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(224, 173, 101, 0.02) 2px, rgba(224, 173, 101, 0.02) 4px);
    pointer-events: none;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.emotional-wrapper {
    position: relative;
    z-index: 1;
}

.emotional-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 80px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
                0 8px 25px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.emotional-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 173, 101, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.typewriter-container {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.typewriter-container::before,
.typewriter-container::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e0ad65, transparent);
    top: 50%;
    transform: translateY(-50%);
}

.typewriter-container::before {
    left: -80px;
}

.typewriter-container::after {
    right: -80px;
}

.typewriter-text {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
}

.typewriter-line {
    display: inline-block;
    position: relative;
    padding-right: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-line::after {
    content: '|';
    position: absolute;
    right: 0;
    color: #e0ad65;
    animation: blink 1s infinite;
    font-weight: 400;
    font-size: 3.5rem;
    text-shadow: 0 0 10px rgba(224, 173, 101, 0.5);
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.emotional-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0ad65, transparent);
    margin: 40px auto;
    position: relative;
}

.emotional-divider::before,
.emotional-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0ad65;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(224, 173, 101, 0.5);
}

.emotional-divider::before {
    left: -20px;
}

.emotional-divider::after {
    right: -20px;
}

.emotional-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    color: #555555;
    font-weight: 400;
    line-height: 1.9;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.emotional-cta-wrapper {
    text-align: center;
    transition: opacity 1.2s ease, transform 1.2s ease;
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.3s;
}

.emotional-cta-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.emotional-cta {
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .emotional-content {
        padding: 60px 40px;
    }
    
    .typewriter-container::before,
    .typewriter-container::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .emotional-section {
        padding: 60px 0;
    }
    
    .emotional-content {
        padding: 50px 30px;
        border-radius: 20px;
    }
    
    .typewriter-text {
        font-size: 2.2rem;
        min-height: 80px;
        letter-spacing: 1px;
    }
    
    .typewriter-line::after {
        font-size: 2.2rem;
    }
    
    .typewriter-container {
        min-height: 100px;
        margin-bottom: 40px;
    }
    
    .emotional-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .emotional-divider {
        margin: 30px auto;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(224, 173, 101, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(224, 173, 101, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-carousel {
    padding: 0;
}

.testimonial-card-single {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.testimonial-card-single::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(224, 173, 101, 0.1), rgba(224, 173, 101, 0.05));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-single:hover::before {
    opacity: 1;
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #e0ad65, #e8c085);
    padding: 3px;
    box-shadow: 0 8px 24px rgba(224, 173, 101, 0.25),
                0 4px 12px rgba(224, 173, 101, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.testimonial-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-card-single:hover .testimonial-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(224, 173, 101, 0.35),
                0 6px 16px rgba(224, 173, 101, 0.2);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #333333;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding: 0 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #e0ad65;
    position: absolute;
    left: -5px;
    top: -20px;
    font-family: 'Playfair Display', serif;
    opacity: 0.2;
    font-weight: 300;
    line-height: 1;
}

.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: #e0ad65;
    position: absolute;
    right: -5px;
    bottom: -40px;
    font-family: 'Playfair Display', serif;
    opacity: 0.2;
    font-weight: 300;
    line-height: 1;
}

.testimonial-author {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555555;
    font-weight: 600;
    margin: 0;
    margin-top: 15px;
    letter-spacing: 0.4px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    flex-shrink: 0;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0ad65);
}

.testimonial-author::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, #e0ad65, transparent);
}

.testimonials-carousel .owl-nav {
    display: none !important;
}

.testimonials-carousel .owl-dots {
    margin-top: 25px;
    text-align: center;
}

.testimonials-carousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0 !important;
    margin: 0 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonials-carousel .owl-dots button.owl-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
}

.testimonials-carousel .owl-dots button.owl-dot.active {
    background: linear-gradient(135deg, #e0ad65, #e8c085) !important;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(224, 173, 101, 0.4);
}

.testimonials-carousel .owl-dots button.owl-dot.active::before {
    border-color: rgba(224, 173, 101, 0.3);
}

@media (max-width: 992px) {
    .testimonials-section .row.align-items-center {
        flex-direction: column;
    }
    
    .testimonials-section .col-lg-6:first-child {
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .testimonials-section::before {
        background: radial-gradient(circle at 50% 50%, rgba(224, 173, 101, 0.02) 0%, transparent 70%);
    }
    
    .testimonial-card-single {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .testimonial-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .testimonial-text::before {
        font-size: 2.5rem;
        left: -3px;
        top: -12px;
    }
    
    .testimonial-text::after {
        font-size: 2.5rem;
        right: -3px;
        bottom: -25px;
    }
    
    .testimonial-author {
        font-size: 0.8rem;
    }
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    position: relative;
}

.location-map-wrapper {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.location-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.location-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.location-info-item:hover {
    transform: translateX(5px);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: rgba(224, 173, 101, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-info-item:hover .location-icon {
    background: rgba(224, 173, 101, 0.15);
    transform: scale(1.05);
}

.location-icon i {
    font-size: 1.5rem;
    color: #e0ad65;
}

.location-content {
    flex: 1;
}

.location-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.location-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.location-link {
    color: #e0ad65;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.location-link:hover {
    color: #d49d55;
    text-decoration: underline;
}

.location-cta {
    text-align: center;
    padding-top: 20px;
}

@media (max-width: 992px) {
    .location-map-wrapper {
        height: 400px;
        margin-bottom: 30px;
    }
    
    .location-map {
        min-height: 400px;
    }
    
    .location-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .location-map-wrapper {
        height: 300px;
    }
    
    .location-map {
        min-height: 300px;
    }
    
    .location-info {
        padding: 25px 20px;
    }
    
    .location-info-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .location-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .location-icon i {
        font-size: 1.3rem;
    }
    
    .location-label {
        font-size: 1rem;
    }
    
    .location-text {
        font-size: 0.95rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    background-color: #fafafa;
    padding: 80px 0;
}


/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2rem;
    color: #2c2c2c;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
}

/* Content Text */
.content-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #444444;
    font-weight: 300;
    line-height: 2;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item-large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-content {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.gallery-zoom-icon {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-lightbox-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 20px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.gallery-lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-lightbox-prev {
    left: 30px;
}

.gallery-lightbox-next {
    right: 30px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(224, 173, 101, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .gallery-lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .gallery-lightbox-prev {
        left: 15px;
    }
    
    .gallery-lightbox-next {
        right: 15px;
    }
    
    .gallery-lightbox-caption {
        font-size: 1.2rem;
        margin-top: 15px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item-large {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item-large {
        grid-row: span 1;
    }
    
    .gallery-caption {
        font-size: 1.1rem;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
}

/* CTA Buttons */
.btn-cta-primary {
    background: #e0ad65;
    color: #ffffff !important;
    border: none;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(224, 173, 101, 0.25);
    text-decoration: none;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
}

.btn-cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(224, 173, 101, 0.35);
    background: #d49d55;
    color: #ffffff !important;
}

.btn-cta-secondary {
    background: transparent;
    color: #e0ad65 !important;
    border: 1.5px solid #e0ad65;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
}

.btn-cta-secondary:hover {
    background: rgba(224, 173, 101, 0.1);
    color: #d49d55 !important;
    border-color: #d49d55;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(224, 173, 101, 0.2);
}

.btn-cta-outline {
    background: transparent;
    color: #e0ad65 !important;
    border: 1.5px solid #e0ad65;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
}

.btn-cta-outline:hover {
    background: rgba(224, 173, 101, 0.1);
    color: #d49d55 !important;
    border-color: #d49d55;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(224, 173, 101, 0.2);
}

/* Owl Carousel Customization */
.owl-nav {
    display: none !important;
}

.owl-prev,
.owl-next {
    display: none !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 0px !important;
    height: 0px !important;
}

.gallery-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.gallery-carousel .owl-dots button.owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ddd !important;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.gallery-carousel .owl-dots button.owl-dot.active {
    background-color: #e0ad65 !important;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .gallery-section .section-title,
    .image-grid-section .section-title {
        font-size: 1.8rem;
    }
    
    .intro-text,
    .content-text {
        font-size: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .location-address {
        font-size: 1.1rem;
        padding: 20px;
    }
}

/* Spacing */
section {
    margin: 0;
}


/* Footer Section */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 0px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #e0ad65;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-text {
    font-family: 'Open Sans', sans-serif;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-link {
    color: #e0ad65;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #e8c085;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 148, 51, 0.4);
    color: #ffffff;
}

.footer-divider {
    border-color: #333333;
    margin: 30px 0 20px;
    opacity: 1;
}

.footer-copyright {
    font-family: 'Open Sans', sans-serif;
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .col-md-6.text-md-end {
        text-align: center !important;
    }
}
