/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a9cc4;
    --accent-color: #f4a261;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --success-color: #00b894;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
}

.section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-link.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-link.cta-button::after {
    display: none;
}

.nav-link.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION WITH PARALLAX
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.85) 0%, rgba(74, 156, 196, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-block {
    width: 100%;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services-grid {
    padding: 3rem 0 4rem;
}

.services-hero {
    position: relative;
    height: 600px;
    margin-bottom: -50px;
}

.services-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.services-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.85) 0%, rgba(74, 156, 196, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.services-image-overlay .section-title {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-image-overlay .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.services-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    fill: var(--bg-light);
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 3;
}

.service-card {
    background: white;
    padding: 1.75rem 2rem;
    border-radius: 0;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    min-height: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-left-color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 3rem 0;
    background: white;
}

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

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.about-text {
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-text p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.about-text .section-title {
    text-align: left;
    font-size: 2rem;
}

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

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

.feature-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.feature-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-preview {
    padding: 3rem 0;
    background: var(--bg-light);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

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

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    padding: 3rem 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.reviewer-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.review-response {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(44, 95, 124, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-response strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.review-hidden {
    display: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 3rem 0;
    background: var(--bg-light);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

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

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.badge-small {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-note {
    font-size: 0.85rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   GALLERY PAGE SPECIFIC
   ============================================ */
.gallery-hero {
    padding: 8rem 0 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.gallery-categories {
    padding: 2rem 0;
    background: white;
}

.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-gallery-wrapper {
    position: relative;
    width: 100%;
}

.category-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: block;
}

.category-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Hide slider controls on desktop */
/* Desktop: Hide slider controls for category galleries */
.category-gallery-wrapper .slider-controls {
    display: none;
}

/* ============================================
   MOBILE SLIDERS
   ============================================ */
.slider-wrapper {
    position: relative;
    width: 100%;
}

.services-slider-wrapper,
.gallery-slider-wrapper,
.reviews-slider-wrapper,
.features-slider-wrapper {
    position: relative;
    width: 100%;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    width: auto;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 0;
}

.slider-btn {
    position: relative;
    background: rgba(44, 95, 124, 0.9);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    min-width: 28px;
    min-height: 28px;
}

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

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn-prev,
.slider-btn-next {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
}

.slider-btn svg {
    width: 16px;
    height: 16px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    flex: 1;
    max-width: 300px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 95, 124, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    touch-action: manipulation;
    min-width: 12px;
    min-height: 12px;
}

.slider-indicator.active {
    background: var(--primary-color);
    width: 36px;
    height: 12px;
    border-radius: 6px;
}

/* Desktop: Hide slider controls, show grid */
.services-slider-wrapper,
.gallery-slider-wrapper,
.reviews-slider-wrapper,
.features-slider-wrapper {
    display: block;
}

.services-slider-wrapper .slider-btn,
.gallery-slider-wrapper .slider-btn,
.reviews-slider-wrapper .slider-btn,
.features-slider-wrapper .slider-btn,
.services-slider-wrapper .slider-indicators,
.gallery-slider-wrapper .slider-indicators,
.reviews-slider-wrapper .slider-indicators,
.features-slider-wrapper .slider-indicators {
    display: none;
}

/* Mobile slider styles */
@media (max-width: 768px) {
    .services-slider-wrapper,
    .gallery-slider-wrapper,
    .reviews-slider-wrapper,
    .features-slider-wrapper {
        padding: 0;
    }

    .slider-controls {
        gap: 0.75rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        max-width: 75%;
        margin-left: auto;
        margin-right: auto;
    }

    .services-slider-wrapper .slider-controls,
    .reviews-slider-wrapper .slider-controls {
        padding: 0.75rem 1.5rem;
        max-width: 70%;
    }

    .services-slider-wrapper .slider-btn,
    .gallery-slider-wrapper .slider-btn,
    .reviews-slider-wrapper .slider-btn,
    .features-slider-wrapper .slider-btn,
    .services-slider-wrapper .slider-indicators,
    .gallery-slider-wrapper .slider-indicators,
    .reviews-slider-wrapper .slider-indicators,
    .features-slider-wrapper .slider-indicators {
        display: flex;
    }

    /* Touch-friendly buttons for all sliders */
    .services-slider-wrapper .slider-btn,
    .gallery-slider-wrapper .slider-btn,
    .reviews-slider-wrapper .slider-btn,
    .features-slider-wrapper .slider-btn,
    .category-gallery-wrapper .slider-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        background: rgba(44, 95, 124, 0.95);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .services-slider-wrapper .slider-btn svg,
    .gallery-slider-wrapper .slider-btn svg,
    .reviews-slider-wrapper .slider-btn svg,
    .features-slider-wrapper .slider-btn svg,
    .category-gallery-wrapper .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-indicators {
        gap: 6px;
        padding: 0 0.5rem;
    }

    .slider-indicator {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
    }

    .slider-indicator.active {
        width: 48px;
        height: 16px;
    }

    /* Smaller indicators */
    .services-slider-wrapper .slider-indicators,
    .gallery-slider-wrapper .slider-indicators,
    .reviews-slider-wrapper .slider-indicators,
    .features-slider-wrapper .slider-indicators {
        margin: 0;
        padding: 0 0.5rem;
        gap: 6px;
    }

    .services-slider-wrapper .slider-indicator,
    .gallery-slider-wrapper .slider-indicator,
    .reviews-slider-wrapper .slider-indicator,
    .features-slider-wrapper .slider-indicator {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
    }

    .services-slider-wrapper .slider-indicator.active,
    .gallery-slider-wrapper .slider-indicator.active,
    .reviews-slider-wrapper .slider-indicator.active,
    .features-slider-wrapper .slider-indicator.active {
        width: 36px;
        height: 12px;
    }

    .services-slider-wrapper .slider-indicator,
    .gallery-slider-wrapper .slider-indicator,
    .reviews-slider-wrapper .slider-indicator,
    .features-slider-wrapper .slider-indicator {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
    }

    .services-slider-wrapper .slider-indicator.active,
    .gallery-slider-wrapper .slider-indicator.active,
    .reviews-slider-wrapper .slider-indicator.active,
    .features-slider-wrapper .slider-indicator.active {
        width: 48px;
        height: 16px;
    }

    /* Services Slider */
    .services-slider {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        width: 100%;
    }

    .services-slider .service-card {
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
        margin: 0;
        padding: 1.5rem 1.5rem;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-height: auto;
    }

    /* Gallery Slider */
    .gallery-slider {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }

    .gallery-slider .gallery-item {
        min-width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
        margin: 0;
        aspect-ratio: 4/3;
    }

    .gallery-slider .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Category Gallery Slider for Gallery Page */
    .category-gallery-wrapper {
        padding: 0;
        margin: 0;
    }

    .category-gallery-wrapper .slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .category-gallery-slider {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        width: 100%;
    }

    .category-gallery-slider img {
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
        margin: 0;
        height: 450px;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
    }

    .category-gallery-slider img:hover {
        transform: none;
    }

    /* Smaller buttons for gallery page */
    .category-gallery-wrapper .slider-controls {
        gap: 0.75rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        padding: 0.75rem 0;
    }

    .category-gallery-wrapper .slider-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        background: rgba(44, 95, 124, 0.95);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .category-gallery-wrapper .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Indicators for gallery page */
    .category-gallery-wrapper .slider-indicators {
        margin: 0;
        padding: 0 0.5rem;
        gap: 6px;
    }

    .category-gallery-wrapper .slider-indicator {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
    }

    .category-gallery-wrapper .slider-indicator.active {
        width: 36px;
        height: 12px;
    }

    /* Reviews Slider */
    .reviews-slider {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }

    .reviews-slider .review-card {
        min-width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
        margin: 0;
        padding: 2.5rem 1.75rem;
        min-height: 320px;
    }

    /* Features Slider */
    .features-slider {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }

    .features-slider .feature-item {
        min-width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
        margin: 0;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        min-height: 48px;
        touch-action: manipulation;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        padding: 12px;
        touch-action: manipulation;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: 500px;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-badges {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .about {
        padding: 2rem 0;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .about-text {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .about-text .section-title {
        text-align: center;
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .about-image {
        width: 100%;
        margin-bottom: 2rem;
        box-sizing: border-box;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        display: block;
    }

    .services-hero {
        height: 450px;
        margin-bottom: -20px;
    }

    .services-image-overlay {
        padding: 2rem 1.5rem;
    }

    .services-image-overlay .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .services-image-overlay .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        max-width: 100%;
    }

    .services-grid {
        padding: 2.5rem 0 3rem;
    }

    .service-card {
        padding: 1.5rem 1.5rem;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card h3 {
        font-size: 1.35rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .reviews-grid {
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.75rem 1.5rem;
    }

    .review-card h4 {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact {
        padding: 2rem 0;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-item {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.75rem 0;
        align-items: flex-start;
    }

    .contact-icon {
        font-size: 1.25rem;
        margin-top: 0.2rem;
    }

    .contact-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0;
    }

    .contact-note {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }

    .social-links {
        margin-top: 0.5rem;
    }

    .social-links h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .social-icons {
        gap: 0.75rem;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 0;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.7rem;
        min-height: 44px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.875rem;
        min-height: 48px;
    }

    .btn {
        min-height: 48px;
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        touch-action: manipulation;
    }

    .hero-background {
        background-attachment: scroll;
    }

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

    .footer-section {
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    /* Gallery Page Mobile Styles */
    .gallery-hero {
        padding: 7rem 0 2rem;
    }

    .gallery-hero .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
        margin-bottom: 0.75rem;
    }

    .gallery-hero p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 1rem;
        word-wrap: break-word;
        margin: 0;
    }

    .gallery-categories {
        padding: 1.5rem 0;
    }

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

    .category-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .category-gallery-wrapper {
        padding: 0 36px;
    }

    .category-gallery-slider img {
        height: 400px;
    }

    .category-gallery-wrapper .slider-btn {
        width: 22px;
        height: 22px;
    }

    .category-gallery-wrapper .slider-btn svg {
        width: 14px;
        height: 14px;
    }

    .category-gallery-wrapper .slider-indicators {
        margin-top: 0.35rem;
        padding: 0 32px;
        gap: 2px;
    }

    .category-gallery-wrapper .slider-indicator {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
    }

    .category-gallery-wrapper .slider-indicator.active {
        width: 48px;
        height: 16px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero {
        min-height: 450px;
        padding: 70px 0 30px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .services-hero {
        height: 400px;
        margin-bottom: -15px;
    }

    .services-image-overlay {
        padding: 1.75rem 1.25rem;
    }

    .services-image-overlay .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .services-image-overlay .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        word-wrap: break-word;
    }

    .service-card {
        padding: 1.25rem 1.25rem;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
    }

    .about {
        padding: 1.5rem 0;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }

    .about-text {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .about-text .section-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        margin-bottom: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .features-slider-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 1.5rem 0;
        padding: 0;
        overflow: hidden;
    }

    .about-text .btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 1rem;
        padding: 1rem 1.5rem;
    }

    .feature-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1.25rem 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .review-card {
        padding: 1.5rem 1.25rem;
    }

    .review-card h4 {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.875rem;
    }

    .contact {
        padding: 1.5rem 0;
    }

    .contact-content {
        gap: 1.25rem;
    }

    .contact-info {
        gap: 0.75rem;
    }

    .contact-item {
        padding: 0.6rem 0;
        gap: 0.6rem;
    }

    .contact-icon {
        font-size: 1.1rem;
    }

    .contact-item h3 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.8rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem 1rem;
    }

    .contact-form {
        gap: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem;
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-btn-prev {
        left: 0;
    }

    .slider-btn-next {
        right: 0;
    }

    .services-slider-wrapper,
    .gallery-slider-wrapper,
    .reviews-slider-wrapper,
    .features-slider-wrapper {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 1.5rem 0;
    }

    .services-slider-wrapper .slider-btn,
    .gallery-slider-wrapper .slider-btn,
    .reviews-slider-wrapper .slider-btn,
    .features-slider-wrapper .slider-btn {
        width: 22px;
        height: 22px;
    }

    .services-slider-wrapper .slider-btn-prev,
    .gallery-slider-wrapper .slider-btn-prev,
    .reviews-slider-wrapper .slider-btn-prev,
    .features-slider-wrapper .slider-btn-prev {
        left: 0;
    }

    .services-slider-wrapper .slider-btn-next,
    .gallery-slider-wrapper .slider-btn-next,
    .reviews-slider-wrapper .slider-btn-next,
    .features-slider-wrapper .slider-btn-next {
        right: 0;
    }

    .services-slider-wrapper .slider-btn svg,
    .gallery-slider-wrapper .slider-btn svg,
    .reviews-slider-wrapper .slider-btn svg,
    .features-slider-wrapper .slider-btn svg {
        width: 14px;
        height: 14px;
    }

    .services-slider-wrapper .slider-indicators,
    .gallery-slider-wrapper .slider-indicators,
    .reviews-slider-wrapper .slider-indicators,
    .features-slider-wrapper .slider-indicators {
        margin: 0;
        padding: 0 0.75rem;
        gap: 8px;
    }

    .services-slider-wrapper .slider-indicator,
    .gallery-slider-wrapper .slider-indicator,
    .reviews-slider-wrapper .slider-indicator,
    .features-slider-wrapper .slider-indicator {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
    }

    .services-slider-wrapper .slider-indicator.active,
    .gallery-slider-wrapper .slider-indicator.active,
    .reviews-slider-wrapper .slider-indicator.active,
    .features-slider-wrapper .slider-indicator.active {
        width: 32px;
        height: 12px;
    }

    .services-slider-wrapper .slider-indicator,
    .gallery-slider-wrapper .slider-indicator,
    .reviews-slider-wrapper .slider-indicator,
    .features-slider-wrapper .slider-indicator {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
    }

    .services-slider-wrapper .slider-indicator.active,
    .gallery-slider-wrapper .slider-indicator.active,
    .reviews-slider-wrapper .slider-indicator.active,
    .features-slider-wrapper .slider-indicator.active {
        width: 54px;
        height: 18px;
    }

    .services-slider .service-card {
        padding: 1.25rem 1.25rem;
        min-height: auto;
    }

    .reviews-slider .review-card {
        padding: 2.25rem 1.5rem;
        min-height: 340px;
    }

    .category-gallery-wrapper {
        padding: 0 44px;
    }

    .category-gallery-slider img {
        height: 280px;
    }

    /* Ensure all text is visible */
    .review-text,
    .contact-item p,
    .footer-section p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Prevent any horizontal overflow */
    .services-slider,
    .gallery-slider,
    .reviews-slider,
    .features-slider {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-background {
        background-attachment: scroll;
    }

    /* Gallery Page Mobile Styles */
    .gallery-hero {
        padding: 6.5rem 0 1.75rem;
    }

    .gallery-hero .section-title {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .gallery-hero p {
        font-size: 0.85rem;
        padding: 0 0.75rem;
        line-height: 1.4;
    }

    .gallery-categories {
        padding: 1.25rem 0;
    }

    .category-section {
        margin-bottom: 1.75rem;
    }

    .category-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.4rem;
    }

    .category-gallery-wrapper {
        padding: 0;
    }

    .category-gallery-slider img {
        height: 380px;
    }

    .category-gallery-wrapper     .slider-controls {
        gap: 0.6rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem 1rem;
        width: auto;
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .services-slider-wrapper .slider-controls {
        padding: 0.5rem 1.5rem;
        max-width: 65%;
    }

    .gallery-slider-wrapper .slider-controls,
    .features-slider-wrapper .slider-controls {
        padding: 0.5rem 1.5rem;
        max-width: 65%;
    }

    .category-gallery-wrapper .slider-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        background: rgba(44, 95, 124, 0.95);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
    }

    .category-gallery-wrapper .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .category-gallery-wrapper .slider-indicators {
        margin: 0;
        padding: 0 0.75rem;
        gap: 8px;
    }

    .category-gallery-wrapper .slider-indicator {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
    }

    .category-gallery-wrapper .slider-indicator.active {
        width: 32px;
        height: 12px;
    }

    .category-gallery-wrapper .slider-indicator {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
    }

    .category-gallery-wrapper .slider-indicator.active {
        width: 54px;
        height: 18px;
    }
}

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

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

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

/* Mobile Image Optimization */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    html, body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .about-image img,
    .gallery-item img,
    .services-image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Ensure proper spacing between interactive elements */
    .btn + .btn {
        margin-top: 0.75rem;
    }

    .contact-item + .contact-item {
        margin-top: 1rem;
    }

    /* Improve touch targets */
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better spacing for mobile */
    section {
        padding: 3rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    .section-header {
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Prevent text overflow */
    h1, h2, h3, h4, h5, h6, p, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Ensure sliders don't overflow */
    .services-slider-wrapper,
    .gallery-slider-wrapper,
    .reviews-slider-wrapper,
    .features-slider-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
}

