/* Modern, Elegant, and Asymmetrical Design for EMMA Beauty */

/* ===== VARIABLES ===== */
:root {
    /* Enhanced Color Scheme */
    --primary-gold: #d4a017;
    --primary-gold-light: #f7c039;
    --primary-gold-dark: #a3780c;
    --cream: #fffaf0;
    --cream-dark: #f3ede0;
    --dark: #0f0f0f;
    --dark-gray: #252525;
    --gray: #666666;
    --light-gray: #f7f7f7;
    --white: #ffffff;
    --accent-color: #c86b85;
    --accent-color-light: #f5a9b8;

    /* Updated Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-medium: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Shadows */
    --shadow-small: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 30px 60px rgba(0, 0, 0, 0.2);
    --gold-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);

    /* Border Radius */
    --border-radius: 8px;
    --border-radius-small: 4px;
    --border-radius-large: 16px;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px */
}

.skip-link {
    position: absolute;
    top: -1000px;
    left: -1000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    color: var(--primary-gold);
    font-weight: 600;
    z-index: 9999;
    border: 2px solid var(--primary-gold);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 5px;
    left: 5px;
    width: auto;
    height: auto;
    outline: 3px solid var(--primary-gold);
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    letter-spacing: 0.02em;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}

h1 {
    font-size: 6.2rem;
    font-weight: 700;
}

h2 {
    font-size: 4.8rem;
    font-weight: 600;
}

h3 {
    font-size: 3.2rem;
    font-weight: 500;
}

h4 {
    font-size: 2.4rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.6rem;
}

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

button {
    font-family: var(--body-font);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-animation {
    font-family: var(--heading-font);
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    letter-spacing: 4px;
    position: relative;
    animation: glowPulse 2s infinite alternate;
}

.logo-animation::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: center;
    animation: lineGrow 1.5s ease-out forwards 0.5s;
}

.loading-bar {
    width: 250px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.loading-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--primary-gold), var(--primary-gold-light), var(--primary-gold-dark), var(--primary-gold));
    background-size: 200% 100%;
    animation: loadingProgress 3s ease-in-out forwards, gradient 2s linear infinite;
}

.loading-bar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
    animation: shimmer 1.5s infinite;
    transform: skewX(-20deg);
}

.tagline {
    font-size: 1.8rem;
    color: var(--cream);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0;
    }
    50% {
        width: 65%;
    }
    100% {
        width: 100%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-150%) skewX(-20deg);
    }
    100% {
        transform: translateX(250%) skewX(-20deg);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 5px rgba(212, 160, 23, 0.3), 0 0 10px rgba(212, 160, 23, 0.2);
    }
    100% {
        text-shadow: 0 0 10px rgba(212, 160, 23, 0.5), 0 0 20px rgba(212, 160, 23, 0.3), 0 0 30px rgba(212, 160, 23, 0.2);
    }
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    transition: var(--transition-medium);
    padding: 1.8rem 0;
}

.main-header.header-scrolled {
    padding: 1.2rem 0;
    box-shadow: var(--shadow-medium);
    background-color: rgba(255, 255, 255, 0.98);
}

.main-header.header-scrolled .main-nav a {
    color: #000000;
    font-weight: 600;
}

.main-header.header-scrolled .logo-tagline {
    color: var(--primary-gold-dark);
    font-weight: 600;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.main-header.header-scrolled .logo-tagline::after {
    background-color: var(--primary-gold-dark);
    height: 2px;
    box-shadow: 0 0 4px rgba(212, 160, 23, 0.7);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    position: relative;
    transition: var(--transition-medium);
    text-align: center;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 4px;
    margin-bottom: 0;
    line-height: 1;
}

.logo-tagline {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 3px;
    position: relative;
    text-transform: lowercase;
    display: block;
    margin-top: -5px;
}

.logo-tagline::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: var(--primary-gold);
    bottom: -3px;
    left: 10%;
    box-shadow: 0 0 3px rgba(212, 160, 23, 0.5);
}

