/* ============================================
   SAM LANDSCAPING SERVICES - DESIGN SYSTEM
   ============================================ */

/* CSS Variables - Design Tokens */
:root {
    /* Colors */
    --color-primary: #0b1a2a;
    --color-accent: #f3a033;
    --color-white: #ffffff;
    --color-light-grey: #f5f5f5;
    --color-medium-grey: #666666;
    --color-dark-grey: #333333;
    --color-border: #e0e0e0;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Layout */
    --max-width: 1440px;
    --container-padding: 1rem;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    color: var(--color-dark-grey);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-medium-grey);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

.text-white {
    color: var(--color-white) !important;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-grey {
    background-color: var(--color-light-grey);
}

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.flex {
    display: flex;
    gap: var(--spacing-md);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.top-bar {
    background-color: transparent;
    color: var(--color-white);
    padding: var(--spacing-xs) 0;
    font-size: 0.875rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--color-white);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar a:hover {
    color: var(--color-accent);
}

.top-bar-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.header {
    background-color: transparent;
    color: var(--color-white);
    padding: var(--spacing-md) 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.logo-text span {
    color: var(--color-accent);
}

.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 0;
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: var(--radius-lg);
    padding: 0.75rem 2rem;
    background-color: transparent;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-xs) var(--spacing-md);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link.active {
    color: var(--color-accent);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: var(--radius-pill);
}

/* Services Dropdown */
.nav-item {
    position: relative;
}

.nav-link.has-dropdown::after {
    content: '▼';
    margin-left: 0.25rem;
    font-size: 0.7rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(11, 26, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    margin-top: 0.5rem;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--color-white);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 45%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-pill);
    font-weight: var(--font-weight-medium);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

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

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

.btn-white:hover {
    background-color: var(--color-light-grey);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(rgba(11, 26, 42, 0.3), rgba(11, 26, 42, 0.3)), url('../images/gallery/IMG_20240727_124703533.jpg') center/cover no-repeat;
    color: var(--color-white);
    padding: calc(var(--spacing-3xl) + 120px) 0 var(--spacing-3xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    padding-left: 0;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-3xl);
    font-weight: var(--font-weight-medium);
    text-align: center;
    padding-left: 0;
}

.hero-content p {
    color: #ffffff;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

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

.stat-item h3 {
    color: var(--color-white);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin: 0;
    font-weight: var(--font-weight-bold);
}

.stat-divider {
    width: 2px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-white);
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: var(--font-weight-medium);
}

.google-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.google-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    font-family: 'Arial', sans-serif;
}

.reviews-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.star-rating {
    font-size: 0.875rem;
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-pill);
    font-weight: var(--font-weight-bold);
    letter-spacing: 1px;
    transition: all var(--transition-normal);
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.service-hero-detail .hero-actions {
    justify-content: flex-start;
}




/* ============================================
   VIDEO SHOWCASE SECTION
   ============================================ */

.video-showcase {
    background-color: var(--color-light-grey);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.video-showcase-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-showcase-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-bold);
}

.video-showcase-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-medium-grey);
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    /* Limit height to 80% of viewport */
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #000;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.showcase-video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    /* Ensure video doesn't exceed viewport height */
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    background-color: #000;
}

/* Landscape Mode - Scale down video to fit */
@media screen and (orientation: landscape) and (max-height: 800px) {
    .video-container {
        max-width: 400px;
        max-height: 70vh;
    }

    .showcase-video {
        max-height: 70vh;
    }

    .video-showcase {
        padding: var(--spacing-lg) 0;
    }

    .video-showcase-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: var(--spacing-sm);
    }

    .video-showcase-description {
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        margin-bottom: var(--spacing-md);
    }
}

/* ============================================
   ABOUT US HERO SECTION
   ============================================ */

.about-hero {
    background-color: var(--color-white);
    padding: var(--spacing-3xl) 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-2xl);
}

.about-hero-content {
    margin-bottom: var(--spacing-2xl);
}

