:root {
    --primary-color: #e19aa8;
    --secondary-color:  #54b3ab;
    --accent-color:  #f8b7c0;
    --text-color: #2C363F;
    --background-color: white;
    --old-gold: #cfad43;
    --desert-storm: #f3f3f2;
    --oslo-gray: #8e9292;
    --shadow: #7d6c55;
    --cod-gray: #151314;
    --brandy: #dbc994;
    --silver-sand: #c1c6c5;
    --illusion: #f8b7c0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}

/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

/* Header & Navigation */

header {
    background-color: #F2DDD5;
    padding: 3rem 0 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    overflow: visible;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 20;
    overflow: visible;
}

.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.book-now-btn {
    background-color: var(--old-gold);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.book-now-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: relative;
}

.logo-wrapper {
    position: relative;
    margin: 0 5rem;
    z-index: 30;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    z-index: 40;
}

.logo-img {
    width: 250px;
    display: block;
}

.logo h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */

.hero {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    opacity: 0.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero h1 .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.hero h1 .highlight:hover {
    color: white;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: -5px;
    height: 70px;
    background: #F2DDD5;
    z-index: -1;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.hero h1 .highlight:hover::after {
    transform: rotate(4deg) scale(1.05);
    background: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 1rem;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #f8b7c0;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #f8b7c0;
    box-shadow: 0 4px 15px rgba(248, 183, 192, 0.2);
}

.btn-primary:hover {
    background-color: #f69caa;
    border-color: #f69caa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 183, 192, 0.3);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

/* Highlights Section */

.highlights {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(248, 183, 192, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    top: -100px;
    left: -100px;
    animation: float-orb 15s ease-in-out infinite;
}

.highlights::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(84, 179, 171, 0.3);
    border-radius: 50%;
    filter: blur(80px);
    bottom: -150px;
    right: -150px;
    animation: float-orb 18s ease-in-out infinite reverse;
}

.highlights .orb-center {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(207, 173, 67, 0.3);
    border-radius: 50%;
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-orb 20s ease-in-out infinite;
    z-index: 1;
}

.highlights h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #54b3ab;
    margin-bottom: 0.4rem;
}

.highlights p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-color);
}

.highlights .services-container {
    position: relative;
    width: 80%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlights .service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.highlights .service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.highlights .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlights .service-card:hover .service-image img {
    transform: scale(1.05);
}

.highlights .service-content {
    padding: 1.5rem;
}

.highlights .service-content h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.highlights .service-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.highlights .service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.highlights .service-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .highlights .services-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem;
    }
    
    .highlights h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .highlights .services-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .highlights .service-image {
        height: 200px;
    }
    
    .highlights h2 {
        font-size: 2rem;
    }
}

/* Testimonials */

.testimonials {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #fff5f7, white);
    overflow: hidden;
}

.orb-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(248, 183, 192, 0.5);
    top: -100px;
    left: 10%;
    animation: float-orb 15s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(84, 179, 171, 0.3);
    top: 20%;
    right: -100px;
    animation: float-orb 18s ease-in-out infinite reverse;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background-color: rgba(207, 173, 67, 0.3);
    bottom: -100px;
    left: 30%;
    animation: float-orb 20s ease-in-out infinite;
}

@keyframes float-orb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.testimonials .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #2D2D2D;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 280px));
    gap: 2rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.testimonial-text {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating {
    color: #f8b7c0;
    font-size: 0.9rem;
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.rating i {
    filter: drop-shadow(0 0 5px rgba(248, 183, 192, 0.5));
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-location {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.8rem;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 280px));
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1.5rem;
    }

    .testimonials h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: minmax(0, 280px);
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* About Section */

.about {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: var(--background-color);
}

.about-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    width: 80%;
    margin: 0 auto;
}

.about-image .main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-image:hover .main-image {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    right: -80px;
    bottom: 40px;
    background: white;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 220px;
    z-index: 3;
}

.floating-card .card-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.floating-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
    line-height: 1.2;
}

.floating-card p {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .floating-card {
        right: -40px;
        bottom: 20px;
        padding: 15px;
        width: 200px;
    }
}