/* Removed decorative dots around logo */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 110;
    transition: var(--transition-medium);
    transform: rotate(0deg);
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-fast);
}

.main-nav ul {
    display: flex;
    gap: 3.5rem;
}

.main-nav a {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000000;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-medium);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-gold);
    font-weight: 700;
}

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

/* ===== HERO SECTION (DIAGONAL) ===== */
.hero-diagonal {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--cream);
}

.diagonal-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5)), url('https://cdn.pixabay.com/photo/2019/03/08/20/17/beauty-salon-4043096_1280.jpg') center/cover;
}

.diagonal-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.4), transparent 80%);
    z-index: 2;
}

.diagonal-content {
    width: 100%;
    padding: 15rem 0 20rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-text {
    width: 50%;
    color: var(--white);
    padding-left: 10%;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    line-height: 1.1;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-text h1 span {
    color: var(--primary-gold);
    display: block;
    letter-spacing: 3px;
}

.hero-text p {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
    max-width: 80%;
    color: white;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
    font-weight: 400;
}

.btn-group {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-decoration {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 70%;
    z-index: 3;
}

.floating-circle {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 180px;
    height: 180px;
    border: 15px solid rgba(212, 160, 23, 0.25);
    border-radius: 50%;
    animation: floatAnimation 8s ease-in-out infinite, rotateAnimation 15s linear infinite;
}

.floating-square {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 120px;
    height: 120px;
    border: 10px solid rgba(255, 255, 255, 0.15);
    transform: rotate(45deg);
    animation: floatAnimation 6s ease-in-out infinite reverse;
}

.gold-accent {
    position: absolute;
    top: 40%;
    right: 40%;
    width: 250px;
    height: 2px;
    background-color: var(--primary-gold);
    transform: rotate(-45deg);
    box-shadow: 0 0 15px 3px rgba(212, 160, 23, 0.6);
    animation: pulseAnimation 3s ease-in-out infinite;
}

.gold-accent::before,
.gold-accent::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background-color: var(--primary-gold-light);
    left: 15%;
    animation: pulseAnimation 3s ease-in-out infinite 1.5s;
}

.gold-accent::before {
    top: -10px;
}

.gold-accent::after {
    bottom: -10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 10;
    animation: fadeIn 1s ease 2s forwards;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 2rem;
    margin-top: 0.8rem;
    animation: bounceY 2s ease-in-out infinite;
    color: var(--primary-gold-light);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    display: block;
    width: 100%;
}

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

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseAnimation {
    0%, 100% {
        opacity: 0.7;
        box-shadow: 0 0 10px 1px rgba(212, 160, 23, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px 3px rgba(212, 160, 23, 0.7);
    }
}

@keyframes bounceY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 8px;
    box-sizing: border-box;
}</invoke>

.btn:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

.btn:focus:not(:focus-visible) {
    outline: none;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-gold), var(--primary-gold-light));
    z-index: -1;
    transition: transform 0.6s;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}

.btn-primary {
    color: var(--white);
    box-shadow: var(--gold-shadow);
}

.btn-primary:before {
    transform: scaleY(1);
}

.btn-primary:hover:before {
    transform: scaleX(0);
    transform-origin: right center;
}

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

.btn-outline {
    color: var(--primary-gold);
    box-shadow: 0 0 0 2px var(--primary-gold);
    backdrop-filter: blur(5px);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.btn-outline:before {
    transform: scaleX(0);
}

.btn-outline:hover:before {
    transform: scaleX(1);
}

.btn-outline:hover {
    color: var(--dark);
    box-shadow: 0 0 0 2px var(--primary-gold);
    transform: translateY(-3px);
}

.btn i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 12rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
}

.section-title span {
    color: var(--primary-gold);
    position: relative;
}

.section-title span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(212, 160, 23, 0.15);
    z-index: -1;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.section-decoration .line {
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
}

.section-decoration .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    position: relative;
}

.section-decoration .dot::before,
.section-decoration .dot::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    opacity: 0.5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseExpand 3s infinite;
}

