/* CSS Variables for Brand Colors */
:root {
    --primary-gold: #d4a574;
    --secondary-gold: #b8956a;
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #666;
    --text-lighter: #999;
    --white: #ffffff;
    --black: #1a1a1a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(212, 165, 116, 0.8) 0%, rgba(184, 149, 106, 0.8) 100%);
    --shadow-small: 0 4px 15px rgba(212, 165, 116, 0.3);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}


.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4a574;
}

.nav-link.cta-btn {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

@keyframes parallaxMove {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.5s both;
    line-height: 1.4;
}

.hero-services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-service-item {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-service-item:hover {
    opacity: 1;
}

.hero-service-divider {
    color: white;
    font-size: 14px;
    opacity: 0.6;
    margin: 0 5px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.7s both;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

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

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

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
    margin: 0 auto;
    font-weight: 300;
    text-align: center;
    max-width: 600px;
    margin-top: 20px;
}

/* About Section */
.about {
    background: #f8f9fa;
}

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

.about-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature i {
    color: #d4a574;
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    flex: 0.7;
    min-width: 0;
    aspect-ratio: 1/1;
}

.about-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    background: white;
    width: 100%;
    margin-left: 0;
}

/* Service Images Grid */
.service-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 40px;
}

.service-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

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

.service-image-item:hover .service-image {
    transform: scale(1.05);
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 30px !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.service-card {
    background: transparent;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.service-card-image {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}


/* Call to Action Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('Images/image1.jpg') center/cover;
    padding: 150px 0;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #E6C373;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.cta-description {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button-container {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: #d4a574;
    border: 2px solid #d4a574;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none;
}

.cta-button:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

/* Gallery Section */
.gallery {
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.8) 0%, rgba(184, 149, 106, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
    color: white;
    font-size: 24px;
    text-align: center;
}

/* Video Section */
.video-section {
    background: #f8f9fa;
    padding: 50px 0 0 0;
    margin: 0;
}

.video-container {
    max-width: none;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
}

.home-video {
    width: 100%;
    height: 80vh;
    display: block;
    border-radius: 0;
    object-fit: cover;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive video for different devices */
@media (max-width: 768px) {
    .home-video {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .home-video {
        height: 50vh;
    }
}

@media (min-width: 1200px) {
    .home-video {
        height: 85vh;
    }
}

/* Testimonials Section */
.testimonials {
    background: white;
}

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

/* Mobile Carousel Styles */
.testimonials-carousel {
    display: none;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
    overflow: hidden;
}

.testimonial-slide {
    width: 33.333%;
    flex-shrink: 0;
    padding: 0 20px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Removed disabled styles since carousel now loops */

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #d4a574;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #b8956a;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h4 {
    color: #333;
    font-size: 18px;
}

/* Partner Restaurants Section */
.partners {
    background: #f8f9fa;
    padding: 100px 0;
}

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

.partner-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
}

.partner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: white;
}

/* Contact Info Section */
.contact-info-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.contact-info-section * {
    text-align: center !important;
}

.contact-info-section .contact-label {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.contact-info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.contact-line {
    height: 2px;
    background: #8B4513;
    flex: 1;
    max-width: 200px;
}

.contact-logo {
    margin: 0 30px;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.contact-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.contact-details {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 60px !important;
    width: 100% !important;
}

.contact-info-section .contact-details p {
    font-size: 1rem !important;
    color: #000000 !important;
    margin: 5px 0 !important;
    line-height: 1.5 !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: normal !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
    justify-self: center !important;
    align-self: center !important;
}

.contact-details p {
    font-size: 1rem !important;
    color: #000000 !important;
    margin: 5px 0 !important;
    line-height: 1.5 !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: normal !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
    justify-self: center !important;
    align-self: center !important;
}

.contact-bottom-line {
    height: 2px;
    background: #8B4513;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design for Contact Info */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .contact-line {
        max-width: 80px;
    }
    
    .contact-logo {
        margin: 0 15px;
    }
    
    .logo-image {
        height: 90px;
    }
    
    .contact-label {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .contact-details p {
        font-size: 0.95rem !important;
        margin: 6px 0 !important;
        color: #000000 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
}

.left-column {
    flex: 1;
    margin-right: 40px;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: transparent;
    padding: 0;
    height: 400px;
    width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    filter: grayscale(20%) contrast(110%);
    display: block;
}

/* Social Media Section */
.social-media-section {
    margin-top: 100px;
    text-align: center;
}

.social-media-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #000000, #ff0050);
}

/* Mobile responsive for contact map */
@media (max-width: 768px) {
    .left-column {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-map {
        padding: 0;
        height: 300px;
    }
    
    .contact-map iframe {
        height: 300px;
        border-radius: 12px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #E6C373;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.footer-section h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #bdc3c7;
}

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

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(230, 195, 115, 0.1);
    border: 1px solid rgba(230, 195, 115, 0.3);
}

.footer-social-link:hover {
    background: #E6C373;
    color: #2c3e50;
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #E6C373;
    padding-left: 5px;
}

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

.footer-services li {
    color: #bdc3c7;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.footer-contact .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    flex-direction: row !important;
}

.footer-contact .contact-item i {
    color: #E6C373;
    font-size: 1.1rem;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.footer-contact .contact-item span {
    color: white !important;
    line-height: 1.5;
    display: inline-block !important;
    flex: 1;
    text-align: left !important;
}

.footer-contact .contact-item span a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left !important;
}

.footer-contact .contact-item a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left !important;
}

.footer-contact .contact-item a:hover {
    color: #E6C373;
}

/* Force footer contact text to be white */
.footer .footer-contact .contact-item span,
.footer .footer-contact .contact-item a,
.footer .footer-contact .contact-item span a {
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(230, 195, 115, 0.2);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #E6C373;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center !important;
        text-align: center;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px;
    }
    
    .footer-contact .contact-item i {
        margin-right: 0;
        margin-bottom: 0;
        font-size: 1.2rem;
    }
    
    .footer-contact .contact-item span {
        text-align: center !important;
        display: block;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
}

.contact-item a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #d4a574;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

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

/* Form label styling */
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Date input specific styling */
input[type="date"] {
    background: white !important;
    color: #333 !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    font-family: 'Inter', sans-serif !important;
    width: 100% !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

input[type="date"]:focus {
    outline: none !important;
    border-color: #d4a574 !important;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1) !important;
}

/* Date input placeholder styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    color: #d4a574;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background: rgba(212, 165, 116, 0.1);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #d4a574;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 40px 0;
        z-index: 999;
    }
    
    .nav-menu .nav-link {
        color: white;
        font-size: 18px;
        padding: 12px 0;
    }
    
    .nav-menu .nav-link.cta-btn {
        background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
        color: white;
        padding: 16px 30px;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 600;
        margin: 20px auto 0 auto;
        display: block;
        width: fit-content;
        min-width: 200px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo-img {
        max-width: 250px;
    }
    
    .hero-services {
        gap: 10px;
    }
    
    .hero-service-item {
        font-size: 12px;
    }
    
    .hero-service-divider {
        font-size: 12px;
        margin: 0 3px;
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .section-title {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .video-section {
        padding: 30px 0 0 0;
    }
    
    .cta-section {
        padding: 80px 0 80px 0 !important;
    }
    
    .cta-title {
        font-size: 2.2rem;
        margin-bottom: 40px !important;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 40px !important;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
    
    .service-card-image {
        aspect-ratio: 1;
    }
    
    .service-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        display: none;
    }
    
    .testimonials-carousel {
        display: block;
    }
    
    .carousel-container {
        overflow: hidden;
        width: 100%;
    }
    
    .carousel-wrapper {
        width: 300%;
        overflow: visible;
    }
    
    .testimonial-slide {
        width: 33.333%;
        flex-shrink: 0;
    }
    
    .testimonial-card {
        padding: 35px 25px;
        margin: 0;
    }
    
    .carousel-controls {
        margin-top: 25px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    /* Fix contact item colors on mobile */
    .contact-item h4 {
        color: #333 !important;
    }
    
    .contact-item p,
    .contact-item a {
        color: #333 !important;
    }
    
    .contact-details h3 {
        color: #333 !important;
    }
    
    .contact-details p {
        color: #333 !important;
    }
    
    /* Mobile date input styling */
    input[type="date"] {
        background: white !important;
        color: #333 !important;
        border: 2px solid #e9ecef !important;
        border-radius: 10px !important;
        padding: 16px 18px !important;
        font-size: 16px !important;
        min-height: 48px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    input[type="date"]:focus {
        border-color: #d4a574 !important;
        box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1) !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .hero {
        min-height: 550px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .cta-section {
        padding: 60px 0 60px 0 !important;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 30px !important;
    }
    
    .cta-description {
        font-size: 15px;
        margin-bottom: 30px !important;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .btn-primary {
        min-height: 48px;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        min-width: unset;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .service-card-image {
        aspect-ratio: 1;
    }
    
    .service-card h3 {
        font-size: 17px;
        margin: 20px 15px 12px 15px;
        line-height: 1.4;
    }
    
    .service-card p {
        font-size: 14px;
        margin: 0 15px 20px 15px;
        line-height: 1.6;
    }
    
    .hero-logo-img {
        max-width: 200px;
    }
    
    .hero-services {
        gap: 8px;
        margin-bottom: 50px;
    }
    
    .hero-service-item {
        font-size: 11px;
    }
    
    .hero-service-divider {
        font-size: 11px;
        margin: 0 2px;
    }
    
    .slider-wrapper {
        height: 250px;
    }
    
    .slide-overlay {
        padding: 15px;
    }
    
    .slide-overlay h3 {
        font-size: 1.2rem;
    }
    
    .slide-overlay p {
        font-size: 0.9rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling improvements */
html {
    scroll-padding-top: 80px;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* About Us Page Styles */
.about-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-hero .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-hero .hero-slide.active {
    opacity: 1;
}

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

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero .hero-logo {
    margin-bottom: 30px;
}

.about-hero .hero-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.about-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-hero .hero-services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.about-hero .hero-service-item {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #E6C373;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.about-hero .hero-service-divider {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.about-hero .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.about-hero .scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E6C373 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Mission & Expertise Section */
.mission-expertise-section {
    padding: 100px 0;
    background: white;
}

.mission-expertise-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.mission-part, .expertise-part {
    text-align: center;
}

.mission-content, .expertise-content {
    margin-top: 40px;
}

.mission-content p, .expertise-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: center;
}

/* Standalone Expertise Section */
.expertise-section {
    padding: 100px 0;
    background: white;
}

.expertise-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.expertise-section .expertise-content {
    margin-top: 40px;
}

.expertise-section .expertise-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: center;
}

/* Responsive design for Mission & Expertise */
@media (max-width: 768px) {
    .mission-expertise-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .mission-expertise-section .container {
        padding: 0 20px;
    }
    
    .mission-content p, .expertise-content p {
        font-size: 1rem;
    }
    
    .expertise-section .container {
        padding: 0 20px;
    }
    
    .expertise-section .expertise-content p {
        font-size: 1rem;
    }
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-overview h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.services-overview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #E6C373 0%, #d4a574 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 30px !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.service-card {
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 320px !important;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E6C373 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive breakpoints for Services Grid */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 25px !important;
    }
    
    .service-card {
        min-height: 300px !important;
        padding: 25px !important;
    }
}

@media (max-width: 768px) {
    .about-content .container,
    .services-overview .container,
    .about-contact .container {
        padding: 0 20px;
    }
    
    .about-story {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text {
        flex: none;
    }
    
    .about-image {
        flex: none;
        aspect-ratio: 1/1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-overview h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-card {
        padding: 25px !important;
        min-height: 280px !important;
    }
    
    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-contact-item {
        padding: 30px 20px;
    }
    
    .why-choose-section .container,
    .mission-section .container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
}

.about-content {
    padding: 120px 0;
    background: white;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-content .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.about-text {
    padding: 0;
    flex: 1.3;
    text-align: center;
}

.section-header {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #E6C373 0%, #d4a574 100%);
    border-radius: 2px;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #E6C373;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #E6C373;
    padding-bottom: 10px;
    display: inline-block;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
}

.about-content .about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-content .about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.about-content .about-features li i {
    color: #E6C373;
    margin-right: 15px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-story {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 40px;
    width: 100%;
}


.about-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    margin-top: 20px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.about-features i {
    color: #d4a574;
    font-size: 18px;
}

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

.location-section {
    margin-top: 40px;
    text-align: center !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
}

.location-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-align: center !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.location-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    width: 100%;
    padding: 0 20px;
    display: block;
}

.map-container {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.map-container iframe {
    border-radius: 15px;
    width: 100%;
    display: block;
}

.location-info {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}

.location-details {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.location-details h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.location-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-details a {
    color: #d4a574;
    text-decoration: none;
}

.location-details a:hover {
    text-decoration: underline;
}

.about-contact {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
}

.about-contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-contact h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 20px;
}

.about-contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #E6C373 0%, #d4a574 100%);
    border-radius: 2px;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.about-contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.about-contact-item:hover {
    transform: translateY(-5px);
}

/* Social logos within contact items */
.about-contact-item .social-logos {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.about-contact-item .social-logo-link {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #E6C373 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-contact-item .social-logo-link:hover {
    background: linear-gradient(135deg, #d4a574 0%, #E6C373 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 195, 115, 0.4);
}

.about-contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E6C373 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.about-contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.about-contact-item p,
.about-contact-item a {
    color: #555;
    text-decoration: none;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.about-contact-item a:hover {
    color: #E6C373;
    transition: color 0.3s ease;
}

.about-social-links {
    text-align: center;
}

.about-social-links h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.social-links-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links-container .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-links-container .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.social-links-container .social-link i {
    font-size: 18px;
}

.nav-link.active {
    color: #d4a574;
    font-weight: 600;
}

/* Image Slider Section */
.image-slider-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 40px;
    text-align: center;
}

.slide-overlay h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-weight: 600;
}

.slide-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

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

/* Contact Hero Section */
.contact-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

/* Gallery Hero Section */
.gallery-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.services-hero .hero-background,
.contact-hero .hero-background,
.gallery-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.8) 0%, rgba(184, 149, 106, 0.8) 100%),
                url('https://images.unsplash.com/photo-1555244162-803834f70033?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

.services-hero-content,
.contact-hero-content,
.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.services-hero-title,
.contact-hero-title,
.gallery-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.services-hero-subtitle,
.contact-hero-subtitle,
.gallery-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d4a574;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.8) 0%, rgba(184, 149, 106, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
}

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

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

.gallery-icon {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

/* Hide filtered items */
.gallery-item.hidden {
    display: none;
}

/* Social Logos Section */
.about-social-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-social-section h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.social-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.social-logo-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E6C373 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-logo-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 195, 115, 0.4);
}

/* Responsive styles for About Us page */
@media (max-width: 768px) {
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-logo-img {
        max-width: 250px;
    }
    
    .about-hero .hero-services {
        gap: 15px;
    }
    
    .about-hero .hero-service-item {
        font-size: 0.9rem;
    }
    
    .services-hero-title,
    .contact-hero-title,
    .gallery-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle,
    .contact-hero-subtitle,
    .gallery-hero-subtitle {
        font-size: 18px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .gallery-filters {
        gap: 15px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .location-info {
        flex-direction: column;
        align-items: center;
    }
    
    .location-details {
        max-width: 100%;
        text-align: center;
    }
    
    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links-container {
        flex-direction: column;
        align-items: center;
    }
    
    .social-logos {
        gap: 20px;
    }
    
    .social-logo {
        width: 40px;
        height: 40px;
    }
    
    .slider-wrapper {
        height: 300px;
    }
    
    .slide-overlay {
        padding: 20px;
    }
    
    .slide-overlay h3 {
        font-size: 1.5rem;
    }
    
    .slide-overlay p {
        font-size: 1rem;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-logo-img {
        max-width: 200px;
    }
    
    .services-hero-title,
    .contact-hero-title,
    .gallery-hero-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .location-section h2 {
        font-size: 2rem;
    }
    
    .about-contact h2 {
        font-size: 2rem;
    }
}