.about-text {
    padding-right: 2rem;
}

.about-text h5 {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.about-text h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .stats-container {
        gap: 1.5rem;
    }

    .about-image {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */

.site-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-left h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    line-height: 1.2;
}

.newsletter-form {
    display: flex;
    margin-bottom: 2rem;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: center;
}

.payment-icons i {
    color: white;
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.payment-icons i:hover {
    transform: translateY(-2px);
}

.payment-methods img {
    height: 48px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

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

.menu-column h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.menu-column ul {
    list-style: none;
    padding: 0;
}

.menu-column ul li {
    margin-bottom: 0.5rem;
}

.menu-column ul a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.menu-column ul a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-credits {
    margin-top: 0.5rem;
}

.footer-credits a {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-left h3 {
        font-size: 1.5rem;
    }

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

    .social-links {
        justify-content: center;
    }

    .payment-methods {
        justify-content: center;
    }
}

/* Responsive Design */

@media (max-width: 1024px) {
    .main-nav {
        padding: 0 1.5rem;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-left, .nav-right {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        width: 100%;
        order: 3;
    }
    
    .logo-wrapper {
        margin: 1rem 0;
    }
    
    .logo {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
    }
    
    .logo-img {
        width: 200px;
        margin: 0 auto;
    }
    
    .book-now-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
}

/* Page Header */

.page-header {
    background-color: var(--accent-color);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: white;
    font-size: 1.2rem;
}

/* About Page New Styles */

.about-intro {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-feature {
    padding: 6rem 0;
    background-color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
}

.image-caption {
    position: absolute;
    bottom: -2rem;
    left: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.quote-mark {
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.image-caption p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.caption-author {
    font-size: 0.9rem;
    color: #666;
}

.feature-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.feature-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem 0;
}

.about-mission {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.mission-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
}

.star-decoration {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.mission-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 992px) {
    .intro-content h1 {
        font-size: 2.8rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mission-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .intro-content h1 {
        font-size: 2.2rem;
    }

    .feature-content h2,
    .mission-header h2 {
        font-size: 2rem;
    }

    .image-caption {
        left: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* About Page Styles */

.about-story {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.our-values {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

/* Services Page Styles */

.services-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    padding: 4rem 15%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.services-grid .orb-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.services-grid .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.services-grid .orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.3;
    top: -100px;
    left: -100px;
}

.services-grid .orb-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary-color);
    opacity: 0.2;
    bottom: -150px;
    right: -100px;
}

.services-grid .orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.services-images .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.services-images .grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    background: #fff;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.services-images .grid-image:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.services-images .grid-image:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.services-images .grid-image:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

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

.services-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.services-content h5 {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.services-content > p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

.service-highlights {
    margin-top: 2rem;
}

.service-highlights h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-highlights p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .services-images .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
        gap: 1.2rem;
        max-width: 100%;
    }
    .services-images .grid-image {
        border-radius: 18px;
        min-height: 180px;
    }
    .services-images .grid-image:nth-child(1),
    .services-images .grid-image:nth-child(2),
    .services-images .grid-image:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Services Page Specific Styles */
.services-page {
    padding-top: 2rem;
}

.services-page .services-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4rem;
}

.services-page .service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.services-page .service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.services-page .service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.services-page .service-card {
    background: rgba(255, 255, 255, 0.9);
}

.services-page .service-image {
    height: 300px;
}

.service-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.view-more-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    width: 80%;
    max-width: 800px;
    border-radius: 15px;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

.services-list {
    margin-top: 2rem;
}

.service-category {
    margin-bottom: 2rem;
}

.service-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-category ul {
    list-style: none;
    padding-left: 1rem;
}

.service-category li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-category li:before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.bespoke-note {
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    padding: 1rem 0 0;
    margin: 0;
}

@media (max-width: 992px) {
    .services-page .services-container {
        grid-template-columns: 1fr;
    }
    
    .services-page .service-image {
        height: 250px;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--bg-light);
}

.pricing .container {
    width: 80%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.pricing h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.pricing-card h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-card p {
    color: var(--text-color);
    opacity: 0.8;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing .container {
        width: 90%;
    }
}

/* Contact Page Styles */

.contact-section {
    padding: 6rem 15%;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.contact-section .orb-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.contact-section .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.contact-section .orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.3;
    top: -100px;
    left: -100px;
}

.contact-section .orb-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary-color);
    opacity: 0.2;
    bottom: -150px;
    right: -100px;
}

.contact-section .orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-section h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-form p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.1);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-item p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.info-item a,
.info-item address {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-top: 0.5rem;
}

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

.map-section {
    padding: 0 15% 6rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-section {
    padding: 6rem 15%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq-section .orb-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-color);
    line-height: 1.2;
    text-transform: uppercase;
}

.faq-content {
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section,
    .map-section,
    .faq-section {
        padding: 4rem 2rem;
    }

    .faq-header h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Features Section */

.features {
    padding: 6rem 0;
    width: 65%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.features::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    top: -30px;
    left: -30px;
    z-index: -1;
}

.features::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    bottom: -30px;
    right: -30px;
    z-index: -1;
}

.features .tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.features-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.intro-left h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-color);
}

.intro-left h2 .highlight {
    color: var(--secondary-color);
}

.intro-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-right p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-card .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .icon i {
    font-size: 1.2rem;
    color: white;
}

.card-content h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .features-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .intro-left h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-100 { transition-delay: 100ms; }
.animate-delay-200 { transition-delay: 200ms; }
.animate-delay-300 { transition-delay: 300ms; }
.animate-delay-400 { transition-delay: 400ms; }
.animate-delay-500 { transition-delay: 500ms; }

.animate-fade-left {
    transform: translateX(-30px);
}

.animate-fade-right {
    transform: translateX(30px);
}

.animate-fade-up {
    transform: translateY(30px);
}

.animate-fade-down {
    transform: translateY(-30px);
}

.animate-scale {
    transform: scale(0.95);
}

.animate-on-scroll.animate-fade-left.animate,
.animate-on-scroll.animate-fade-right.animate,
.animate-on-scroll.animate-fade-up.animate,
.animate-on-scroll.animate-fade-down.animate {
    transform: translate(0);
}

.animate-on-scroll.animate-scale.animate {
    transform: scale(1);
}

/* Decorative shapes and stickers */

.sticker-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sticker {
    position: absolute;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: float 20s ease-in-out infinite;
    white-space: nowrap;
    transform: rotate(var(--rotation));
}

.sticker-1 {
    top: 15%;
    left: 8%;
    --rotation: -15deg;
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
}

.sticker-2 {
    top: 25%;
    right: 12%;
    --rotation: 10deg;
    background: var(--accent-color);
    color: white;
    border-radius: 8px;
}

.sticker-3 {
    bottom: 35%;
    left: 15%;
    --rotation: 8deg;
    background: var(--old-gold);
    color: white;
    border-radius: 15px;
}

.sticker-4 {
    bottom: 25%;
    right: 18%;
    --rotation: -12deg;
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
}

.sticker-5 {
    top: 45%;
    left: 75%;
    --rotation: 5deg;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
}

.deco-shape {
    position: absolute;
    pointer-events: none;
    width: 40px;
    height: 40px;
    animation: float 25s ease-in-out infinite;
    opacity: 0.85;
    filter: brightness(1.1) blur(4px);
}

.deco-shape.scroll-rotate {
    animation: none;
    transition: transform 0.1s ease-out;
}

.shape-1 {
    top: 8%;
    left: 35%;
    width: 45px;
    height: 45px;
    animation-delay: -2s;
}

.shape-2 {
    top: 65%;
    left: 12%;
    width: 38px;
    height: 38px;
    animation-delay: -5s;
}

.shape-3 {
    bottom: 15%;
    left: 45%;
    width: 42px;
    height: 42px;
    animation-delay: -8s;
}

.shape-4 {
    top: 12%;
    right: 25%;
    width: 40px;
    height: 40px;
    animation-delay: -3s;
}

.shape-5 {
    top: 55%;
    right: 35%;
    width: 36px;
    height: 36px;
    animation-delay: -6s;
}

.shape-6 {
    bottom: 25%;
    right: 15%;
    width: 44px;
    height: 44px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(8px, -8px);
    }
    50% {
        transform: translate(0, -15px);
    }
    75% {
        transform: translate(-8px, -8px);
    }
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.top-badge {
    position: absolute;
    top: -10px;
    left: 0;
    background: var(--secondary-color);
    color: white;
    animation: float 20s ease-in-out infinite;
}

.bottom-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--accent-color);
    color: white;
    animation: float 22s ease-in-out infinite;
    animation-delay: -3s;
}

.side-badge {
    position: absolute;
    top: 20px;
    right: -15px;
    background: var(--old-gold);
    color: white;
    animation: float 24s ease-in-out infinite;
    animation-delay: -5s;
}

@media (max-width: 768px) {
    .badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .top-badge {
        top: -5px;
        left: 10px;
    }
    
    .bottom-badge {
        bottom: 20px;
        right: -10px;
    }
    
    .side-badge {
        top: 10px;
        right: -10px;
    }
}

.content-box {
    background-color: #F2DDD5;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.content-box h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.content-box h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.content-box p {
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .content-box {
        padding: 25px;
        border-radius: 20px;
    }
    
    .content-box h2 {
        font-size: 2rem;
    }
}

/* Gallery Page Styles */
.gallery-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.gallery-section .container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-section .orb-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.gallery-section .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.gallery-section .orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.3;
    top: -100px;
    left: -100px;
}

