/* CSS Variables */
:root {
    --primary-color: #0a0a0a;
    --secondary-color: #fafafa;
    --accent-color: #c9a96e;
    --accent-dark: #a08850;
    --accent-light: #e6d7b8;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;
    --text-secondary: #374151;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #e6d7b8 50%, #c9a96e 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

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

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

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.4s ease;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    color: var(--accent-color);
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 169, 110, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        margin-top: 10px;
        padding: 20px;
        border: 1px solid rgba(201, 169, 110, 0.2);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
        padding: 12px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(201, 169, 110, 0.1);
        transform: none;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        background: rgba(10, 10, 10, 0.95);
        border: 1px solid rgba(201, 169, 110, 0.2);
        border-radius: 8px;
        margin-top: 5px;
    }
    
    .dropdown-item {
        color: var(--text-light) !important;
        padding: 12px 20px;
        transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
        background: rgba(201, 169, 110, 0.1);
        color: var(--accent-color) !important;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%),
                url('https://ik.imagekit.io/movodevmaz/img/Banner%20Size.jpg?updatedAt=1753525675729');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.7s forwards;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-gold);
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::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;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    background: var(--accent-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-color);
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f8f9fa 100%);
    position: relative;
}

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

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 400;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02) rotate(1deg);
}

.stats-row {
    margin-top: 4rem;
    padding: 2rem 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: var(--primary-color);
    overflow: hidden;
    position: relative;
}

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

.gallery-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
}

.gallery-title h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-title p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.infinite-gallery {
    overflow: hidden;
    position: relative;
    height: 450px;
    margin-bottom: 40px;
}

.scroll-container {
    display: flex;
    gap: 24px;
    animation: scroll 35s linear infinite;
    height: 100%;
}

.scroll-container.reverse {
    animation-direction: reverse;
}

.gallery-item {
    flex-shrink: 0;
    width: 320px;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-medium);
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-heavy);
}

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

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

.explore-btn {
    text-align: center;
    margin-top: 60px;
}

.btn-explore {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.btn-explore:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f8f9fa 100%);
    position: relative;
}

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

.services h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    margin-bottom: 60px;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.service-card h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--primary-color);
    position: relative;
}

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

.testimonials h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin-bottom: 60px;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    color: var(--text-light);
    border: 1px solid rgba(201, 169, 110, 0.2);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-gold);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Contact CTA Section */
.contact-cta {
    padding: 120px 0;
    background: var(--gradient-gold);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-cta h2 {
    position: relative;
    z-index: 2;
}

.contact-cta p {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Photo Gallery Modal */
.photo-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 1000;
    overflow-y: auto;
    padding: 100px 0 60px;
}

.photo-gallery.active {
    display: block;
}

.gallery-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.close-gallery {
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.close-gallery:hover {
    color: var(--accent-color);
    background: rgba(201, 169, 110, 0.2);
    transform: scale(1.1);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 24px;
}

.photo-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-medium);
}

.photo-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-heavy);
}

.photo-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Gallery Close Button */
.gallery-close {
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
}