/* Left Side: Experience + Overlapping Images */
.about-hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 550px;
}

.images-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 500px;
}

.image-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

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

.image-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 4px solid var(--color-white);
}

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

.experience-text {
    position: absolute;
    bottom: 0px;
    left: 110px;
    text-align: left;
    padding: 0;
    z-index: 10;
}

.experience-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    line-height: 1;
}

.experience-label {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    line-height: 1;
}

/* Right Side: Content */
.about-hero-right {
    padding-left: var(--spacing-lg);
}

.about-hero-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.orange-text {
    color: var(--color-accent);
}

.comma {
    color: var(--color-primary);
}

.about-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-dark-grey);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Project Boxes */
.project-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.project-box {
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    background-color: var(--color-white);
    transition: all var(--transition-normal);
    text-align: center;
}

.project-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.project-box-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.project-box-count {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.project-box-services {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.service-item {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: var(--color-dark-grey);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--color-border);
    text-decoration: underline;
}

.service-item:last-child {
    border-bottom: none;
}

/* Book Now Button */
.about-hero-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.btn-book-now {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-3xl);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-pill);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    background-color: transparent;
    transition: all var(--transition-normal);
}

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

/* Responsive Design for About Hero */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .about-hero-right {
        padding-left: 0;
    }

    .project-boxes {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-light-grey);
    padding-top: calc(var(--spacing-3xl) + 50px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.gallery-title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    padding: 0 100px;
}

.gallery-items-wrapper {
    overflow: visible;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.gallery-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    transition: all 0.5s ease-in-out;
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
}

/* Only show 3 items: previous, current, next */
.gallery-item.prev,
.gallery-item.active,
.gallery-item.next {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    width: 350px;
}