.section-decoration .dot::after {
    animation-delay: 1.5s;
}

@keyframes pulseExpand {
    0% {
        width: 8px;
        height: 8px;
        opacity: 0.5;
    }
    50% {
        opacity: 0;
    }
    100% {
        width: 24px;
        height: 24px;
        opacity: 0;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background-color: var(--cream-dark);
    z-index: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.services-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 40%;
    background-color: var(--cream-dark);
    z-index: 0;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    opacity: 0.7;
}

.asymmetrical-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .asymmetrical-grid {
        gap: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.service-card {
    background-color: var(--white);
    padding: 4.5rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 5;
    width: calc(33.33% - 2rem);
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-height: 300px;
}

.service-card.feature-card,
.service-card.wide-card {
    box-shadow: var(--shadow-small);
    width: calc(33.33% - 2rem);
}

@media screen and (max-width: 768px) {
    .service-card.feature-card,
    .service-card.wide-card {
        width: 100%;
        margin-bottom: 2rem;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--white), var(--cream-dark));
}

.service-icon {
    font-size: 3.8rem;
    color: var(--primary-gold);
    margin-bottom: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: var(--cream-dark);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: var(--transition-medium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 768px) {
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

.service-card:hover .service-icon {
    background: linear-gradient(to right bottom, var(--primary-gold-light), var(--primary-gold));
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.service-card h3 {
    color: var(--dark);
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .service-card h3 {
        font-size: 2.6rem;
        margin-bottom: 1.2rem;
    }
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

@media screen and (max-width: 768px) {
    .service-card p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-gold);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: auto;
}

.service-link i {
    margin-left: 1rem;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(8px);
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 150px;
    background: linear-gradient(to bottom right, transparent 50%, rgba(212, 160, 23, 0.1) 50%);
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .card-decoration {
        width: 100px;
    }
}

/* ===== PARALLAX QUOTE SECTION ===== */
.parallax-quote {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://cdn.pixabay.com/photo/2022/07/06/12/04/candles-7304948_1280.jpg') center/cover fixed;
    filter: brightness(0.2);
    z-index: 1;
}

.parallax-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.3), rgba(0, 0, 0, 0.4));
}

.quote-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding: 1.5rem 3rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.quote-content::before,
.quote-content::after {
    content: """;
    font-family: var(--heading-font);
    font-size: 12rem;
    position: absolute;
    color: rgba(212, 160, 23, 0.5);
    line-height: 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.quote-content::before {
    top: 30px;
    left: 0;
}

.quote-content::after {
    content: """;
    bottom: -30px;
    right: 0;
}

.quote-content blockquote {
    font-family: var(--heading-font);
    font-size: 3.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    position: relative;
    color: #ffffff;
    font-weight: 500;
}</invoke>

.quote-content cite {
    font-size: 1.8rem;
    font-style: normal;
    color: var(--primary-gold-light);
    letter-spacing: 2px;
    position: relative;
}

.quote-content cite::before {
    content: "—";
    margin-right: 10px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

.pricing-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    z-index: 0;
}

.pricing-decoration.left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, rgba(212, 160, 23, 0) 70%);
    animation: rotateSlow 30s linear infinite;
}

.pricing-decoration.right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, rgba(212, 160, 23, 0) 70%);
    animation: rotateSlow 30s linear infinite reverse;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pricing-tabs {
    position: relative;
    z-index: 1;
}

.tab-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 5rem;
    gap: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 1.2rem 2.5rem;
    background-color: var(--white);
    color: var(--dark);
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    min-width: 180px;
    text-align: center;
}

.tab-btn:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

.tab-btn:focus:not(:focus-visible) {
    outline: none;
}

.tab-btn:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold-light);
    transform: translateY(-3px);
    background-color: var(--cream);
}

