* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    color: #2B2B2B;
    background-color: #F2F2F0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Keyboard focus visibility — applied only when navigating with keyboard */
:focus-visible {
    outline: 3px solid #1F3D2E;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove default focus outline for mouse users (browser handles this via :focus-visible) */
:focus:not(:focus-visible) {
    outline: none;
}

/* Lightbox styles */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background-color: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

#lightbox.active {
    display: flex !important;
}

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    max-height: 90dvh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    padding-top: 0.4rem;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.2s;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    opacity: 0.8;
    line-height: 1;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.lightbox-close:hover {
    transform: scale(1.2);
    opacity: 1;
}

.lightbox-close:active {
    transform: scale(1.1);
    opacity: 1;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 0;
    user-select: none;
    transition: all 0.2s;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1;
    z-index: 10001;
    -webkit-tap-highlight-color: transparent;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

#lightbox-prev {
    left: 20px;
}

#lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 10001;
    background: transparent;
    padding: 0 0 0.5rem 0;
    border-radius: 0;
    pointer-events: none;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Carousel styles */
.image-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    user-select: none;
    text-align: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    display: flex;
    height: 100%;
    align-items: center;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    transform: translateX(0%);
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: auto;
    height: auto;
    max-width: 800px;
    max-height: 500px;
    object-fit: contain;
    display: block;
    user-select: none;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 28px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.5;
    font-weight: 300;
}

.carousel-prev:hover,
.carousel-next:hover {
    transform: translateY(-50%) scale(1.3);
    opacity: 1;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: none;
}

.carousel-dot {
    display: none;
}

.carousel-dot.active {
    display: none;
}

.carousel-dot:hover {
    display: none;
}

/* Audience-specific theming */
body.audience-private {
    background: radial-gradient(circle at 10% 10%, rgba(35, 123, 92, 0.12), transparent 34%), #f3f6f1;
}

