/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #9b4f9e;
    --accent-color: #7b3f7e;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-cta-button {
    background: #7b3f7e !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    transition: all 0.3s !important;
}

.nav-cta-button:hover {
    background: #9b4f9e !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 63, 126, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(200, 180, 210, 0.3) 0%, rgba(180, 170, 200, 0.4) 100%);
    display: flex;
    align-items: center;
    color: var(--primary-color);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 180, 210, 0.6) 0%, rgba(180, 170, 200, 0.5) 100%),
                url('public/images/hot-nisha.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

@media (min-width: 1920px) {
    .hero-main-bg {
        background-size: contain;
        background-position: center bottom;
    }
}

.hero-main-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(200, 180, 210, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 1100px;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--primary-color);
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.2rem;
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #8b4789;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.4;
}

@media (min-width: 1400px) {
    .hero-subtitle {
        font-size: 1.8rem;
    }
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

.hero-intro {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-color);
}

.hero-intro strong,
.hero-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #7b3f7e;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(123, 63, 126, 0.3);
}

.cta-button:hover {
    background: #9b4f9e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 63, 126, 0.4);
}

.cta-button-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* WhatsApp Button Styles */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-nav {
    background: #25D366;
    color: var(--white);
}

.whatsapp-nav:hover {
    background: #128C7E;
}

/* Hero Images Section */
.hero-images {
    display: none;
}

.hero-image {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: scale(1.05) !important;
    z-index: 10 !important;
}

.hero-image-1 {
    width: 260px;
    height: 350px;
    border-radius: 40% 40% 40% 40% / 50% 50% 50% 50%;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.hero-image-2 {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    top: 50px;
    right: 20px;
    z-index: 4;
}

.hero-image-3 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    bottom: 30px;
    left: 0;
    z-index: 2;
}

.hero-image-4 {
    width: 260px;
    height: 340px;
    border-radius: 40% 40% 40% 40% / 50% 50% 50% 50%;
    bottom: 50px;
    right: 40px;
    z-index: 1;
}

.hero-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9b4f9e 0%, #7b3f7e 100%);
    position: relative;
}

.hero-image-1 .image-placeholder {
    background: linear-gradient(135deg, #7b3f7e 0%, #9b4f9e 100%);
}

.hero-image-2 .image-placeholder {
    background: linear-gradient(135deg, #9b4f9e 0%, #b66fb9 100%);
}

.hero-image-3 .image-placeholder {
    background: linear-gradient(135deg, #7b3f7e 0%, #9b4f9e 100%);
}

.hero-image-4 .image-placeholder {
    background: linear-gradient(135deg, #4a5f7a 0%, #6b7f9a 100%);
}

.hero-image .image-placeholder::after {
    content: 'Elite Model';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.qr-code {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.qr-code::after {
    content: 'QR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Introduction Section */
.intro-section {
    padding: 7rem 0;
    background: var(--white);
    text-align: center;
}

.intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1400px) {
    .intro-section h2 {
        font-size: 3.2rem;
    }
}

.intro-text {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 2rem;
}

.intro-section p {
    font-size: 1.1rem;
    max-width: 1100px;
    margin: 1rem auto;
    line-height: 1.8;
}

@media (min-width: 1600px) {
    .intro-section p {
        max-width: 1200px;
    }
}

/* Defines Section */
.defines-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.defines-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.defines-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-style: italic;
}

.defines-content {
    max-width: 900px;
    margin: 0 auto;
}

.defines-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-list {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.feature-item .bullet {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Elite Experience Section */
.elite-experience-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(200, 180, 210, 0.2) 0%, rgba(220, 200, 230, 0.3) 100%);
}

.elite-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.elite-experience-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(123, 63, 126, 0.3);
    border: 8px solid #7b3f7e;
    max-width: 500px;
}

.elite-experience-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 1400px) {
    .elite-experience-image {
        max-width: 600px;
    }
}

.elite-experience-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.elite-experience-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.elite-experience-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.elite-features {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.elite-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.elite-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #7b3f7e;
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 968px) {
    .elite-experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: var(--white);
}

.why-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.why-content {
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    .why-content {
        max-width: 1200px;
    }
}

.why-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-content .highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.why-content .highlight-2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.why-content .tagline-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: var(--secondary-color);
    margin-top: 2rem;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.gallery-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1800px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
    }
}

.gallery-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #9b4f9e 0%, #7b3f7e 100%);
    position: relative;
}