/* Center/Active image - elevated */
.gallery-item.active {
    transform: translateY(-30px);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-item.active:hover {
    transform: translateY(-30px) scale(1.02);
}

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

.gallery-label {
    text-align: center;
    padding: var(--spacing-md);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    background-color: var(--color-white);
}

/* Gallery Navigation Arrows */
.gallery-arrow {
    background-color: transparent;
    border: none;
    font-size: 4rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0 var(--spacing-md);
    line-height: 1;
    font-weight: var(--font-weight-bold);
}

.gallery-arrow:hover {
    color: var(--color-accent);
    transform: scale(1.2);
}

.gallery-arrow-left {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-arrow-right {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-arrow:hover.gallery-arrow-left {
    transform: translateY(-50%) scale(1.2);
}

.gallery-arrow:hover.gallery-arrow-right {
    transform: translateY(-50%) scale(1.2);
}

/* See More Button */
.gallery-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.btn-see-more {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-3xl);
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-pill);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    background-color: transparent;
    transition: all var(--transition-normal);
}

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

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
    .gallery-arrow-left {
        left: -40px;
    }

    .gallery-arrow-right {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .gallery-items {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .gallery-arrow {
        display: none;
    }
}


/* ============================================
   CARDS
   ============================================ */

.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

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

.card-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 3rem;
    overflow: hidden;
}

.card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.card p {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

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

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

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

.footer-section h3 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

.mt-4 {
    margin-top: var(--spacing-xl);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

.mb-4 {
    margin-bottom: var(--spacing-xl);
}

.fade-in {
    animation: fadeIn var(--transition-slow);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --spacing-3xl: 3rem;
    }

    .top-bar {
        display: none;
        padding: 0.5rem 0;
        position: absolute;
        background-color: transparent;
        z-index: 1002;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-bar a {
        font-size: 0.75rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header {
        background-color: var(--color-primary);
        position: sticky;
        top: 0;
        padding: 5px;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        width: 45%;
        background-color: var(--color-primary);
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
    }

    .nav-menu-wrapper.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        border: none;
        border-radius: 0;
        padding: var(--spacing-md) var(--spacing-xs);
        gap: var(--spacing-sm);
        background-color: transparent;
        height: 100%;
        overflow-y: auto;
    }


    .nav-link.active::before {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        padding-left: 1.5rem;
        margin-top: 0.25rem;
        background-color: transparent;
        display: block;
    }

    .nav-link.has-dropdown::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0 var(--spacing-xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .stat-box {
        min-width: auto;
    }

    /* Gallery Carousel - Mobile */
    .gallery-section {
        overflow-x: hidden;
    }

    .gallery-carousel {
        padding: 0;
        max-width: 100%;
        overflow: visible;
    }

    .gallery-items-wrapper {
        max-width: 100%;
        overflow: hidden;
    }

    .gallery-items {
        gap: 0;
        justify-content: center;
    }

    /* Hide side images on mobile, show only active */
    .gallery-item.prev,
    .gallery-item.next {
        display: none;
    }

    .gallery-item.active {
        width: 90%;
        max-width: 350px;
        transform: translateY(0);
        margin: 0 auto;
    }

    .gallery-item img {
        height: 350px;
    }

    .gallery-arrow {
        font-size: 2rem;
        background-color: rgba(11, 26, 42, 0.8);
        color: white;
        border: none;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 10;
    }

    .gallery-arrow-left {
        left: -45px;
    }

    .gallery-arrow-right {
        right: -45px;
    }

    .gallery-arrow:hover {
        background-color: var(--color-primary);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }

    .top-bar a {
        font-size: 0.8rem;
    }

    .logo-img {
        width: 75px;
        height: 75px;
    }

    .nav-menu {
        padding: 0.6rem 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .hero {
        min-height: 600px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .nav-menu {
        padding: 0.7rem 1.75rem;
    }
}

/* ============================================
   TESTIMONIALS CAROUSEL SECTION - SNAKE/ZIGZAG PATTERN
   ============================================ */

.testimonials-carousel-section {
    background-color: #ffffff;
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.carousel-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary);
    margin-bottom: 4rem;
    font-weight: var(--font-weight-bold);
}

.snake-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

/* First Row - Moving Right */
.carousel-row {
    position: absolute;
    display: flex;
    gap: 2rem;
    width: fit-content;
}

.carousel-row.row-1 {
    top: 0;
    left: 0;
    animation: moveRight 5s linear infinite;
}

.carousel-row.row-2 {
    top: 280px;
    right: 0;
    animation: moveLeft 5s linear infinite;
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw - 100%));
    }
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100vw + 100%));
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.testimonial-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
    color: var(--color-white);
    z-index: 10;
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-accent);
    margin: 0;
}

/* Responsive for Testimonials Carousel */
@media (max-width: 1024px) {
    .snake-carousel {
        height: 500px;
    }

    .testimonial-card {
        width: 300px;
        height: 220px;
    }

    .carousel-row.row-2 {
        top: 240px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-section {
        padding: 3rem 0;
    }

    .carousel-title {
        margin-bottom: 2rem;
    }

    .snake-carousel {
        height: 400px;
    }

    .testimonial-card {
        width: 260px;
        height: 180px;
    }

    .carousel-row {
        gap: 1rem;
    }

    .carousel-row.row-2 {
        top: 200px;
    }

    .carousel-row.row-1,
    .carousel-row.row-2 {
        animation-duration: 15s;
    }
}

/* ============================================
   CONTACT FORM WITH MAP SECTION
   ============================================ */

.contact-map-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.contact-map-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    height: auto;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    border: 3px solid var(--color-primary);
    border-radius: 40px;
    padding: 2rem 2rem;
    box-shadow: var(--shadow-lg);
    height: auto;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    border: none;
    border-bottom: 2px solid var(--color-primary);
    background-color: transparent;
    transition: border-color var(--transition-fast);
    font-family: inherit;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%230b1a2a' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 50vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 50vh;
    border: none;
}

@media (max-width: 1024px) {
    .contact-map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
    }

    .contact-form-wrapper {
        height: auto;
    }

    .map-wrapper {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .contact-map-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 30px;
    }

    .map-wrapper {
        height: 40vh;
    }
}


