/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --amber-gold: #D4AF37;
    --amber-gold-light: #F7E6A3;
    --amber-gold-dark: #B8860B;
    --black: #1A1A1A;
    --black-light: #2A2A2A;
    --cream: #F5F5DC;
    --cream-light: #FAF9F6;
    --neutral: #8B7355;
    --neutral-light: #D4C4A8;
    --white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #999999;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    background: var(--black);
}


body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--amber-gold);
    background-color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* Main sections and containers */
.container,
.contact-content,
.whatsapp-booking {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.hero,
.services,
.about,
.team,
.contact,
.footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    box-sizing: border-box;
}

.hero-content,
.services-grid,
.about-content,
.team-scroll-container,
.contact-content,
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Ensure images inside these sections take full width */
.hero,
.services,
.about,
.team,
.contact,
.footer {
    overflow-x: hidden;
}

.hero img,
.services img,
.about img,
.team img,
.contact img,
.footer img {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: -2px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--amber-gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--amber-gold);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--amber-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.book-btn {
    background: var(--amber-gold);
    color: var(--black);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.book-btn:hover {
    background: var(--amber-gold-light);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--amber-gold);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.7), rgba(212, 175, 55, 0.1));
}

.hero-content {
    text-align: center;
    color: var(--amber-gold);
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
    color: var(--amber-gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--amber-gold);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--black);
    color: var(--amber-gold);
    border: 2px solid var(--amber-gold);
}

.btn-primary:hover {
    background: var(--amber-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--amber-gold);
}

.btn-secondary:hover {
    background: var(--amber-gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* Team Redirect Section */
.team-redirect {
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

/* Team Redirect Button */
.team-redirect-btn {
    background: var(--black);
    color: var(--amber-gold);
    border: 2px solid var(--amber-gold);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.team-redirect-btn:hover {
    background: var(--amber-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.team-redirect-btn i {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 600;
    color: var(--amber-gold);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--amber-gold);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--black);
    color: var(--amber-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--black);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.service-image {
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: var(--spacing-lg);
}

.service-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--amber-gold);
    margin-bottom: var(--spacing-sm);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.price {
    color: var(--amber-gold);
    font-weight: 600;
    font-size: 1.2rem;
}

/* About Section */
.about {
    background: var(--black);
    color: var(--amber-gold);
}

.about > .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 3.2rem;
    color: var(--amber-gold);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-text .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--amber-gold), var(--amber-gold-light));
    border-radius: 2px;
}

.about-description {
    font-size: 1.2rem;
    color: var(--amber-gold);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-weight: 700;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.about .section-title,
.about .about-values h3,
.about .about-values li,
.about .about-promise h3,
.about .about-promise p {
    font-family: 'Lora', serif;
    font-weight: 700;
}

.about-features {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.feature span {
    font-weight: 500;
    color: var(--text-primary);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Values Section */
.about-values {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(245, 245, 220, 0.6) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(212,175,55,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-values h3 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    color: golden;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 1.5px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.about-values h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--amber-gold), var(--amber-gold-light));
    border-radius: 1px;
}

.about-values ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.about-values li {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--amber-gold);
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.about-values li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
}

.about-values li::before {
    content: '✨';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--amber-gold);
    font-size: 1.2rem;
    background: var(--cream-light);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* About Promise Section */
.about-promise {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: var(--black);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(212,175,55,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-promise h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-gold);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-promise h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--amber-gold), var(--amber-gold-light));
    border-radius: 1px;
}

.about-promise p {
    font-size: 1.2rem;
    color: var(--amber-gold);
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: var(--spacing-lg);
    background: transparent;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-family: var(--font-primary);
}

.about-promise p::before {
    content: '"';
    font-size: 3rem;
    color: var(--amber-gold);
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
    opacity: 0.6;
}

.about-promise p::after {
    content: '"';
    font-size: 3rem;
    color: var(--amber-gold);
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: serif;
    opacity: 0.6;
}

/* Team Section */
.team {
    background: var(--black);
    color: var(--amber-gold);
}

.team-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Firefox */
    -ms-overflow-style: -ms-autohiding-scrollbar; /* IE and Edge */
    padding-bottom: 16px;
    /* Debug: Force scrollbar visibility */
    scrollbar-color: var(--amber-gold) rgba(0, 0, 0, 0.1);
    /* Force scrollbar to always show for debugging */
    overflow-x: scroll !important;
}