.tab-btn.active {
    background: linear-gradient(to right, var(--primary-gold), var(--primary-gold-dark));
    color: var(--white);
    box-shadow: var(--gold-shadow);
    border-color: transparent;
    transform: translateY(-5px);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

.price-list {
    max-width: 900px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    border-left: 5px solid transparent;
}

.price-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.05) 0%, rgba(255, 255, 255, 0) 80%);
    transition: var(--transition-medium);
    opacity: 0;
}

.price-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-left: 5px solid var(--primary-gold);
}

.price-item:hover::before {
    opacity: 1;
}

.service-name {
    font-weight: 600;
    font-size: 1.8rem;
    flex: 1;
    position: relative;
    padding-left: 1rem;
    transition: var(--transition-medium);
}

.subcategory-title {
    font-family: var(--heading-font);
    font-size: 2.6rem;
    color: var(--primary-gold);
    margin: 2.5rem 0 1.5rem;
    text-align: center;
    position: relative;
}

.price-item:hover .service-name {
    transform: translateX(5px);
}

.price-dots {
    flex: 1;
    height: 1px;
    background-image: linear-gradient(to right, var(--gray) 25%, transparent 0%);
    background-position: bottom;
    background-size: 6px 1px;
    background-repeat: repeat-x;
    margin: 0 2rem;
}

.price {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-gold);
    text-align: right;
    position: relative;
}

.price::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(212, 160, 23, 0.1);
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-medium);
}

.price-item:hover .price::before {
    opacity: 1;
    right: -5px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-decoration {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, rgba(212, 160, 23, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: rotateSlow 30s linear infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.about-content {
    padding-right: 3rem;
}

.about-text {
    margin-bottom: 3.5rem;
}

.about-text p {
    color: var(--dark);
    font-size: 1.7rem;
    position: relative;
}

.about-text p:first-child::first-letter {
    font-size: 3.5rem;
    color: var(--primary-gold);
    float: left;
    line-height: 0.8;
    margin: 6px 8px 0 0;
    font-family: var(--heading-font);
    font-weight: 700;
}

.qualification-badge {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition-medium);
}

.qualification-badge::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, rgba(212, 160, 23, 0) 70%);
    z-index: 0;
}

.qualification-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.qualification-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.qualification-icon i {
    font-size: 2.4rem;
    color: var(--white);
}

.qualification-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.qualification-content h4 {
    font-size: 2.4rem;
    color: var(--primary-gold-dark);
    margin-bottom: 0.8rem;
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.qualification-content p {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.about-quote {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 2.4rem;
    color: var(--primary-gold);
    margin: 4rem 0;
    padding-left: 3rem;
    border-left: 3px solid var(--primary-gold);
    line-height: 1.4;
    position: relative;
}

.about-quote::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(212, 160, 23, 0.1);
    left: -25px;
    top: -15px;
    z-index: -1;
    border-radius: 50%;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-style: italic;
    color: var(--primary-gold);
    position: relative;
    margin-left: 2rem;
    transform: rotate(-5deg);
    display: inline-block;
}

.signature::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-gold-light);
    bottom: 0;
    right: 0;
}

.image-stack {
    position: relative;
    height: 650px;
}

.image-container {
    position: absolute;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-slow);
}

.image-container.primary {
    top: 0;
    left: 0;
    width: 70%;
    height: 65%;
    z-index: 2;
    transform: rotate(-3deg);
}

.image-container.secondary {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    z-index: 1;
    transform: rotate(3deg);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    transform: scale(1.1);
    /* Ensure images are visible by default */
    transform: scale(1.1) translateY(0) !important;
}

.image-container:hover {
    transform: rotate(0) translateY(-10px);
    z-index: 10;
}

.image-container:hover img {
    transform: scale(1);
}

.floating-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 12px solid var(--primary-gold-light);
    z-index: 3;
    top: 35%;
    left: -40px;
    animation: floatAnimation 8s ease-in-out infinite;
    opacity: 0.7;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
    padding-top: 15rem;
    padding-bottom: 15rem;
}

@media screen and (max-width: 768px) {
    .booking-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* Contact Options Styling */
.contact-options-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: var(--transition-medium);
}