/* ============================================
   FOOTER
   ============================================ */

.footer-main {
    background-image: url('../images/gallery/IMG_20240727_124703533.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 2rem 0 1rem;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    color: var(--color-white);
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 280px;
    height: auto;
    margin-bottom: 1rem;
}

/* Section Titles */
.footer-section-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--color-white);
    font-size: 1.125rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-accent);
}

/* Social Media Section */
.footer-social-section {
    display: flex;
    flex-direction: column;
}

.social-header {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-regular);
}

.social-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
    overflow: hidden;
}

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

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.contact-text {
    color: var(--color-white);
}

.contact-text a {
    color: var(--color-white);
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--color-accent);
}

.hours-info {
    font-weight: var(--font-weight-semibold);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0.5rem var(--container-padding);
    color: var(--color-white);
    font-size: 0.95rem;
}

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

.footer-bottom a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom a.artxdev-link {
    color: #FFD700;
}

.footer-bottom a.artxdev-link:hover {
    color: var(--color-accent);
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        width: 200px;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

/* ============================================
   CONTACT US PAGE - NEW LAYOUT
   ============================================ */

.contact-us-section {
    padding: 4rem 0;
}

.contact-us-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-accent);
    margin-bottom: 3rem;
    font-weight: var(--font-weight-bold);
}

.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Left Side - Image */
.contact-image-wrapper {
    width: 100%;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* Right Side - Form */
.contact-form-box {
    background-color: #f5e6d3;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field-label {
    display: block;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: #000000;
    margin-bottom: 0.5rem;
}

.form-field-input,
.form-field-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    background-color: var(--color-white);
    font-family: inherit;
    transition: box-shadow var(--transition-fast);
}

.form-field-input:focus,
.form-field-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 160, 51, 0.3);
}

.form-field-input::placeholder,
.form-field-textarea::placeholder {
    color: #999999;
}

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

.form-submit-btn {
    background-color: #d4a574;
    color: #000000;
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: block;
    margin: 0 auto;
}

.form-submit-btn:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Social Section */
.reach-out-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.reach-out-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.reach-out-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
    color: #000000;
}

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

.social-icon-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
    overflow: hidden;
}

.social-icon-link:hover {
    transform: scale(1.1);
}

.social-icon-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-us-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        padding: 3rem 0;
    }

    .contact-form-box {
        padding: 2rem 1.5rem;
    }

    .contact-image-wrapper {
        height: 350px;
    }

    .reach-out-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons-row {
        justify-content: center;
    }
}

/* Social Section */
.reach-out-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.reach-out-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 0;
}

.reach-out-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
    color: #000000;
}

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

.social-icon-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
    overflow: hidden;
}

.social-icon-link:hover {
    transform: scale(1.1);
}

.social-icon-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social Section */
.reach-out-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.reach-out-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background-color: #ffffff;
    border: none;
    border-radius: 0;
}

.reach-out-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
    color: #000000;
    margin: 0;
}

.social-icons-row {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.social-icon-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
    overflow: hidden;
    flex-shrink: 0;
}

.social-icon-link:hover {
    transform: scale(1.1);
}

