* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    height: 100%;
}

:root {
    --primary-color: #ae1371;
    --secondary-color: #2a4161;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
}

/* Navigation */
nav {
    background-color: white;
    
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* .nav-fully-transparent {
    background: transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: none;
} */

.nav-glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-scrolled {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo-img {
    height: 70px; /* Adjust as needed */
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Footer Logo Styles */
.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 30px; /* Adjust as needed */
    width: auto;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Better visibility */
    font-weight: 500;
}

.nav-links a:hover {
    color: #ffd700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.nav-gradient {
    background: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-gradient .nav-links a {
    color:white;
    text-shadow: none;
    font-weight: 500;
}

.nav-gradient .nav-links a:hover {
    color: var(--primary-color);
}

.nav-gradient .logo {
    color: var(--secondary-color);
    text-shadow: none;
}

@media (max-width: 768px) {
    .slide {
        width: 100vw;
        height: 100vh;
    }

    .slide img {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

/* Mobile Navigation - Add this to your existing CSS */

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: var(--white);
    border-radius: 5px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Menu */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease;
}
 .nav-links li a {
            background-color: #ae1371;
            color: white;
            padding: 8px 20px;
            border-radius: 50px; /* This makes it oval-shaped */
            text-decoration: none;
            transition: background-color 0.3s ease;
            display: inline-block;
            font-weight: 500;
            }
.nav-links li a:hover {
                background-color: #8e0e5e;
                color: var(--primary-color);
                transform: none;
                padding-left: 1rem;
            }
@media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 300px;
                background: white;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 6rem 2rem 2rem 2rem;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                gap: 0;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                width: 100%;
                margin: 0;
            }

            .nav-links li a {
            background-color: #ae1371;
            color: white;
            padding: 8px 20px;
            border-radius: 50px; /* This makes it oval-shaped */
            text-decoration: none;
            transition: background-color 0.3s ease;
            display: inline-block;
            font-weight: 500;
            }


            .nav-links li a:hover {
                background-color: #8e0e5e;
                color: var(--primary-color);
                transform: none;
                padding-left: 1rem;
            }

            .hamburger {
                display: flex;
            }

            .nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0,0,0,0.5);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .nav-overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }
/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .logo-img {
        height: 80px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 50px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }

    .nav-links.active {
        right: 0;
    }
}

/* Hero Section with Slideshow */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
   position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(rgba(42, 65, 97, 0.7)); */
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: #7d3450;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 70%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Team Section */
.team {
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-member h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    min-width: 30px;
}