.contact-options-container:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-5px);
}

.contact-options {
    padding: 4rem;
    position: relative;
}

.contact-heading {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.contact-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-gold), var(--primary-gold-light));
}

.contact-subheading {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 3.5rem;
}

.contact-option-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.full-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    cursor: pointer;
}

.contact-option-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-gold), var(--primary-gold-light));
    transition: var(--transition-medium);
}

.contact-option-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-small);
}

.contact-option-item:hover::before {
    width: 8px;
}

.contact-option-item::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    opacity: 0;
    transition: var(--transition-medium);
}

.contact-option-item:hover::after {
    opacity: 1;
    right: 15px;
}

.contact-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
    color: var(--primary-gold);
}

.contact-option-item:hover .contact-option-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.3);
}

.contact-option-icon i {
    font-size: 2.4rem;
}

.whatsapp-icon {
    color: #25D366;
}

.email-icon {
    color: var(--accent-color);
}

.contact-option-content {
    flex: 1;
}

.contact-option-content h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-option-content p {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.contact-link {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    transition: var(--transition-medium);
    display: inline-block;
    position: relative;
}

.contact-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition-medium);
}

.contact-link:hover {
    color: var(--primary-gold-dark);
}

.contact-link:hover::after {
    width: 100%;
}

.whatsapp-link:hover {
    color: #25D366;
}

.email-link:hover {
    color: var(--accent-color);
}

.contact-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    z-index: -1;
    opacity: 0.2;
}

.decoration-element {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 15px solid var(--primary-gold-light);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
}

.booking-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://cdn.pixabay.com/photo/2017/08/07/22/57/lake-2608425_1280.jpg') center/cover;
    opacity: 0.035;
    z-index: 0;
}

.booking-decoration {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, rgba(212, 160, 23, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: rotateSlow 30s linear infinite;
}

.booking-content {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 992px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
        align-items: center;
    }

    .booking-info {
        text-align: center;
        max-width: 95%;
        margin: 0 auto;
    }
}

.booking-info {
    padding: 2rem;
    position: relative;
}

.booking-description p {
    margin-bottom: 3.5rem;
    font-size: 1.7rem;
}

.booking-features {
    list-style: none;
    margin-top: 3rem;
}

.booking-features li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    position: relative;
    padding-left: 2rem;
}

.booking-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 50%;
}

.booking-features li i {
    color: var(--primary-gold);
    margin-right: 1.2rem;
    font-size: 1.8rem;
}

.booking-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    padding: 5rem;
    position: relative;
    z-index: 2;
    transform: translateY(-30px) rotate(2deg);
    transition: var(--transition-medium);
}

.booking-form-container:hover {
    transform: translateY(-35px) rotate(0);
    box-shadow: var(--shadow-large);
}

@media screen and (max-width: 768px) {
    .booking-form-container {
        padding: 3rem 2rem;
        transform: translateY(0) rotate(0);
        width: 100%;
        margin: 0 auto;
        max-width: 95%;
        box-sizing: border-box;
    }

    .booking-form-container:hover {
        transform: translateY(0) rotate(0);
    }
}

.booking-form-container::before {
    content: "";
    position: absolute;
    width: 95%;
    height: 100%;
    top: 15px;
    left: 0;
    background-color: rgba(212, 160, 23, 0.08);
    z-index: -1;
    border-radius: var(--border-radius);
}

@media screen and (max-width: 768px) {
    .booking-form-container::before {
        width: 100%;
        top: 15px;
        left: 0;
        height: 102%;
    }
}

.booking-form .form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

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

@media screen and (max-width: 576px) {
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 1.4rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    color: var(--dark);
    font-size: 1.6rem;
    outline: none;
    transition: var(--transition-medium);
}

@media screen and (max-width: 576px) {
    .floating-label input,
    .floating-label textarea {
        font-size: 1.6rem;
        padding: 1.2rem 0;
    }
}