.social-icon-link svg,
.social-icon-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .reach-out-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .social-icons-row {
        gap: 1.5rem;
    }

    .social-icon-link {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   GALLERY GRID SECTION
   ============================================ */

.gallery-grid-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.gallery-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Gallery Layout Wrapper */
.gallery-layout-wrapper {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: center;
}

/* Left Section - Title + 3 Image Cluster */
.gallery-left-section {
    flex: 1;
    max-width: 500px;
}

.left-image-cluster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Right Section - Large Square Image */
.gallery-right-section {
    flex: 1;
    max-width: 500px;
}

.gallery-box {
    border-radius: 20px;
    overflow: hidden;
    background-color: #d3d3d3;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

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

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

/* Specific Box Sizes */
.small-square {
    aspect-ratio: 1;
    height: 220px;
}

.large-horizontal {
    grid-column: 1 / 3;
    height: 250px;
}

.large-square-right {
    aspect-ratio: 1;
    height: 500px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-layout-wrapper {
        gap: 2rem;
        max-width: 100%;
    }

    .gallery-left-section,
    .gallery-right-section {
        max-width: 450px;
    }

    .large-square-right {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .gallery-layout-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .gallery-left-section,
    .gallery-right-section {
        max-width: 600px;
        width: 100%;
    }

    .left-image-cluster {
        margin-top: 2rem;
    }

    .small-square {
        height: 200px;
    }

    .large-horizontal {
        height: 220px;
    }

    .large-square-right {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gallery-grid-section {
        padding: 3rem 0;
    }

    .gallery-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .gallery-layout-wrapper {
        gap: 2rem;
    }

    .left-image-cluster {
        gap: 1rem;
    }

    .small-square {
        height: 150px;
    }

    .large-horizontal {
        height: 180px;
    }

    .large-square-right {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .gallery-grid-section {
        padding: 2rem 0;
    }

    .gallery-main-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .category-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .gallery-layout-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .gallery-left-section,
    .gallery-right-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .left-image-cluster {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .gallery-box {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 90%;
        max-width: 350px;
    }

    .small-square {
        height: 220px;
    }

    .large-horizontal {
        height: 220px;
    }

    .large-square-right {
        height: 300px;
    }
}

/* ============================================
   ABOUT US PAGE STYLING
   ============================================ */

/* About Us Hero Section */
.about-hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-image: url('../images/gallery/IMG_20240727_124703533.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 26, 42, 0.3);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

/* About Us Content Section - ENHANCED */
.about-content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 160, 51, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 26, 42, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Text Content - Enhanced */
.about-text-content {
    position: relative;
}

.about-text-content::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 5px;
    height: 120px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    border-radius: 10px;
}

.about-text-content h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    position: relative;
    text-align: center;
}

.who-we-are {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: var(--font-weight-medium);
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.tagline {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 2.5rem;
    position: relative;
    display: block;
    line-height: 1.4;
    text-align: center;
}

.yellow-underline {
    position: relative;
}

.yellow-underline::after {
    content: '';
    position: absolute;
    left: -170px;
    right: 0;
    bottom: 8px;
    height: 15px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    z-index: -1;
    opacity: 0.4;
    border-radius: 3px;
}

.about-text-content p {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.9;
    color: var(--color-dark-grey);
    margin-bottom: 1.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-text-content p.tagline {
    padding-left: 0;
}

.about-text-content p.tagline::before {
    display: none;
}

.about-text-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
}

/* Image Wrapper - Enhanced */
.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.8;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(243, 160, 51, 0.1) 0%, transparent 100%);
    z-index: 1;
    border-radius: 20px;
    transition: opacity var(--transition-normal);
}

.about-image-wrapper:hover::after {
    opacity: 0;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform var(--transition-slow);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content-wrapper {
        gap: 3rem;
    }

    .about-image-wrapper {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 70vh;
    }

    .about-content-section {
        padding: 3rem 0;
    }

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

    .about-image-wrapper {
        height: 400px;
    }

    .yellow-underline::after {
        left: -130px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        min-height: 60vh;
    }

    .about-image-wrapper {
        height: 300px;
    }

    .yellow-underline::after {
        left: -100px;
        height: 8px;
        bottom: 3px;
    }
}

/* ============================================
   ABOUT PAGE - PROFESSIONAL STYLING
   ============================================ */

/* Our Story Section - ENHANCED */
.our-story-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: 'Our Story';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: var(--font-weight-bold);
    color: rgba(243, 160, 51, 0.03);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-content {
    position: relative;
}

.story-content h2.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    position: relative;
    text-align: center;
}

.story-content h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
    border-radius: 10px;
}

.story-subtitle {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: var(--font-weight-medium);
    color: var(--color-accent);
    margin-bottom: 2.5rem;
    font-style: italic;
    text-align: center;
}

.story-content p {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.9;
    color: var(--color-dark-grey);
    margin-bottom: 1.75rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-accent);
    padding-left: 1.5rem;
}

.story-content p:last-of-type {
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

/* Story Image - Enhanced with Creative Layout */
.story-image {
    position: relative;
    width: 100%;
    height: 550px;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #d98a1f 100%);
    border-radius: 20px;
    z-index: 0;
}

.story-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-slow);
    z-index: 1;
    border: 5px solid var(--color-white);
}