.gallery-image-placeholder::after {
    content: 'Premium Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.gallery-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--light-bg);
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.gallery-item h4, .gallery-item .gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    padding: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.gallery-item p {
    padding: 0 1rem 1.5rem;
    text-align: center;
    color: var(--accent-color);
}

.gallery-buttons {
    display: flex;
    gap: 0.8rem;
    padding: 0 1rem 1.5rem;
    justify-content: center;
}

.gallery-btn {
    flex: 1;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-btn {
    background: #7b3f7e;
    color: var(--white);
}

.book-btn:hover {
    background: #9b4f9e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(123, 63, 126, 0.3);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Choose Section */
.choose-section {
    padding: 6rem 0;
    background: var(--white);
    color: var(--text-color);
}

.choose-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.choose-quote {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    padding: 1.5rem;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    letter-spacing: 1px;
    color: var(--primary-color);
}

.choose-content {
    max-width: 900px;
    margin: 0 auto;
}

.choose-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.choose-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    color: var(--secondary-color);
}

.choose-content .highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: italic;
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 0;
    background: var(--light-bg);
}

.services-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.services-preview h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin: 2rem 0;
    color: var(--secondary-color);
    font-style: italic;
}

.services-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    line-height: 1.8;
    color: var(--text-color);
}

.services-tagline {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--secondary-color);
    margin: 3rem 0 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff 100%);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #9b4f9e 0%, #7b3f7e 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(123, 63, 126, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 63, 126, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 0;
    color: var(--white);
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--white);
    font-weight: 300;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: rgba(255, 255, 255, 0.95);
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 2rem;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--white);
    color: var(--text-color);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #9b4f9e;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.8;
    color: var(--text-color);
}

.cta-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #7b3f7e;
    margin: 2rem auto !important;
}

.cta-final {
    font-size: 1.1rem;
    margin-bottom: 2rem !important;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #7b3f7e 0%, #9b4f9e 100%);
    color: var(--white);
    text-decoration: none;
    border: 2px solid #9b4f9e;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    margin-top: 2rem;
}

.cta-button-secondary:hover {
    background: linear-gradient(135deg, #9b4f9e 0%, #b66fb9 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 63, 126, 0.4);
}

/* Floating Gallery Section */
.floating-gallery-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #f8f4ff 0%, #e8dff5 100%);
    overflow: hidden;
    position: relative;
}

.floating-gallery-actions {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.floating-action-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.floating-action-button.primary {
    background: linear-gradient(135deg, #7b3f7e 0%, #9b4f9e 100%);
    color: var(--white);
}

.floating-action-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 63, 126, 0.4);
}

.floating-action-button.secondary {
    background: var(--white);
    color: #7b3f7e;
    border: 2px solid #9b4f9e;
}

