/* Base Styles */
:root {
    --primary-color: #c19a83; /* Warm earthy tone */
    --secondary-color: #8c6a56;
    --accent-color: #d4b8a7;
    --dark-color: #3a2e26;
    --light-color: #f5f0ec;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Preloader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #d4a373;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-icon .line {
    height: 2px;
    width: 100%;
    background: #333;
    transition: all 0.3s ease;
}

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

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

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

/* Footer improvements */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.newsletter-form .input-group {
    display: flex;
    margin-top: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: #d4a373;
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Header Styles */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(193, 154, 131, 0.1);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 8px;
}

.logo-image {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: logoFadeIn 0.6s ease-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 2px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Navigation Styles */
.primary-navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-list li {
    animation: navItemFadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.nav-list li:nth-child(1) { animation-delay: 0.1s; }
.nav-list li:nth-child(2) { animation-delay: 0.2s; }
.nav-list li:nth-child(3) { animation-delay: 0.3s; }
.nav-list li:nth-child(4) { animation-delay: 0.4s; }
.nav-list li:nth-child(5) { animation-delay: 0.5s; }
.nav-list li:nth-child(6) { animation-delay: 0.6s; }

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



.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    font-weight: 500;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 80px;
    text-align: center;
}

.nav-link i {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.nav-link span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    background-color: rgba(193, 154, 131, 0.08);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-link.active {
    background-color: rgba(193, 154, 131, 0.12);
    color: var(--primary-color);
}

.nav-link.active i {
    color: var(--primary-color);
}

.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

#language-toggle {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 15px;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 80px; /* Account for fixed header */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/backgrounds/hero-bg1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: heroContentFadeIn 1s ease-out;
}

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

.hero-title {
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

.hero-trust-indicators {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.trust-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    animation: ctaButtonsFadeIn 0.8s ease-out 0.5s both;
}

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

.hero-cta-primary,
.hero-cta-secondary,
.hero-cta-tertiary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff4757 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4), 
                0 4px 16px rgba(238, 90, 36, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 107, 107, 0.6), 
                0 8px 24px rgba(238, 90, 36, 0.4);
    color: white;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta-secondary:hover::before {
    opacity: 1;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px) scale(1.02);
    color: white;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hero-cta-tertiary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
}

.hero-cta-tertiary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.01);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* CTA Button Components */
.cta-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover .cta-icon-wrapper,
.hero-cta-secondary:hover .cta-icon-wrapper,
.hero-cta-tertiary:hover .cta-icon-wrapper {
    transform: scale(1.1);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 1;
}

.cta-text {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-subtext {
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.2;
}

.cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.hero-cta-primary:hover .cta-arrow,
.hero-cta-secondary:hover .cta-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Focus states for accessibility */
.hero-cta-primary:focus,
.hero-cta-secondary:focus,
.hero-cta-tertiary:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
    transform: translateY(-2px);
}

/* Active states */
.hero-cta-primary:active,
.hero-cta-secondary:active,
.hero-cta-tertiary:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

.hero-social-proof {
    margin-top: 20px;
}

.social-proof-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.social-proof-text i {
    color: #ffd700;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroVisualFadeIn 1.2s ease-out 0.3s both;
}

