/* ======= Base Styles ======= */
:root {
    --primary-color: #c5a47e;
    --secondary-color: #1d1d1d;
    --tertiary-color: #121212;
    --text-color: #333;
    --light-text: #fff;
    --dark-text: #222;
    --gray-text: #888;
    --accent-color: #e6b980;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --border-radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
}

button, .btn {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading.left-align {
    text-align: left;
}

.section-heading h2 {
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-text);
}

.highlight {
    color: var(--primary-color);
}

.razor-divider {
    position: relative;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    width: 80px;
    margin: 1rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.razor-divider.left-align {
    margin-left: 0;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.razor-divider i {
    background: #fff;
    color: var(--primary-color);
    padding: 0 10px;
    font-size: 1rem;
    position: absolute;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: .5s;
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ======= Header ======= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.header.sticky {
    background-color: rgba(29, 29, 29, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-desktop {
    display: flex;
}

.nav-desktop ul {
    display: flex;
    gap: 30px;
}

.nav-desktop ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-desktop ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-desktop ul li a:hover:after,
.nav-desktop ul li a.active:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: rgba(29, 29, 29, 0.98);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
    backdrop-filter: blur(10px);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav ul li {
    margin: 20px 0;
}

.mobile-nav ul li a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-nav ul li a:hover {
    color: var(--primary-color);
}

/* ======= Hero Section ======= */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 29, 29, 0.9), rgba(29, 29, 29, 0.7));
    z-index: 1;
}

.hero-content {
    color: #fff;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation-delay: 0.3s;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation-delay: 0.9s;
}

/* ======= About Section ======= */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    width: 100%;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.experience-badge span:first-child {
    font-size: 2rem;
    font-weight: 700;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    background: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.3);
}

.feature-text h4 {
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ======= Counter Section ======= */
.counter-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: #fff;
}

.counters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.counter {
    text-align: center;
    padding: 20px;
}

.counter i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}

.counter h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

/* ======= Services Section ======= */
.services {
    padding: 100px 0;
    background-color: var(--tertiary-color);
    color: #fff;
}

.section-heading.light h2,
.section-heading.light p {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
    background-size: 400%;
    z-index: -1;
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.service-card:hover:before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(197, 164, 126, 0.3);
}

.service-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 20px;
}

/* ======= Gallery Section ======= */
.gallery {
    padding: 100px 0;
    background-color: #fff;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    transition: bottom 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h4 {
    color: #fff;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ======= Team Section ======= */
.team {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 29, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.team-social a:hover {
    transform: translateY(-5px);
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.team-info {
    padding: 0 20px 20px;
}

.team-info p {
    color: var(--gray-text);
    font-weight: normal;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ======= Video Section ======= */
.video-section {
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.video-container {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 29, 0.7);
    z-index: 1;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.video-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.video-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* ======= Testimonials Section ======= */
.testimonials {
    padding: 100px 0;
    background-color: #fff;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background: #f9f9f9;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-author div {
    text-align: left;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    transform: translateY(-3px);
}

/* ======= Promo Section ======= */
.promo-section {
    padding: 80px 0;
    background: linear-gradient(to right, var(--secondary-color), var(--tertiary-color));
    color: #fff;
}

.promo-content {
    text-align: center;
}

.promo-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.promo-code {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.promo-code span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ======= Booking Section ======= */
.booking {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.booking-content {
    display: flex;
    gap: 50px;
}

.booking-info {
    flex: 1;
}

.booking-info p {
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item div h4 {
    margin-bottom: 5px;
}

.contact-item div p, .contact-item div p a {
    color: var(--gray-text);
    margin-bottom: 0;
}

.contact-item div p a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
}

.booking-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(197, 164, 126, 0.2);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* ======= Map Section ======= */
.map-section {
    padding: 100px 0 0;
}

.map-container {
    position: relative;
    height: 450px;
    margin-top: 50px;
}

.map-card {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    z-index: 1;
}

.map-card h3 {
    margin-bottom: 15px;
}

.map-card p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.map-card i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* ======= Footer ======= */
.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-column ul.hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.footer-column ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom .social-links {
    justify-content: center;
    margin-bottom: 20px;
}

/* ======= Back to top ======= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ======= Booking Float ======= */
.booking-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
}

.booking-float-btn {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.booking-float-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.booking-float-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ======= Animations ======= */
@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 164, 126, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(197, 164, 126, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 164, 126, 0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.3s;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* ======= Responsive Styles ======= */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .about-content {
        flex-direction: column;
    }
    .experience-badge {
        bottom: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
    }
    .booking-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hamburger {
        display: block;
    }
    .nav-desktop {
        display: none;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .service-card, 
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .map-card {
        left: 20px;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .counters {
        flex-direction: column;
        gap: 20px;
    }
    .form-row {
        flex-direction: column;
    }
    .map-card {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }
    .testimonial-content {
        padding: 20px;
    }
    .footer-column {
        min-width: 100%;
        margin-bottom: 30px;
    }
    .footer-links {
        flex-direction: column;
    }
    .booking-float-btn span {
        display: none;
    }
    .booking-float-btn {
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    .booking-float-btn i {
        margin-right: 0;
    }
}