.team-scroll-container::-webkit-scrollbar {
    height: 8px; /* Height of horizontal scrollbar */
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.team-scroll-container::-webkit-scrollbar-thumb {
    background: var(--amber-gold);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--amber-gold-dark);
}

.team-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.team-scroll {
    display: flex;
    gap: 24px;
    min-width: 600px; /* Ensures horizontal scroll if cards overflow */
    scroll-snap-type: x mandatory;
    scroll-padding: 12px;
    padding-left: 12px;
}

.team-card {
    flex: 0 0 300px;
    max-width: 300px;
    background: var(--black);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    scroll-snap-align: start;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: var(--spacing-lg) auto;
    border: 3px solid var(--amber-gold);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.team-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--amber-gold);
    margin-bottom: var(--spacing-xs);
}

.team-role {
    color: var(--amber-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.team-bio {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--amber-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--amber-gold-dark);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: var(--black);
    color: var(--amber-gold);
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--amber-gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--amber-gold);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--amber-gold), var(--amber-gold-light));
    border-radius: 2px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    font-weight: 400;
}

.contact-details {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    transition: var(--transition);
    border-left: 3px solid var(--amber-gold);
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--amber-gold);
    margin-right: var(--spacing-sm);
    font-size: 1.2rem;
    width: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.whatsapp-booking {
    text-align: center;
    background: var(--black-light);
    border-radius: 15px;
    border: 1px solid var(--amber-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    padding: var(--spacing-xl);
}

/* Mobile fix: force full width, remove extra padding and border radius */


.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: 1.3rem;
    padding: var(--spacing-md) var(--spacing-xl);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.whatsapp-note {
    margin-top: var(--spacing-md);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 50%, rgba(212, 175, 55, 0.02) 100%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--amber-gold);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.hero-logo-img {
    width: 480px !important;
    height: 220px !important;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 18px;
    padding: 10px;
    display: inline-block;
}


.footer-logo-img {
    width: 320px !important;
    height: 260px !important;
    object-fit: contain;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--amber-gold), var(--amber-gold-light));
    border-radius: 1px;
}

.footer-info {
    margin-bottom: var(--spacing-lg);
}

.footer-info p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    position: relative;
    font-weight: 500;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--amber-gold);
    transform: translateY(-2px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: var(--amber-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--amber-gold-light), var(--amber-gold));
    opacity: 0;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--amber-gold-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a i {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--black-light);
    color: var(--text-light);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--amber-gold), transparent);
}



/* Responsive Design */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .team-card {
        flex: 0 0 240px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-md);
    }
    .service-image {
        height: 200px;
    }
    .team-image {
        width: 120px;
        height: 120px;
    }
}

/* Mobile landscape and tablet */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-lg) 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    .about-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    .section-title {
        font-size: 2.5rem;
    }
    .service-image {
        height: 140px;
    }
    .team-image {
        width: 100px;
        height: 100px;
    }
    .contact-info h3 {
        font-size: 1.8rem;
    }
    .btn-whatsapp {
        font-size: 1.1rem;
        padding: var(--spacing-sm) 4rem;
    }

    .btn-whatsapp i {
        font-size: 1.1rem;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .container {
        padding: 0 var(--spacing-xs);
    }
    .service-image {
        width: 140px;
        margin: 0 auto;
        height: 150px;
    }
    .team-image {
        width: 80px;
        height: 80px;
    }
    .hero-content {
        padding: 0 var(--spacing-sm);
    }
    .nav-container {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    .logo h1 {
        font-size: 1.5rem;
    }
    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 1rem;
    }
    .contact-info h3 {
        font-size: 1.5rem;
    }
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    .contact-item i {
        width: auto;
    }
    .footer-content {
        padding: 0 var(--spacing-sm);
    }
    .footer-logo {
        font-size: 1.8rem;
    }
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .service-content {
        padding: var(--spacing-md);
    }
    .service-content h3 {
        font-size: 1.3rem;
    }
    .price {
        font-size: 1.1rem;
    }
    .team-info h3 {
        font-size: 1.3rem;
    }
    .team-role {
        font-size: 0.9rem;
    }
    .team-bio {
        font-size: 0.9rem;
    }
}



/* Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.service-modal-content {
    background: var(--black);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.service-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--amber-gold);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.service-modal-close:hover {
    color: var(--amber-gold);
    transform: scale(1.1);
}

.service-modal-header {
    background: linear-gradient(135deg, var(--amber-gold), var(--amber-gold-dark));
    color: var(--black);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.service-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.3;
}

.service-modal-header h2 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-modal-body {
    padding: var(--spacing-xl);
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--amber-gold) rgba(0, 0, 0, 0.1);
    background: var(--black);
    color: var(--amber-gold);
}

.service-modal-body::-webkit-scrollbar {
    width: 6px;
}

.service-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.service-modal-body::-webkit-scrollbar-thumb {
    background: var(--amber-gold);
    border-radius: 3px;
}

.service-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-list li {
    background: var(--black);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 12px;
    border-left: 4px solid var(--amber-gold);
    transition: var(--transition);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
    font-family: var(--font-secondary);
    color: var(--amber-gold);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-modal-list li:hover {
    background: var(--black);
    transform: translateX(5px);
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.8);
}

.service-price {
    font-weight: bold;
}

/* Category title styling in modal */
.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--amber-gold);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--amber-gold);
    padding-bottom: var(--spacing-xs);
}

/* Collapsible category styles */
.collapsible {
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.collapsible::after {
    content: '▶';
    font-size: 1.2rem;
    color: var(--amber-gold);
    transition: transform 0.3s ease;
    margin-left: var(--spacing-sm);
}

.collapsible.expanded::after {
    transform: rotate(90deg);
}

.collapsible:hover {
    color: var(--amber-gold-light);
}

.category-list {
    margin-top: var(--spacing-sm);
    margin-left: var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.category-list[style*="display: block"] {
    max-height: 1000px; /* Large enough to accommodate content */
}

.service-modal-list li::before {
    content: '✨';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--amber-gold);
    font-size: 1.2rem;
}

.service-modal-footer {
    padding: var(--spacing-lg);
    background: var(--black);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.service-book-btn {
    background: var(--amber-gold);
    color: var(--black);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.service-book-btn:hover {
    background: var(--amber-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.service-book-btn::before {
    content: '📅';
    font-size: 1.2rem;
}

/* Media elements responsive safeguard */
img, video {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal overflow on body and html only */
html, body {
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
}

/* Team carousel mobile fixes */
@media (max-width: 480px) {
  .team {
    display: none !important;
  }

  .whatsapp-booking {
    width: 90% !important;
    margin: 0 auto !important;
  }

  /* Additional fallback for very stubborn browsers */
  .team-scroll-container {
    /* Force scrollbar by ensuring content is wider than container */
    padding-right: 20px !important;
    margin-right: -20px !important;
  }
}

/* Desktop styles for team carousel */
@media (min-width: 481px) {
  .team-scroll-container {
    overflow-x: hidden;
  }

  .team-scroll {
    display: flex;
    gap: var(--spacing-lg);
    padding: 0 var(--spacing-lg);
    transform: translateX(0);
    transition: transform 0.3s ease;
  }

  .team-card {
    flex: 0 0 300px;
    max-width: 300px;
  }
}

/* Home Services Card Special Design */
.home-services-card {
    background: var(--black);
    border: 3px solid var(--amber-gold);
    border-radius: 25px;
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
    animation: homeCardGlow 0.5s ease-out;
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

@keyframes homeCardGlow {
    from {
        opacity: 0;
        transform: scale(0.9);
        box-shadow: 0 0 0 rgba(212, 175, 55, 0.3);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3), inset 0 0 30px rgba(212, 175, 55, 0.1);
    }
}



.home-services-card .service-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-lg);
}

.home-services-card .service-content h3 {
    color: var(--amber-gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .service-modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 700px;
        border-radius: 15px;
    }

    .homeservices-modal {
        width: 98%;
        max-height: 80vh;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
    }

    .service-modal-header {
        padding: var(--spacing-md);
    }

    .service-modal-header h2 {
        font-size: 1.5rem;
    }

    .service-modal-body {
        padding: var(--spacing-lg);
        max-height: 700px;
    }

    .service-modal-footer {
        padding: var(--spacing-md);
    }

    .service-book-btn {
        width: 100%;
        padding: var(--spacing-md);
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-modal-content {
        margin: 1% auto;
        width: 98%;
        max-height: 750px;
    }

    .service-modal-header {
        padding: var(--spacing-sm);
    }

    .service-modal-header h2 {
        font-size: 1.3rem;
    }

    .service-modal-body {
        padding: var(--spacing-md);
        max-height: 750px;
    }

    .service-modal-list li {
        padding: var(--spacing-sm);
        font-size: 0.95rem;
    }

    .service-modal-footer {
        padding: var(--spacing-sm);
    }

    .service-book-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.95rem;
    }
}