.story-image:hover img {
    transform: translate(-15px, -15px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

/* Mission & Values Section */
.mission-values-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.mission-values-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    color: var(--color-dark-grey);
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--color-light-grey);
}

.why-choose-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-medium-grey);
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-item {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.benefit-number {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    color: var(--color-dark-grey);
    margin: 0;
}

/* Our Approach Section */
.our-approach-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.our-approach-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.our-approach-section .section-subtitle {
    margin-bottom: 4rem;
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 0 0 8px var(--color-white), 0 0 0 10px var(--color-accent);
    z-index: 2;
}

.timeline-content {
    padding: 2rem;
    background-color: var(--color-light-grey);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    color: var(--color-dark-grey);
    margin: 0;
}

/* Stats Section */
.about-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d2338 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.stat-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-box:last-child::after {
    display: none;
}

.stat-box .stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
}

/* How We Work Section */
.how-we-work-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.how-work-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.how-work-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFD700;
}

.question-mark {
    color: var(--color-primary);
}

.work-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.work-step-card {
    background-color: var(--color-white);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all var(--transition-normal);
}

.work-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-label {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    color: #28a745;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin: 0;
}

/* What We Stand For Section */
.what-we-stand-for-section {
    padding: 5rem 0;
    background-color: #e8e8e8;
}

.stand-for-subtitle {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.stand-for-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3.5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.principle-card {
    background-color: var(--color-white);
    border: 2px solid #333;
    border-radius: 15px;
    min-height: 200px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-normal);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon svg {
    color: #28a745;
    stroke: #28a745;
}

.principle-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.principle-text {
    font-size: 0.95rem;
    color: var(--color-dark-grey);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .work-steps-grid,
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .how-we-work-section,
    .what-we-stand-for-section {
        padding: 3rem 0;
    }

    .work-steps-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .work-step-card,
    .principle-card {
        min-height: 120px;
    }
}

/* CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(243, 160, 51, 0.1), rgba(243, 160, 51, 0.05));
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-dark-grey);
    margin-bottom: 2.5rem;
}

.cta-content .btn-primary {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

/* ============================================
   RESPONSIVE DESIGN - ABOUT PAGE
   ============================================ */

@media (max-width: 992px) {
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image {
        height: 400px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .approach-timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        grid-column: 1;
    }
}

@media (max-width: 768px) {

    .our-story-section,
    .mission-values-section,
    .why-choose-section,
    .our-approach-section {
        padding: 3rem 0;
    }

    .story-wrapper {
        gap: 2rem;
    }

    .story-image {
        height: 300px;
    }

    .values-grid,
    .benefits-grid {
        gap: 1.5rem;
    }

    .value-card,
    .benefit-item {
        padding: 2rem 1.5rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-box::after {
        display: none;
    }

    .about-cta-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .value-card,
    .benefit-item {
        padding: 1.5rem 1rem;
    }

    .timeline-content {
        padding: 1rem;
    }
}

/* ============================================
   COMPACT SERVICES SECTION
   ============================================ */

.services-compact-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.services-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-dark-grey);
}

.services-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-compact-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-compact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent), #d98a1f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-compact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(243, 160, 51, 0.2);
}

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

.service-compact-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-compact-icon svg {
    width: 45px;
    height: 45px;
    fill: white;
}

.service-compact-card:hover .service-compact-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-compact-info {
    flex: 1;
}

.service-compact-info h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.service-compact-card:hover .service-compact-info h3 {
    color: var(--color-accent);
}