.gallery-close:hover {
    color: var(--accent-color);
    background: rgba(201, 169, 110, 0.2);
    transform: scale(1.1);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 40px;
    color: var(--accent-color);
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.loading-spinner p {
    color: var(--text-light);
    margin: 0;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 40px;
    position: relative;
}

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

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

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.contact-info p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.contact-info i {
    color: var(--accent-color);
    width: 24px;
    margin-right: 8px;
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-content h2, 
    .services h2, 
    .testimonials h2, 
    .gallery-title h2 {
        font-size: 2.5rem;
    }
    
    .gallery-item {
        width: 280px;
        height: 380px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 320px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .gallery-item {
        width: 240px;
        height: 320px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .close-gallery {
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Selection styles */
::selection {
    background: var(--accent-color);
    color: var(--primary-color);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Improved button styles */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

/* Contact Section for Index Page */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://ik.imagekit.io/movodevmaz/img/Banner%20Size%202.jpg?updatedAt=1753602508577') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 169, 110, 0.2);
    position: relative;
    z-index: 3;
}

/* Ensure form is always visible */
.contact-section .contact-form {
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-section .contact-form .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.contact-section .contact-form .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.contact-section .form-group {
    margin-bottom: 20px;
    display: block;
}

.contact-section .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-section .form-label i {
    margin-right: 8px;
    color: var(--accent-color);
}

.contact-section .form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-section .form-control:focus {
    border-color: var(--accent-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
}

.contact-section .form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.contact-section select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.contact-section textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-section .form-check {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-section .form-check-input {
    margin-right: 8px;
    margin-top: 0.25rem;
}

.contact-section .form-check-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    margin-bottom: 0;
}

.contact-section .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-section .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.4);
}

.contact-section .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-section .btn-text,
.contact-section .btn-loading {
    display: inline-flex;
    align-items: center;
}

.contact-section .form-success {
    text-align: center;
    padding: 40px 20px;
}

.contact-section .success-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.contact-section .success-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-section .success-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.contact-section .form-header h2 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
}

.contact-section .form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.contact-section .form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0;
}



/* Mobile Responsive for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section .contact-form-wrapper {
        padding: 40px 30px;
        margin: 0 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(201, 169, 110, 0.2);
    }
    
    .contact-section .form-header h2 {
        font-size: 2.5rem;
    }
    
    /* Contact Form Mobile Improvements */
    .contact-section .contact-form {
        padding: 0;
        width: 100%;
        display: block;
    }
    
    .contact-section .contact-form .row {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }
    
    .contact-section .contact-form .col-md-6 {
        padding: 0 10px;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .contact-section .form-group {
        margin-bottom: 20px;
        display: block;
    }
    
    .contact-section .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
        width: 100%;
        display: block;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
    }
    
    .contact-section .form-control:focus {
        border-color: var(--accent-color);
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
    }
    
    .contact-section .btn-submit {
        width: 100%;
        padding: 15px 30px;
        font-size: 1rem;
        display: block;
    }
    
    /* Services checkboxes mobile layout */
    .contact-section .form-check {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    
    .contact-section .form-check-input {
        margin-right: 8px;
        margin-top: 0;
    }
    
    .contact-section .form-check-label {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    /* Ensure form labels are visible */
    .contact-section .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--text-dark);
        font-size: 0.95rem;
    }
    
    /* Ensure textarea is visible */
    .contact-section textarea.form-control {
        min-height: 120px;
        resize: vertical;
        display: block;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .contact-form-wrapper {
        padding: 25px 15px;
        margin: 0 10px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(201, 169, 110, 0.2);
    }
    
    .contact-section .form-header h2 {
        font-size: 2rem;
    }
    
    .contact-section .form-header p {
        font-size: 0.95rem;
    }
    
    /* Contact Form Small Mobile Improvements */
    .contact-section .contact-form {
        width: 100%;
        display: block;
    }
    
    .contact-section .contact-form .row {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }
    
    .contact-section .contact-form .col-md-6 {
        padding: 0 5px;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .contact-section .form-group {
        margin-bottom: 15px;
        display: block;
    }
    
    .contact-section .form-control {
        padding: 10px 12px;
        font-size: 16px;
        width: 100%;
        display: block;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
    }
    
    .contact-section .form-control:focus {
        border-color: var(--accent-color);
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
    }
    
    .contact-section textarea.form-control {
        min-height: 120px;
        resize: vertical;
        display: block;
        width: 100%;
    }
    
    .contact-section .btn-submit {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        display: block;
    }
    
    /* Better spacing for form elements */
    .contact-section .form-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
        display: block;
        font-weight: 500;
        color: var(--text-dark);
    }
    
    .contact-section .form-label i {
        font-size: 0.8rem;
        margin-right: 8px;
        color: var(--accent-color);
    }
    
    /* Services section mobile optimization */
    .contact-section .form-check {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }
    
    .contact-section .form-check-input {
        margin-right: 8px;
        margin-top: 0;
    }
    
    .contact-section .form-check-label {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    /* Success message mobile */
    .contact-section .form-success {
        padding: 30px 20px;
    }
    
    .contact-section .success-content h3 {
        font-size: 1.8rem;
    }
    
    .contact-section .success-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-section .contact-form-wrapper {
        padding: 20px 10px;
        margin: 0 5px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(201, 169, 110, 0.2);
    }
    
    .contact-section .form-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-section .contact-form {
        width: 100%;
        display: block;
    }
    
    .contact-section .contact-form .row {
        margin: 0 -5px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .contact-section .contact-form .col-md-6 {
        padding: 0 5px;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .contact-section .form-group {
        margin-bottom: 15px;
        display: block;
    }
    
    .contact-section .form-control {
        padding: 8px 10px;
        font-size: 16px;
        display: block;
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
    }
    
    .contact-section .form-control:focus {
        border-color: var(--accent-color);
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
    }
    
    .contact-section .btn-submit {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        background: var(--gradient-gold);
        border: none;
        border-radius: 50px;
        color: var(--primary-color);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: var(--shadow-gold);
    }
    
    .contact-section .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(201, 169, 110, 0.4);
    }
    
    /* Ensure form labels are visible */
    .contact-section .form-label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        color: var(--text-dark);
        font-size: 0.9rem;
    }
    
    .contact-section .form-label i {
        margin-right: 8px;
        color: var(--accent-color);
    }
    
    /* Ensure textarea is visible */
    .contact-section textarea.form-control {
        min-height: 120px;
        resize: vertical;
        display: block;
        width: 100%;
    }
    
    /* Services checkboxes */
    .contact-section .form-check {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }
    
    .contact-section .form-check-input {
        margin-right: 8px;
        margin-top: 0;
    }
    
    .contact-section .form-check-label {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0;
    }
}