body.audience-private .audience-mode-strip {
    background: linear-gradient(90deg, #1f3d2e, #2f6f57);
}

body.audience-private section:first-of-type {
    background-image: linear-gradient(115deg, #1f3d2e 0%, #2f6f57 48%, #58a07d 100%);
}

body.audience-private .bg-white.rounded-xl.border,
body.audience-private .bg-white.rounded-lg.border,
body.audience-private article.bg-background.border {
    box-shadow: 0 14px 32px rgba(31, 61, 46, 0.08);
    border-color: rgba(47, 111, 87, 0.24);
}

body.audience-private .text-primary {
    color: #1f4e3a;
}

body.audience-business {
    background: radial-gradient(circle at 100% 0%, rgba(15, 49, 74, 0.13), transparent 38%), #eef2f6;
}

body.audience-business .audience-mode-strip {
    background: linear-gradient(90deg, #0f314a, #1f5678);
}

body.audience-business section:first-of-type {
    background-image: linear-gradient(125deg, #0f314a 0%, #1f5678 50%, #2f769e 100%);
}

body.audience-business section:first-of-type h1,
body.audience-business section:first-of-type p,
body.audience-business section:first-of-type a {
    color: #f3f7fb;
}

body.audience-business section:first-of-type a {
    border-color: rgba(243, 247, 251, 0.55);
}

body.audience-business .bg-white.rounded-xl.border,
body.audience-business .bg-white.rounded-lg.border,
body.audience-business article.bg-background.border {
    border-color: rgba(15, 49, 74, 0.28);
    box-shadow: 0 12px 26px rgba(11, 31, 47, 0.08);
}

body.audience-business .text-primary {
    color: #123f5b;
}

body.audience-business .bg-primary {
    background-color: #123f5b;
}

body.audience-business .hover\:bg-secondary:hover {
    background-color: #1d5c82;
}

/* Services split cards */
.journey-track-card {
    position: relative;
    overflow: hidden;
}

.journey-track-card::after {
    content: '';
    position: absolute;
    inset: auto -30px -40px auto;
    width: 160px;
    height: 160px;
    border-radius: 9999px;
    opacity: 0.28;
}

.journey-track-private {
    background: linear-gradient(145deg, #f3f7f3 0%, #ffffff 55%);
    border-color: rgba(47, 111, 87, 0.26);
}

.journey-track-private::after {
    background: radial-gradient(circle, rgba(56, 142, 106, 0.36) 0%, rgba(56, 142, 106, 0.04) 68%);
}

.journey-track-business {
    background: linear-gradient(145deg, #eef4f8 0%, #ffffff 55%);
    border-color: rgba(15, 49, 74, 0.28);
}

.journey-track-business::after {
    background: radial-gradient(circle, rgba(31, 86, 120, 0.34) 0%, rgba(31, 86, 120, 0.04) 68%);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Image hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.carousel-hint {
    display: block;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
    line-height: 1.5;
}

/* Carousel Thumbnails */
.carousel-thumbnails {
    display: none;
}

@media (min-width: 1024px) {
    .carousel-thumbnails {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
        margin-top: 24px;
        margin-left: auto;
        margin-right: auto;
    }
}

.carousel-thumbnail {
    width: 100%;
    max-width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    margin: 0 auto;
}

.carousel-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-thumbnail.active {
    border-color: #10b981;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Custom scrollbar - overlay style (doesn't take space) */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 124, 44, 0.7) transparent;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(74, 124, 44, 0.7);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 124, 44, 0.9);
}

/* Form styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #7ab547;
    ring: 2px;
    ring-color: #7ab547;
}

/* Accessible keyboard focus treatment */
:where(a, button, input, textarea, select, [role="button"]):focus-visible {
    outline: 3px solid #1F3D2E;
    outline-offset: 2px;
}

.gallery-image[role="button"]:focus-visible,
.carousel-thumbnail:focus-visible {
    box-shadow: 0 0 0 4px rgba(31, 61, 46, 0.25);
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Lightbox mobile optimizations */
    #lightbox {
        padding: 0;
        background-color: rgba(0, 0, 0, 0.98);
    }
    
    #lightbox img {
        max-width: 95vw;
        max-height: 85vh;
        max-height: 85dvh;
        width: auto;
        height: auto;
        border-radius: 0;
        touch-action: none;
    }
    
    .lightbox-close {
        position: fixed;
        top: env(safe-area-inset-top, 10px);
        top: max(env(safe-area-inset-top), 10px);
        right: 10px;
        font-size: 36px;
        width: 50px;
        height: 50px;
        background: transparent;
        border: none;
        opacity: 0.9;
        z-index: 10002;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    }
    
    .lightbox-close:active {
        transform: scale(1.1);
        opacity: 1;
    }
    
    .lightbox-nav {
        font-size: 36px;
        width: 50px;
        height: 50px;
        background: transparent;
        border: none;
        opacity: 0.9;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    }
    
    .lightbox-nav:active {
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
    }
    
    #lightbox-prev {
        left: 10px;
    }
    
    #lightbox-next {
        right: 10px;
    }
    
    /* Carousel mobile optimizations */
    .carousel-container {
        width: 100%;
    }
    
    .carousel-slide img {
        max-width: 100%;
        max-height: 300px;
        width: auto;
        height: auto;
    }
    
    .carousel-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: auto;
    }
    
    .carousel-prev,
    .carousel-next {
        display: none !important;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .carousel-container {
        width: auto;
        display: inline-block;
    }
    
    .carousel-slide img {
        max-width: 600px;
        max-height: 450px;
    }
    
    .carousel-prev,
    .carousel-next {
        display: flex !important;
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .carousel-container {
        width: auto;
        display: inline-block;
    }
    
    .carousel-slide img {
        max-width: 800px;
        max-height: 500px;
    }
    
    .carousel-prev,
    .carousel-next {
        display: flex !important;
        width: 50px;
        height: 50px;
        font-size: 36px;
    }
    
    .carousel-prev:hover,
    .carousel-next:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}
    
.carousel-dots {
    gap: 8px;
    margin-top: 12px;
    padding: 8px;
    min-height: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    flex-shrink: 0;
}

.carousel-dot.active {
    transform: scale(1.4);
}

/* Touch-friendly adjustments */
.gallery-image {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Hero section mobile */
section[style*="background-image"] {
    min-height: 100vh;
    height: auto;
}

/* ========================================
   RESPONSIVE TYPE SCALE
   Mobile-first approach: smaller on mobile, larger on desktop
   ======================================== */

/* Mobile typography (base) */
h1 {
    font-size: 1.875rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.25;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.3;
}

/* Utility text size classes - mobile base */
.text-7xl {
    font-size: 1.875rem;
}

.text-5xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.375rem;
}

.text-2xl {
    font-size: 1.25rem;
}

.text-xl {
    font-size: 1.125rem;
}

/* Tablet and Desktop typography - expanded hierarchy */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    .text-7xl {
        font-size: 4.5rem;
    }

    .text-5xl {
        font-size: 3rem;
    }

    .text-4xl {
        font-size: 2.25rem;
    }

    .text-3xl {
        font-size: 1.875rem;
    }

    .text-2xl {
        font-size: 1.5rem;
    }

    .text-xl {
        font-size: 1.25rem;
    }
}

/* ========================================
   RESPONSIVE SPACING SCALE
   Mobile-first approach: compact on mobile, spacious on desktop
   ======================================== */

/* Mobile spacing (base) */
.py-20 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.mb-16 {
    margin-bottom: 1.5rem;
}

.mb-12 {
    margin-bottom: 1.5rem;
}

.gap-12 {
    gap: 1.5rem;
}

/* Desktop spacing - more generous rhythm */
@media (min-width: 768px) {
    .py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .mb-16 {
        margin-bottom: 4rem;
    }

    .mb-12 {
        margin-bottom: 3rem;
    }

    .gap-12 {
        gap: 3rem;
    }
}

/* ========================================
   COMPONENT-SPECIFIC SPACING
   Grid components with responsive gaps
   ======================================== */

.services-grid,
.photo-grid {
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid,
    .photo-grid {
        gap: 2rem;
    }
}

/* ========================================
   FORM & INTERACTIVE ELEMENTS
   Mobile-friendly touch targets (48px minimum)
   ======================================== */

button, a.button, .btn {
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Form inputs mobile friendly */
input, textarea, select {
    font-size: 16px;
    min-height: 48px;
    padding: 0.75rem;
}

textarea {
    min-height: 120px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.mobile-menu {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

/* Service cards mobile */
.service-card,
.service-card img {
    height: auto;
    min-height: 200px;
}

/* Smooth scrolling on mobile */
html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

body {
    -webkit-text-size-adjust: 100%;
}

/* Hide scrollbar on mobile */
::-webkit-scrollbar {
    width: 4px;
}

/* Better tap targets for interactive controls */
button, .clickable, [role="button"] {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* iPhone 12 Pro and similar (390px) */
@media (max-width: 414px) {
    .carousel-container {
        height: 280px;
    }
    
    #lightbox img {
        max-height: 75vh;
    }
    
    .lightbox-nav,
    .lightbox-close {
        width: 44px;
        height: 44px;
        font-size: 30px;
    }
    
    #lightbox-prev {
        left: 10px;
    }
    
    #lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-container {
        height: 350px;
    }
}

/* Landscape mobile phones */
@media (max-width: 896px) and (orientation: landscape) {
    .carousel-container {
        height: 250px;
    }
    
    #lightbox img {
        max-height: 75vh;
    }
    
    #lightbox {
        padding: 10px;
    }
    
    /* Reduce tall section padding in landscape to avoid scroll fatigue */
    main section.py-20,
    section.py-20:not(footer section) {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    section[style*="background-image"] {
        min-height: 100vh;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .carousel-container {
        height: 240px;
    }
    
    .carousel-dots {
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
    }
}

/* ==================== Services Grid Layout ==================== */

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-card-btn {
    display: inline-block;
    color: #2d5016;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
}

.service-card-btn:hover {
    color: #7ab547;
}

/* ==================== Pricing Signal Component ==================== */

.price-signal-panel {
    border: 1px solid rgba(31, 61, 46, 0.14);
    border-radius: 0.9rem;
    background: #f7faf8;
    box-shadow: 0 10px 24px rgba(20, 52, 37, 0.06);
}

.price-signal-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    background: rgba(31, 78, 58, 0.1);
    color: #1f4e3a;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.price-signal-subtitle {
    color: #55606c;
    max-width: 36rem;
    margin-bottom: 0.35rem;
}

.price-signal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.85rem;
    margin-top: 0.75rem;
}

.price-signal-item {
    background: #ffffff;
    border: 1px solid rgba(31, 61, 46, 0.1);
    border-radius: 0.75rem;
    padding: 0.9rem 1rem;
    box-shadow: 0 2px 10px rgba(20, 52, 37, 0.04);
}

.price-signal-label {
    color: #6b7280;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.price-signal-value {
    color: #183f2f;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.price-signal-note {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(31, 61, 46, 0.2);
    color: #6b7280;
    font-size: 0.84rem;
    line-height: 1.4;
}

body.audience-business .price-signal-panel {
    border-color: rgba(15, 49, 74, 0.16);
    background: #f2f7fb;
    box-shadow: 0 10px 24px rgba(11, 31, 47, 0.06);
}

body.audience-business .price-signal-chip {
    background: rgba(15, 49, 74, 0.14);
    color: #123f5b;
}

body.audience-business .price-signal-item {
    border-color: rgba(15, 49, 74, 0.15);
}

body.audience-business .price-signal-value {
    color: #123f5b;
}

body.audience-business .price-signal-note {
    border-top-color: rgba(15, 49, 74, 0.2);
}

@media (max-width: 640px) {
    .price-signal-grid {
        grid-template-columns: 1fr;
    }

    .price-signal-value {
        font-size: 1.3rem;
    }
}

/* ==================== Photo Grid Gallery ==================== */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================== Breadcrumb Navigation ==================== */

.breadcrumb-nav {
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-nav a {
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

/* ==================== Mobile Optimizations ==================== */

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .photo-grid-item {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