.service-compact-info p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--color-dark-grey);
    margin: 0;
    line-height: 1.5;
}

.service-compact-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #d98a1f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(243, 160, 51, 0.3);
}

.service-compact-card:hover .service-compact-arrow {
    transform: translateX(6px) scale(1.1);
    box-shadow: 0 6px 16px rgba(243, 160, 51, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-compact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-compact-section {
        padding: 3rem 0;
    }

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

    .service-compact-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .service-compact-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 2rem;
    }

    .service-compact-arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .services-compact-section {
        padding: 2.5rem 0;
    }

    .service-compact-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .service-compact-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.75rem;
    }

    .service-compact-arrow {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 1.2rem;
    }

    .service-compact-card:hover {
        transform: translateX(4px);
    }
}

/* ============================================
   HIGH-END SERVICE PAGES (REFERENCE: FRANCOLS)
   ============================================ */

/* Service Hero v2 */
.service-hero-detail {
    background-color: #0b1a2a;
    /* Sophisticated dark blue/charcoal */
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.service-hero-detail::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(46, 204, 113, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.service-hero-detail .overline {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-hero-detail h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 800px;
    color: var(--color-white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.service-hero-detail p {
    font-size: 1.25rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Process Timeline */
.process-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 20%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--color-medium-grey);
}

/* Z-Pattern Layout */
.z-pattern-section {
    padding: 6rem 0;
}

.z-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.z-row:last-child {
    margin-bottom: 0;
}

.z-row:nth-child(even) .z-image {
    order: 2;
}

.z-row:nth-child(even) .z-content {
    order: 1;
}

.z-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.z-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.z-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.z-content p {
    font-size: 1.125rem;
    color: var(--color-dark-grey);
    margin-bottom: 2rem;
}

.z-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.z-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.z-feature-item svg {
    color: var(--color-accent);
    width: 20px;
    height: 20px;
}

/* Accordion FAQ v2 */
.faq-v2-section {
    padding: 6rem 0;
    background-color: #f9f9f7;
    /* Very light beige/off-white */
}

.faq-v2-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-v2 {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question-v2 {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question-v2:hover {
    background-color: rgba(46, 204, 113, 0.05);
}

.faq-answer-v2 {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-item-v2.active .faq-answer-v2 {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-icon-v2 {
    transition: transform 0.3s ease;
}

.faq-item-v2.active .faq-icon-v2 {
    transform: rotate(180deg);
}

/* Responsiveness for new sections */
@media (max-width: 1024px) {
    .z-row {
        gap: 2rem;
    }

    .z-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero-detail {
        padding: 8rem 0 4rem;
        text-align: center;
    }

    .service-hero-detail h1 {
        margin: 0 auto 2rem;
    }

    .service-hero-detail p {
        margin: 0 auto 3rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        width: 100%;
    }

    .z-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .z-row:nth-child(even) .z-image {
        order: 1;
    }

    .z-row:nth-child(even) .z-content {
        order: 2;
    }

    .z-image img {
        height: 350px;
    }

    .z-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   IMAGE LIGHTBOX
   ============================================ */

/* Make clickable images have pointer cursor */
img:not(.logo-img):not(.footer-logo):not([class*="social"]):not([class*="icon"]) {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

img:not(.logo-img):not(.footer-logo):not([class*="social"]):not([class*="icon"]):hover {
    opacity: 0.9;
}

/* Lightbox overlay */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
}

/* Lightbox content container */
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lightbox image */
.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

/* Close button */
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .lightbox-image {
        max-height: 85vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

/* Tablet - Gallery Carousel */
@media (max-width: 1024px) and (min-width: 769px) {
    .gallery-carousel {
        padding: 0 60px;
    }

    .gallery-item.prev,
    .gallery-item.active,
    .gallery-item.next {
        width: 320px;
    }

    .gallery-item img {
        height: 350px;
    }

    .gallery-arrow-left {
        left: -70px;
    }

    .gallery-arrow-right {
        right: -70px;
    }
}