.floating-action-button.secondary:hover {
    background: linear-gradient(135deg, #7b3f7e 0%, #9b4f9e 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 63, 126, 0.4);
}

.floating-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.floating-gallery-track {
    display: flex;
    gap: -50px;
    animation: floatingScroll 40s linear infinite;
    will-change: transform;
}

.floating-gallery-track:hover {
    animation-play-state: paused;
}

@keyframes floatingScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.floating-card {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    margin: 0 -40px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, z-index 0s;
}

.floating-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.floating-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(123, 63, 126, 0.3);
    border: 5px solid var(--white);
    background: linear-gradient(135deg, #9b4f9e 0%, #7b3f7e 100%);
}

.floating-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(123, 63, 126, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s;
}

.floating-card:hover img {
    transform: scale(1.05);
}

.floating-card-qr {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 8px;
    padding: 5px;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.floating-card:hover .floating-card-qr {
    transform: scale(1.1);
}

.floating-card-qr svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer */
.footer {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.footer-col .location {
    color: var(--accent-color);
    font-style: italic;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.footer-col ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #b66fb9;
}

.footer-links span {
    color: var(--accent-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d3d3d 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* About Page Styles */
.about-content {
    padding: 6rem 0;
    background: var(--white);
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.standards-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.standards-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
}

.standards-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0 6rem;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.contact-method {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-method p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 79, 158, 0.3);
}

.booking-info {
    margin: 5rem 0;
}

.booking-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    line-height: 1.6;
}

.contact-form-section {
    margin: 5rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

.contact-notes {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.contact-notes h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-notes ul {
    list-style: none;
    padding-left: 0;
}

.contact-notes li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.contact-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Services Page Styles */
.services-detail {
    padding: 4rem 0 6rem;
}

.services-intro-detail {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro-detail h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-intro-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-detail-card {
    background: var(--light-bg);
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-detail-content {
    padding: 2.5rem;
}

.service-detail-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.customization-section {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
}

.customization-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.customization-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Gallery Page Styles */
.gallery-page {
    padding: 4rem 0 6rem;
}

.gallery-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.gallery-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gallery-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.gallery-profile {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-profile:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.profile-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #9b4f9e 0%, #7b3f7e 100%);
    position: relative;
}

.profile-image-placeholder::after {
    content: 'Elite Companion';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.profile-details {
    padding: 2rem;
}

.profile-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.profile-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.profile-desc {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.profile-stats {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.profile-stats li {
    padding: 0.3rem 0;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.gallery-cta {
    text-align: center;
    margin: 5rem 0 2rem;
}

.gallery-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gallery-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Comprehensive Guide Section */
.comprehensive-guide {
    padding: 6rem 0;
    background: #f8f8f8;
}

.comprehensive-guide .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (min-width: 1600px) {
    .comprehensive-guide .container {
        max-width: 1600px;
    }
}

.comprehensive-guide h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
}

.guide-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 0;
    width: 100%;
}

@media (min-width: 1600px) {
    .guide-content {
        max-width: 1500px;
    }
}

.guide-content .intro-para {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: #444;
    font-weight: 400;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.guide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 4rem 0 2rem;
    color: #1a1a1a;
    padding-bottom: 1rem;
    border-bottom: none;
    font-weight: 600;
}

@media (min-width: 1400px) {
    .guide-content h3 {
        font-size: 2.4rem;
    }
}

.guide-content p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: #444;
    font-weight: 400;
}

.guide-content strong {
    color: #7b3f7e;
    font-weight: 700;
}

/* Content Cards with Images */
.content-card-with-image {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin: 4.5rem auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 1300px;
    width: 100%;
}

.content-card-with-image.reverse {
    flex-direction: row-reverse;
}

.content-card-image {
    position: relative;
    min-width: 450px;
    width: 450px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    align-self: flex-start;
}

@media (min-width: 1600px) {
    .content-card-image {
        min-width: 550px;
        width: 550px;
    }
    
    .content-card-with-image {
        gap: 5rem;
        max-width: 1500px;
    }
}

@media (min-width: 1920px) {
    .content-card-with-image {
        max-width: 1600px;
    }
}

.content-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.image-qr-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.image-qr-overlay svg {
    width: 80px;
    height: 80px;
    display: block;
}

.scan-text {
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.content-card-text {
    flex: 1;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.content-card-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
    padding-bottom: 1rem;
    border-bottom: none;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
}

.content-card-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    max-width: 450px;
    height: 4px;
    background: #9b4f9e;
    border-radius: 2px;
}

.content-card-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    margin-top: 0;
    color: #666;
    text-align: left;
}

.content-card-text p:first-of-type {
    margin-top: 1.8rem;
}

.content-card-text p:last-of-type {
    margin-bottom: 0;
}

.content-card-text strong {
    color: #9b4f9e;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.content-card-text p strong:first-child {
    margin-top: 0;
}

.content-card-text p:has(strong) {
    margin-top: 1.5rem;
    margin-bottom: 1.3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-card-with-image,
    .content-card-with-image.reverse {
        flex-direction: column;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .content-card-image {
        min-width: 100%;
        width: 100%;
    }
    
    .content-card-text {
        padding: 0;
    }
    
    .content-card-text h3 {
        font-size: 2rem;
    }
    
    .content-card-text p {
        font-size: 1rem;
    }
}

/* Prime Locations Section */
.prime-locations-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f0f8 0%, #fff 100%);
}

.prime-locations-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
}

.locations-intro {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 4rem;
    color: #444;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.location-content {
    max-width: 1300px;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    .location-content {
        max-width: 1500px;
    }
}

.location-item {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(123, 63, 126, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 63, 126, 0.15);
}

.location-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #7b3f7e;
    padding-bottom: 1rem;
    border-bottom: 3px solid #9b4f9e;
    font-weight: 600;
}

.location-item p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #444;
    text-align: left;
}

.location-conclusion {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #9b4f9e 0%, #7b3f7e 100%);
    border-radius: 15px;
    color: var(--white);
}

.location-conclusion h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.location-conclusion p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Pricing Page Styles */
.pricing-section {
    padding: 4rem 0 6rem;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pricing-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured,
.pricing-card.premium {
    border: 2px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    background: var(--light-bg);
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.pricing-duration {
    color: var(--accent-color);
    font-weight: 600;
}

.pricing-body {
    padding: 2rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--accent-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.per-day {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.pricing-button:hover {
    background: #b66fb9;
}

.pricing-info {
    margin: 5rem 0;
}

.pricing-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.pricing-disclaimer {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.pricing-disclaimer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .floating-gallery-actions {
        gap: 1rem;
    }

    .floating-action-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .floating-card {
        width: 300px;
        height: 300px;
        margin: 0 -30px;
    }

    .floating-card-qr {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

.pricing-disclaimer p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-cta {
    text-align: center;
    margin: 4rem 0;
}

.pricing-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-main-bg {
        width: 100%;
        height: 50%;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-images {
        flex: 0 0 400px;
        height: 500px;
        margin: 0 auto;
    }

    .hero-image-1 {
        width: 200px;
        height: 270px;
    }

    .hero-image-2 {
        width: 240px;
        height: 240px;
    }

    .hero-image-3 {
        width: 200px;
        height: 250px;
    }

    .hero-image-4 {
        width: 190px;
        height: 250px;
    }

    .qr-code {
        width: 50px;
        height: 50px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .intro-section h2,
    .defines-section h2,
    .why-section h2,
    .gallery-section h2,
    .choose-section h2,
    .services-preview h2,
    .faq-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .info-grid,
    .gallery-full-grid,
    .pricing-grid,
    .info-boxes {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}