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

:root {
    --primary-color: #2c3e36;
    --secondary-color: #8b9d8f;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9f7;
    --border-light: #e5e7e4;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
    margin-top: 10px;
}

.nav-left {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
}

.nav-left a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-left a:hover {
    color: var(--secondary-color);
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}

.logo .tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.logo .location {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.cart-icon {
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--secondary-color);
}

.book-now-btn {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.book-now-btn:hover {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--white);
}

.logo-text {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.lotus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.logo-main {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.logo-sub {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-top {
    display: block;
    margin-bottom: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.logo-bottom {
    display: block;
    margin-top: 0.5rem;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.hero-content h2 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-address {
    margin-bottom: 2rem;
}

.hero-address p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--primary-color);
}

/* Booking Section */
.booking {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.booking h2 {
    color: #334137;
    margin-bottom: 1.5rem;
}

.booking-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334137;
}

.booking h3 {
    color: #334137;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Shop Section */
.shop {
    padding: 5rem 0;
    background: #e8f4f8;
    text-align: center;
}

.shop h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: var(--font-serif);
    font-size: 2.5rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.price {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.shop-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.shop-btn:hover {
    background: var(--secondary-color);
}

.shop-all-btn {
    display: inline-block;
    background: #f5f5dc;
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.shop-all-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.testimonials h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    text-align: left;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.testimonial blockquote {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial cite {
    color: var(--secondary-color);
    font-weight: 500;
    font-style: normal;
}

/* Gallery Section */
.gallery {
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.gallery-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -20px;
    padding: 2rem 0;
    width: 100%;
}

.gallery-item {
    width: 33.333vw;
    height: 33.333vw;
    max-height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0 -10px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.gallery-item:nth-child(2) {
    z-index: 2;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-bg);
    text-align: center;
}

.contact h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    text-align: left;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.submit-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--border-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-links a:hover svg {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1rem;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .booking h2,
    .shop h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .social-links svg {
        width: 18px;
        height: 18px;
    }
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Services Page Styles */
.services-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 80px;
    overflow: hidden;
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    z-index: 3;
}

.services-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-bg);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Services Section Styles */
.services-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.services-image {
    position: relative;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-content {
    padding: 2rem 0;
}

.services-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.services-accordion {
    margin-bottom: 2rem;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.accordion-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-sans);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 0;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 0 1.5rem 0;
}

.accordion-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
}

.accordion-content li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.accordion-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.services-cta {
    text-align: left;
    margin-top: 2rem;
}

.services-cta .cta-button {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-cta .cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Gallery Section Styles */
.gallery-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.gallery-overlap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item-overlap {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.gallery-item-overlap:nth-child(1) {
    transform: translateX(-60px) rotate(-2deg);
    z-index: 1;
}

.gallery-item-overlap:nth-child(2) {
    transform: translateX(0) rotate(0deg);
    z-index: 2;
}

.gallery-item-overlap:nth-child(3) {
    transform: translateX(60px) rotate(2deg);
    z-index: 1;
}

.gallery-item-overlap:hover {
    transform: translateX(0) rotate(0deg) scale(1.05);
    z-index: 3;
}

.gallery-item-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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



/* FAQs Section */
.faqs-section {
    padding: 6rem 0;
    background: var(--white);
}

.faqs-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.faqs-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.faq-item li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 1.1rem;
}

.faq-item li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-hero-image {
        height: 400px;
    }
    
    .services-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .services-cta {
        text-align: center;
    }
    
    .faq-item {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        height: 80vh;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-content h2 {
        font-size: 2rem;
    }
    
    .services-hero-image {
        height: 300px;
    }
    
    .feature-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .services-hero-image {
        height: 400px;
    }
    
    .services-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .services-cta {
        text-align: center;
    }
    
    .accordion-header {
        padding: 1rem 0;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlap {
        height: 280px;
    }
    
    .gallery-item-overlap {
        width: 240px;
        height: 240px;
    }
    
    .gallery-item-overlap:nth-child(1) {
        transform: translateX(-50px) rotate(-1.5deg);
    }
    
    .gallery-item-overlap:nth-child(3) {
        transform: translateX(50px) rotate(1.5deg);
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-hero-image {
        height: 300px;
    }
    
    .accordion-header {
        padding: 0.8rem 0;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .gallery-overlap {
        height: 250px;
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-item-overlap {
        position: relative;
        width: 200px;
        height: 200px;
        transform: none !important;
        margin: 0.5rem 0;
    }
    
    .gallery-item-overlap:hover {
        transform: scale(1.05) !important;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1003;
    position: relative;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background-color: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 1002;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.mobile-logo .tagline {
    font-size: 0.6rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-menu:hover {
    background-color: var(--light-bg);
}

.mobile-menu-links {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 200px;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu-links .mobile-book-now {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 1rem 1.5rem !important;
    border-radius: 25px;
    text-align: center;
    border: none;
    margin-top: 1rem;
}

.mobile-menu-links .mobile-book-now:hover {
    background: var(--primary-color);
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-left {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
        flex: 0 0 auto;
    }
    
    .nav-center {
        position: static;
        transform: none;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .nav-right {
        flex: 0 0 auto;
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem 20px;
    }
    
    .nav-center {
        flex: 1;
        justify-content: center;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo .tagline {
        font-size: 0.6rem;
    }
    
    .book-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 15px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo .tagline {
        font-size: 0.5rem;
    }
    
    .book-now-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu {
        width: 100%;
    }
    
    .mobile-menu-header {
        padding: 1.5rem 1rem;
    }
    
    .mobile-menu-links {
        padding: 1.5rem 1rem;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    z-index: 3;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* About Content Section */
.about-content-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.about-image {
    position: relative;
}

.about-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 2rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.about-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    font-family: var(--font-sans);
}

.about-text {
    margin-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-cta {
    text-align: left;
}

.about-cta .cta-button {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-cta .cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: var(--white);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.mission-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
    }
    
    .about-hero-image {
        height: 400px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content {
        height: auto;
    }
    
    .about-text {
        flex: none;
    }
    
    .about-content h3 {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .mission-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .mission-content h2 {
        font-size: 1.8rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
}

/* Logo Link Styles */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.mobile-logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.mobile-logo-link:hover {
    transform: scale(1.02);
}

/* New Services Hero Section */
.services-hero-new {
    padding: 6rem 0;
    background: transparent;
    margin-top: 80px;
}

.services-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-content {
    padding: 2rem;
    background: transparent;
    border-radius: 20px;
}

.services-hero-content h1 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

.services-hero-content .hero-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.services-hero-content .cta-button {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-hero-content .cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services-hero-image {
    position: relative;
}

.hero-office-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for New Services Hero */
@media (max-width: 768px) {
    .services-hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-hero-content {
        padding: 1.5rem;
    }
    
    .services-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .services-hero-content .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-office-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .services-hero-new {
        padding: 4rem 0;
    }
    
    .services-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-office-image {
        height: 250px;
    }
}