.contact-item strong {
    color: var(--primary-color);
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-icon {
        margin-top: 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   GALLERY SECTION STYLES
   ========================================================================== */

.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #2a4161 50%, transparent 100%);
}

.gallery-section .section-title {
    color: #2a4161;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.gallery-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #c49b3c, #d4af37);
    border-radius: 2px;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ==========================================================================
   GALLERY GRID
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(42, 65, 97, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.05);
    background: #f8f9fa;
    border: 1px solid rgba(42, 65, 97, 0.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(42, 65, 97, 0.02), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(42, 65, 97, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(196, 155, 60, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: contrast(1.05) saturate(1.1);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
}

/* ==========================================================================
   GALLERY OVERLAY
   ========================================================================== */

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(42, 65, 97, 0.85) 0%,
        rgba(196, 155, 60, 0.75) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #ffffff;
    font-size: 2.5rem;
    transform: scale(0.6) rotate(-12deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1) rotate(0deg);
}

/* ==========================================================================
   GALLERY MODAL
   ========================================================================== */

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 10px 40px rgba(42, 65, 97, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.01);
}

/* ==========================================================================
   MODAL CONTROLS
   ========================================================================== */

.modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #c49b3c;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(196, 155, 60, 0.4);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 2rem;
}

.modal-prev,
.modal-next {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.8rem;
    padding: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: all;
    backdrop-filter: blur(15px);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.modal-prev::before,
.modal-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 155, 60, 0.2), rgba(42, 65, 97, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-prev {
    margin-left: -100px;
}

.modal-next {
    margin-right: -100px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.15);
    border-color: rgba(196, 155, 60, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-prev:hover::before,
.modal-next:hover::before {
    opacity: 1;
}

.modal-prev:active,
.modal-next:active {
    transform: scale(1.05);
}

/* ==========================================================================
   LOADING STATES
   ========================================================================== */

.gallery-item img[src=""],
.gallery-item img:not([src]) {
    background: linear-gradient(45deg, #f1f3f4, #e8eaed);
    background-size: 400% 400%;
    animation: loadingGradient 2s ease-in-out infinite;
}

@keyframes loadingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gallery-item img[onerror] {
    position: relative;
}

.gallery-item img[onerror]::after {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .modal-prev {
        margin-left: -80px;
    }
    
    .modal-next {
        margin-right: -80px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-section .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 1/1;
        border-radius: 12px;
    }
    
    .gallery-item:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
    
    .modal-content {
        max-width: 98%;
        max-height: 85%;
    }
    
    .modal-close {
        top: -50px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .modal-prev,
    .modal-next {
        font-size: 1.4rem;
        padding: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .modal-prev {
        margin-left: -60px;
    }
    
    .modal-next {
        margin-right: -60px;
    }
    
    .modal-nav {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .modal-prev {
        margin-left: -40px;
    }
    
    .modal-next {
        margin-right: -40px;
    }
}

/* ==========================================================================
   DARK MODE SUPPORT (Optional)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .gallery-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    
    .gallery-section .section-title {
        color: #ffffff;
    }
    
    .gallery-subtitle {
        color: #b0b0b0;
    }
    
    .gallery-item {
        background: #2d2d2d;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .gallery-item:hover {
        border-color: rgba(196, 155, 60, 0.4);
    }
}

/* ==========================================================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

.gallery-item:focus {
    outline: 3px solid #c49b3c;
    outline-offset: 2px;
}

.modal-close:focus,
.modal-prev:focus,
.modal-next:focus {
    outline: 2px solid #c49b3c;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-overlay,
    .gallery-overlay i,
    .modal-close,
    .modal-prev,
    .modal-next {
        transition: none;
        animation: none;
    }
    
    .gallery-modal {
        animation: none;
    }
    
    .modal-content {
        animation: none;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .gallery-section {
        display: none;
    }
    
    .gallery-modal {
        display: none !important;
    }
}
        /* Additional styles for services page */
        .services-hero {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: var(--white);
            padding: 8rem 0 4rem;
            text-align: center;
        }

        .services-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .services-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .service-detail {
            background: var(--white);
            margin-bottom: 3rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .service-detail:hover {
            transform: translateY(-5px);
        }

        .service-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .service-header i {
            font-size: 2.5rem;
            opacity: 0.9;
        }

        .service-header h3 {
            font-size: 1.8rem;
            margin: 0;
        }

        .service-content {
            padding: 2rem;
        }

        .service-description {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            color: var(--dark-gray);
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--light-gray);
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
        }

        .feature-item i {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text strong {
            color: var(--secondary-color);
            display: block;
            margin-bottom: 0.3rem;
        }

        .cta-section {
            background: var(--light-gray);
            padding: 4rem 0;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            color: var(--secondary-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--dark-gray);
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 1.5rem;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-3px);
        }

        .contact-method i {
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .breadcrumb {
            background: rgba(42, 65, 97, 0.1);
            padding: 1rem 0;
            margin-top: 80px;
        }

        .breadcrumb ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0;
            padding: 0;
        }

        .breadcrumb li {
            color: var(--dark-gray);
        }

        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

        .breadcrumb i {
            color: var(--dark-gray);
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            .services-hero {
                padding: 6rem 0 3rem;
            }

            .services-hero h1 {
                font-size: 2.2rem;
            }

            .service-header {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .service-header i {
                font-size: 2rem;
            }

            .service-header h3 {
                font-size: 1.5rem;
            }

            .service-features {
                grid-template-columns: 1fr;
            }

            .contact-methods {
                flex-direction: column;
                align-items: center;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
        }

        /* Mobile Hamburger Menu Styles */
.mobile-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Hamburger Animation */
.mobile-hamburger.menu-active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-hamburger.menu-active span:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.menu-active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-links.menu-open {
    right: 0;
}

.mobile-nav-links li {
    list-style: none;
    margin: 15px 0;
}

.mobile-nav-links li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a[active] {
    background-color: #f0f0f0;
    color: #c49b61;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.mobile-nav-overlay.overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .mobile-hamburger {
        display: flex;
    }
    
    /* Hide desktop nav links on mobile */
    .nav-links {
        display: none;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .mobile-hamburger,
    .mobile-nav-links,
    .mobile-nav-overlay {
        display: none;
    }
}

/* Navigation background styles */
.nav-mobile-scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-mobile-transparent {
    background: transparent;
}

/* Ensure hamburger lines are visible on different backgrounds */
.nav-mobile-transparent .mobile-hamburger span {
    background-color: white;
}

.nav-mobile-scrolled .mobile-hamburger span {
    background-color: #333;
}