.floating-label label {
    position: absolute;
    top: 1.4rem;
    left: 0;
    color: var(--gray);
    font-size: 1.6rem;
    transition: var(--transition-medium);
    pointer-events: none;
}

.floating-label textarea {
    height: 100px;
    resize: none;
}

.floating-label input:focus,
.floating-label textarea:focus {
    border-bottom-color: var(--primary-gold);
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 2px var(--primary-gold-light);
}

.floating-label input:focus ~ label,
.floating-label input:valid ~ label,
.floating-label textarea:focus ~ label,
.floating-label textarea:valid ~ label {
    top: -20px;
    font-size: 1.4rem;
    color: var(--primary-gold);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-medium);
}

.floating-label input:focus ~ .focus-border,
.floating-label textarea:focus ~ .focus-border {
    width: 100%;
}

.select-group,
.date-group {
    position: relative;
}

.select-group select,
.date-group input[type="date"] {
    width: 100%;
    padding: 1.4rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    color: var(--dark);
    font-size: 1.6rem;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
}

@media screen and (max-width: 576px) {
    .select-group select,
    .date-group input[type="date"] {
        font-size: 1.6rem;
        padding: 1.2rem 0;
    }
}

.select-group label,
.date-group label {
    position: absolute;
    top: -20px;
    left: 0;
    color: var(--gray);
    font-size: 1.4rem;
}

.select-group select:focus,
.date-group input[type="date"]:focus {
    border-bottom-color: var(--primary-gold);
}

.select-group::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 1.4rem;
    right: 0;
    color: var(--primary-gold);
}

.booking-form .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    background: linear-gradient(to right, var(--primary-gold), var(--primary-gold-dark));
    color: var(--white);
    border: none;
    box-shadow: var(--gold-shadow);
    position: relative;
    overflow: hidden;
    min-height: 5.5rem;
    font-size: 1.6rem;
}

.booking-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.booking-form .btn:hover::before {
    left: 100%;
}

.booking-form .btn i {
    margin-left: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-card {
    background-color: var(--white);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    top: 0;
    left: 0;
    z-index: -1;
    transition: var(--transition-medium);
}

.contact-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-gold-light), var(--primary-gold), var(--primary-gold-dark));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    transition: var(--transition-medium);
    position: relative;
}

.card-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--primary-gold);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: rotateSlow 15s linear infinite;
    opacity: 0.5;
}

.contact-card:hover .card-icon {
    background: linear-gradient(to bottom right, var(--primary-gold-light), var(--primary-gold));
    transform: rotate(5deg);
}

.card-icon i {
    font-size: 2.8rem;
    color: var(--primary-gold);
    transition: var(--transition-medium);
}

.contact-card:hover .card-icon i {
    color: var(--white);
}

.contact-card h4 {
    margin-bottom: 2rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.contact-card h4::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-card p {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px dotted var(--cream-dark);
}

.hours-item:last-child {
    border-bottom: none;
}

.social-card .social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--cream-dark);
    color: var(--primary-gold);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-gold), var(--primary-gold-dark));
    top: 100%;
    left: 0;
    transition: var(--transition-medium);
    z-index: -1;
}

.social-icon:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

.social-icon:focus:not(:focus-visible) {
    outline: none;
}

.social-icon:hover {
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
}

.social-icon:hover::before {
    top: 0;
}

.map-container {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transform: rotate(-2deg);
    transition: var(--transition-medium);
}

.location-pointer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-gold);
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.4rem;
}

.location-pointer i {
    font-size: 2rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.map-container:hover {
    transform: rotate(0);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), transparent);
    z-index: 10;
    pointer-events: none;
}

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

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(45deg, var(--primary-gold-dark), var(--primary-gold), var(--primary-gold-light));
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before,
.newsletter-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-section::before {
    top: -100px;
    left: -100px;
}

.newsletter-section::after {
    bottom: -100px;
    right: -100px;
}