.gallery-section .orb-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary-color);
    opacity: 0.2;
    bottom: -150px;
    right: -100px;
}

.gallery-section .orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 154, 168, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.view-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.view-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 20px;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
}

#modalImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.modal-info h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.modal-info p {
    color: #666;
    line-height: 1.6;
}

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

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    #modalImage {
        height: 250px;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(248, 183, 192, 0.1), rgba(84, 179, 171, 0.1));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    width: 80%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-section .btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s ease, background-color 0.3s ease;
    gap: 0.5rem;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-section .container {
        width: 90%;
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: calc(2rem - 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator i {
    font-size: 1.375rem;
    color: white;
    animation: pulse-down 2s infinite;
}

@keyframes pulse-down {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(6px) scale(1.08);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Lazy Loading Styles */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: #f8f8f8;
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: lazy-loading-pulse 1.5s ease-in-out infinite;
}

.lazy.loaded {
    opacity: 1;
    background: none;
    animation: none;
}

@keyframes lazy-loading-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Ensure images maintain aspect ratio during loading */
img[loading="lazy"] {
    min-height: 200px;
    object-fit: cover;
}

/* Specific adjustments for different image types */
.service-image img[loading="lazy"] {
    min-height: 250px;
}

.main-image[loading="lazy"] {
    min-height: 400px;
}

.grid-image[loading="lazy"] {
    min-height: 200px;
}

/* Smooth transition when images load */
img {
    transition: opacity 0.3s ease-in-out;
}

/* Loading indicator for images */
.image-loading {
    position: relative;
    overflow: hidden;
}

.image-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.services-images-flex {
  display: flex;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  align-items: stretch;
}

.left-img img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 320px;
  min-width: 220px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.right-imgs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

.right-imgs img {
  width: 220px;
  height: 200px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
  .services-images-flex {
    flex-direction: column;
    gap: 1.2rem;
    max-width: 100%;
    align-items: center;
  }
  .left-img img, .right-imgs img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-width: 0;
  }
  .right-imgs {
    flex-direction: row;
    gap: 1.2rem;
    justify-content: center;
  }
}

.services-images-corrected {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
}

.left-img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  flex-shrink: 0;
}

.right-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.img-small {
  width: 220px;
  height: 65px !important;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.img-large {
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
  .services-images-corrected {
    flex-direction: column;
    gap: 0.6rem;
    max-width: 100%;
    align-items: center;
  }
  .left-img, .img-large {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }
  .img-small {
    width: 100%;
    max-width: 100%;
    height: 65px !important;
  }
  .right-col {
    flex-direction: row;
    gap: 0.6rem;
    justify-content: center;
  }
}