@keyframes heroVisualFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: white;
    transform: translateY(-3px);
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-down i {
    font-size: 1.2rem;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Featured Services */
.featured-services {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* About Preview */
.about-preview {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 0; /* padding moved to overlay */
}

.about-overlay {
    background-color: rgba(255, 255, 255, 0.9); /* soft white wash */
    padding: 80px 20px;
    backdrop-filter: blur(3px);
}

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

.about-content .lead-text {
    font-size: 1.15rem;
    color: #5a4a3c;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.about-content a.btn-primary {
    margin-top: 10px;
}


/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-item {
    background-color: var(--light-color);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

/* Special Offer Section */
.special-offer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.offer-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.offer-description {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.offer-details {
    margin-bottom: 25px;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-code,
.offer-expiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.offer-code i,
.offer-expiry i {
    margin-right: 8px;
    color: var(--white);
}

.special-offer .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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



/* Testimonials */
.testimonials {
    position: relative;
    background-color: var(--white);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-overlay {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(3px);
    padding: 60px 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.testimonial::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

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

.testimonial-content p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--dark-color);
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
}


/* Gift Cards Section */
.gift-cards {
    padding: 80px 0;
    background-color: var(--light-color);
}

.gift-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.gift-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gift-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.gift-features {
    list-style: none;
    margin-bottom: 25px;
}

.gift-features li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.gift-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}


/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: var(--white);
}

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

.blog-card {
    background-color: var(--light-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

.blog-content .blog-category {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.blog-content .blog-excerpt {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-content .btn-text {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.blog-content .btn-text:hover {
    color: var(--primary-color);
}


/* Instagram Feed */
.instagram-feed {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.instagram-feed .section-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.feed-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 220px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(193, 154, 131, 0.6); /* primary color overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: var(--white);
    font-size: 2rem;
}



/* Page Hero */
.page-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
}

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

.mission {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-color);
    border-left: 4px solid var(--primary-color);
}

.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
}

.cultural-heritage {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

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

/* Services Page */
.services-categories {
    padding: 80px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.tab-btn:hover:not(.active) {
    background-color: var(--accent-color);
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    display: block;
}

.service-card.active {
    display: block;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.service-cta h2 {
    color: var(--white);
}

/* Gallery Page */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.filter-btn:hover:not(.active) {
    background-color: var(--accent-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

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

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.instagram-cta {
    padding: 80px 0;
    text-align: center;
}

/* Booking Page */
.booking-section {
    padding: 80px 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
    margin-bottom: 20px;
}

.booking-form p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    margin-bottom: 10px;
}

.contact-prompt {
    text-align: center;
    margin-top: auto;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

.contact-form h2 {
    margin-bottom: 20px;
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--white);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.newsletter-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 1rem;
    flex: 1 1 300px;
    max-width: 400px;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

.newsletter-form .btn-primary {
    padding: 12px 25px;
    border-radius: 30px;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 600;
}


/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a2e 50%, var(--dark-color) 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    animation: footerFadeIn 0.8s ease-out;
}

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

.footer-section {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: footerSectionFadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

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

.footer-section:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-heading {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #ff6b9d);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover .footer-heading::after {
    width: 60px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    animation: linkSlideIn 0.5s ease-out;
    animation-fill-mode: both;
}

.footer-links li:nth-child(1) { animation-delay: 0.1s; }
.footer-links li:nth-child(2) { animation-delay: 0.2s; }
.footer-links li:nth-child(3) { animation-delay: 0.3s; }
.footer-links li:nth-child(4) { animation-delay: 0.4s; }
.footer-links li:nth-child(5) { animation-delay: 0.5s; }

@keyframes linkSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    width: 16px;
    text-align: center;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 15px;
}

.footer-links a:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.footer-links a:hover::before {
    width: 8px;
}

.contact-info {
    font-style: normal;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-info p:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-info i {
    margin-right: 12px;
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
    animation: socialPulse 0.6s ease-out;
}

@keyframes socialPulse {
    0% {
        transform: translateY(-3px) scale(1.1);
    }
    50% {
        transform: translateY(-3px) scale(1.2);
    }
    100% {
        transform: translateY(-3px) scale(1.1);
    }
}

.social-links i {
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 10px;
    position: relative;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.newsletter-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b9d);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.newsletter-form button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

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

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.footer-logo span:last-child {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.copyright-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.copyright-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.copyright-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.footer-legal a:hover::after {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid, 
    .booking-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .booking-info {
        margin-top: 50px;
    }
    
    .contact-info {
        order: 2;
        margin-top: 50px;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title-main {
        font-size: 2.8rem;
    }
    
    .hero-title-sub {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }
    
    .hero-trust-indicators {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 12px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary,
    .hero-cta-tertiary {
        padding: 16px 24px;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-subtext {
        font-size: 0.8rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .hero-image-container {
        transform: none;
    }
    
    .hero-image-container:hover {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .primary-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 2rem;
        z-index: 999;
    }
    
    .primary-navigation.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        margin-top: 3rem;
        gap: 0;
    }
    
    .nav-list li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-link {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 20px;
        min-width: auto;
        text-align: left;
        border-radius: 8px;
        width: 100%;
    }
    
    .nav-link i {
        margin-right: 12px;
        margin-bottom: 0;
        font-size: 1.2rem;
    }
    
    .nav-link span {
        font-size: 1rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Mobile Logo Adjustments */
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gift-card-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gift-card-image img {
        margin: 0 auto 30px;
    }

    /* Footer Mobile Adjustments */
    .main-footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-section {
        padding: 15px;
        text-align: center;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section:hover .footer-heading::after {
        width: 50px;
    }

    .social-links {
        justify-content: center;
        gap: 12px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .copyright-section .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
        gap: 15px;
    }
}



@media (max-width: 576px) {
    .hero-container {
        gap: 30px;
        padding: 0 15px;
    }
    
    .hero-title-main {
        font-size: 2.2rem;
    }
    
    .hero-title-sub {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 0 auto 25px;
    }
    
    .hero-trust-indicators {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary,
    .hero-cta-tertiary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .cta-subtext {
        font-size: 0.75rem;
    }
    
    .cta-icon-wrapper {
        width: 20px;
        height: 20px;
    }
    
    .cta-arrow {
        width: 16px;
        height: 16px;
    }
    
    .hero-image {
        height: 280px;
    }
    
    .hero-social-proof {
        margin-top: 15px;
    }
    
    .social-proof-text {
        font-size: 0.9rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Small Mobile Logo Adjustments */
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .main-header .container {
        padding: 10px 15px;
    }

     .offer-content {
        padding: 30px 20px;
    }

    .offer-content h2 {
        font-size: 1.8rem;
    }

    .offer-description {
        font-size: 1.05rem;
    }
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"],
    .newsletter-form .btn-primary {
        width: 100%;
    }

    /* Footer Small Screen Adjustments */
    .main-footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-section {
        padding: 12px;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .contact-info i {
        font-size: 1rem;
        width: 18px;
    }

    .social-links {
        gap: 10px;
        margin-bottom: 25px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .social-links i {
        font-size: 1rem;
    }

    .newsletter-form label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .newsletter-form input[type="email"] {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .newsletter-form button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .footer-logo {
        padding: 15px;
        margin-top: 15px;
    }

    .footer-logo span:first-child {
        font-size: 1.5rem;
    }

    .footer-logo span:last-child {
        font-size: 0.9rem;
    }

    .copyright-section {
        padding: 20px 0;
    }

    .copyright-section p {
        font-size: 0.8rem;
    }

    .footer-legal a {
        font-size: 0.8rem;
    }
}