.newsletter-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.newsletter-content p {
    margin-bottom: 3.5rem;
    font-size: 1.8rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.newsletter-form .form-group {
    width: 100%;
    max-width: 650px;
    display: flex;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.newsletter-form input {
    flex: 1;
    padding: 2rem 2.5rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1.6rem;
    outline: none;
}

.newsletter-form button {
    padding: 2rem 3.5rem;
    background-color: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-medium);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    background-color: var(--dark-gray);
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    padding: 8rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
}

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

.footer-brand {
    margin-bottom: 2.5rem;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-logo::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-gold);
    bottom: -8px;
    left: 0;
}

.footer-brand p {
    color: #bdbdbd;
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-social a {
    color: #bdbdbd;
    font-size: 1.8rem;
    transition: var(--transition-medium);
}

.footer-social a:hover {
    color: var(--primary-gold);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: #f1f1f1;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-gold), var(--primary-gold-light));
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links a,
.footer-services a {
    color: #bdbdbd;
    transition: var(--transition-medium);
    position: relative;
    padding-left: 1.5rem;
}

.footer-links a::before,
.footer-services a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-gold);
    padding-left: 2rem;
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    left: 5px;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    color: #bdbdbd;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-right: 1.5rem;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
}

.copyright {
    color: #bdbdbd;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-links a {
    color: #bdbdbd;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1200px) {
    html {
        font-size: 56.25%; /* 9px */
    }

    .diagonal-content {
        padding: 12rem 0 18rem;
    }

    .hero-text {
        width: 60%;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 50%; /* 8px */
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        z-index: 100;
        transition: var(--transition-medium);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .main-nav li {
        margin: 2rem 0;
    }

    .hero-text {
        width: 80%;
        padding-left: 5%;
    }

    .service-card {
        width: calc(50% - 1.5rem);
    }

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

    .about-content {
        order: 2;
        padding-right: 0;
    }

    .image-stack {
        order: 1;
        height: 500px;
    }

    .booking-content {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        transform: translateY(0);
    }

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

@media screen and (max-width: 768px) {
    .hero-text {
        width: 100%;
        padding: 0 5%;
        text-align: center;
    }

    .hero-decoration {
        display: none;
    }

    .btn-group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 1.5rem 2rem;
    }

    .service-card {
        width: 100%;
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }

    .tab-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 4.8rem;
    }

    h2 {
        font-size: 3.8rem;
    }

    section {
        padding: 8rem 0;
    }

    .diagonal-wrapper {
        clip-path: none;
    }

    .diagonal-content {
        padding: 15rem 0 5rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }

    .newsletter-form button {
        margin-top: 1.5rem;
    }

    .booking-form-container {
        padding: 3rem 2rem;
    }
}

/* ===== DARK MODE STYLES ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --cream: #212020;
        --cream-dark: #2a2928;
        --dark: #f1f1f1;
        --dark-gray: #d0d0d0;
        --gray: #b0b0b0;
        --light-gray: #2a2a2a;
        --white: #121212;
    }

    .main-header {
        background-color: rgba(18, 18, 18, 0.95);
        border-bottom-color: rgba(212, 160, 23, 0.2);
    }

    .service-card, .price-item, .contact-card, .booking-form-container {
        background-color: rgba(30, 30, 30, 0.8);
    }

    .service-card:hover {
        background: linear-gradient(45deg, #1a1a1a, #2a2928);
    }

    .service-icon {
        background-color: #2a2928;
    }

    .floating-label input,
    .floating-label textarea,
    .select-group select,
    .date-group input[type="date"] {
        color: var(--dark-gray);
        border-bottom-color: #444;
    }

    .newsletter-form input {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--dark);
    }

    .main-nav a {
        color: var(--dark-gray);
    }

    /* Ensure footer text visibility in dark mode */
    .main-footer {
        background-color: #0a0a0a;
    }

    .footer-brand p,
    .footer-links a,
    .footer-services a,
    .footer-contact p,
    .copyright,
    .footer-bottom-links a,
    .footer-social a {
        color: #bdbdbd;
    }
}

/* ===== ADDITIONAL ANIMATIONS ===== */
@keyframes gradientBg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

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