/* ==================== CSS Variables ==================== */
:root {
    --primary-gold: #E7BD88;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --accent-gold: #d4a574;
    --hover-gold: #f0d0a0;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(231, 189, 136, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ==================== Utility Classes ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-text);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
    margin: 0 auto;
}

/* ==================== Buttons ==================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid var(--primary-gold);
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--hover-gold);
    border-color: var(--hover-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(15, 15, 15, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.logo img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--light-text);
}

.logo span {
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
    border-radius: 3px;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/milanahaorstyle.png') center center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(231, 189, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(231, 189, 136, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--light-text);
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--gray-text);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    opacity: 0.7;
}

.scroll-indicator span {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 3px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ==================== About Section ==================== */
.about {
    padding: 100px 0;
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

.about-text p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(231, 189, 136, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-gold);
    transition: var(--transition-fast);
}

.feature:hover {
    background: rgba(231, 189, 136, 0.1);
    transform: translateX(10px);
}

.feature i {
    font-size: 36px;
    color: var(--primary-gold);
    min-width: 50px;
}

.feature h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light-text);
}

.feature p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 189, 136, 0.2) 0%, transparent 100%);
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* ==================== Services Section ==================== */
.services {
    padding: 100px 0;
    background: var(--darker-bg);
}

.services-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid rgba(231, 189, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-gold), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.service-card.hide {
    display: none;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(231, 189, 136, 0.2), rgba(231, 189, 136, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--primary-gold);
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon i {
    color: var(--dark-bg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.service-card p {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-gold);
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(231, 189, 136, 0.1);
}

/* ==================== Gallery Section ==================== */
.gallery {
    padding: 100px 0;
    background: var(--dark-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    color: var(--gray-text);
    border: 2px solid rgba(231, 189, 136, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    transition: var(--transition-medium);
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-fast);
}

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

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

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    color: var(--gray-text);
}

.gallery-link {
    display: block;
    text-decoration: none;
}

.gallery-link .view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-gold);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.gallery-link:hover .view-more {
    opacity: 1;
    transform: translateY(0);
}

.gallery-link .view-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.gallery-link:hover .view-more i {
    transform: translateX(5px);
}

/* ==================== Team Section ==================== */
.team {
    padding: 100px 0;
    background: var(--darker-bg);
}

.team-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.team-carousel {
    overflow: hidden;
    flex: 1;
}

.team-slide {
    display: none;
}

.team-slide.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-arrow {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 175px;
    transition: var(--transition-fast);
}

.team-arrow:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.team-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.team-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.team-dot.active {
    background: var(--primary-gold);
}

.team-member {
    text-align: center;
    transition: var(--transition-fast);
}

.member-image {
    position: relative;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(231, 189, 136, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.member-image:hover .member-overlay {
    opacity: 1;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 18px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--light-text);
}

.member-role {
    font-size: 14px;
    color: var(--primary-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

.bio-toggle {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    transition: var(--transition-fast);
    font-size: 16px;
}

.bio-toggle:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.bio-toggle.active {
    transform: rotate(180deg);
}

.member-bio-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    text-align: left;
    padding: 0 20px;
}

.member-bio-full.active {
    max-height: 1000px;
    margin-top: 20px;
}

.member-bio-full p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ==================== Booking Section ==================== */
.booking {
    padding: 100px 0;
    background: var(--dark-bg);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.booking-info h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.booking-info > p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 28px;
    color: var(--primary-gold);
    min-width: 40px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--light-text);
}

.info-item p,
.info-item a {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
}

.info-item a:hover {
    color: var(--primary-gold);
}

.booking-form {
    background: var(--darker-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(231, 189, 136, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--light-text);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-bg);
    border: 1px solid rgba(231, 189, 136, 0.2);
    border-radius: 8px;
    color: var(--light-text);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(231, 189, 136, 0.1);
}

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

.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input-wrapper input[type="date"] {
    padding-right: 50px;
}

.calendar-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--primary-gold);
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.calendar-btn:hover {
    opacity: 1;
}

.booking-form .btn-primary {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
}

/* ==================== Contact Section ==================== */
.contact {
    padding: 100px 0;
    background: var(--darker-bg);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--dark-bg);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(231, 189, 136, 0.1);
    transition: var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.contact-card i {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--light-text);
}

.contact-card p,
.contact-card a {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

.contact-card a:hover {
    color: var(--primary-gold);
}

.social-media {
    text-align: center;
    padding: 40px;
    background: var(--dark-bg);
    border-radius: 15px;
}

.social-media h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--light-text);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    width: 60px;
    height: 60px;
    background: var(--darker-bg);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-8px) rotate(360deg);
}

/* ==================== Footer ==================== */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(231, 189, 136, 0.1);
}

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

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li {
    font-size: 14px;
    color: var(--gray-text);
    transition: var(--transition-fast);
}

.footer-section ul li:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-section ul li a {
    display: block;
}

.footer-section ul li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(231, 189, 136, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-text);
}

/* ==================== Back to Top Button ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
    background: var(--hover-gold);
    transform: translateY(-5px);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 42px;
    }

    .hero-title {
        font-size: 64px;
    }

    .about-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .about,
    .services,
    .gallery,
    .team,
    .booking,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition-medium);
        backdrop-filter: blur(10px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile menu buttons styling */
    .nav-menu .btn-primary,
    .nav-menu .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 25px;
    }

    .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Reduce section padding on mobile */
    .about,
    .services,
    .gallery,
    .team,
    .booking,
    .contact {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 15px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    /* About section mobile */
    .about-text h3 {
        font-size: 28px;
    }

    .about-features {
        gap: 15px;
        margin-top: 30px;
    }

    .feature {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .feature i {
        font-size: 32px;
        min-width: unset;
    }

    .feature h4 {
        font-size: 20px;
    }

    .image-wrapper img {
        height: 350px;
    }

    /* Services filters mobile */
    .services-filters {
        gap: 10px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* Gallery mobile */
    .gallery-filters {
        gap: 10px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-overlay {
        padding: 20px;
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    }

    .gallery-overlay h4 {
        font-size: 20px;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 30px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-price {
        font-size: 16px;
        padding: 8px 16px;
    }

    /* Team mobile */
    .team-slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .team-member h3 {
        font-size: 22px;
    }

    .member-bio-full {
        padding: 0 10px;
    }

    /* Booking mobile */
    .booking-info h3 {
        font-size: 26px;
    }

    .booking-form {
        padding: 25px 20px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    /* Contact mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card i {
        font-size: 28px;
    }

    .social-media {
        padding: 30px 20px;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 22px;
    }

    .footer-section ul {
        align-items: center;
    }

    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 22px;
        font-size: 12px;
    }

    .about-text h3 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 14px;
    }

    .feature h4 {
        font-size: 18px;
    }

    .image-wrapper img {
        height: 280px;
    }

    .gallery-item {
        height: 240px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 10px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .member-image img {
        height: 260px;
    }

    .booking-form {
        padding: 20px 15px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }

    /* Smaller section padding on very small screens */
    .about,
    .services,
    .gallery,
    .team,
    .booking,
    .contact {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    /* Always show gallery overlay on touch devices */
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    }

    /* Always show view-more on touch devices */
    .gallery-link .view-more {
        opacity: 1;
        transform: translateY(0);
    }

    /* Remove hover effects that don't work on touch */
    .service-card:hover,
    .contact-card:hover,
    .feature:hover {
        transform: none;
    }

    /* Disable parallax on mobile for better performance */
    .hero-content {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.fade-in {
    animation: fadeIn 1s ease;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
}
