/* ========================================
   Pro South Grounds - Main Stylesheet
   ======================================== */

/* CSS Custom Properties */
:root {
    --primary: #e85d04;
    --primary-dark: #c44b03;
    --primary-light: #f48c06;
    --accent: #1a1a2e;
    --accent-dark: #111122;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ========================================
   HEADER
   ======================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

#main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

#main-header.scrolled .logo-img {
    height: 50px;
}

.footer-logo-img {
    height: 70px;
    background: #000;
    border-radius: 8px;
    padding: 4px;
}

#main-nav ul {
    display: flex;
    gap: 32px;
}

#main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-700);
    position: relative;
    padding: 4px 0;
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

#main-nav a:hover {
    color: var(--primary);
}

#main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

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

#mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/6039.heic.jpg') center/cover no-repeat;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(26, 26, 46, 0.82) 50%, rgba(10, 10, 20, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(232, 93, 4, 0.25);
    color: #ffb066;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(232, 93, 4, 0.45);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 24px;
}

.stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    min-width: 140px;
    transition: var(--transition);
}

.stat:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffb066;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-label i {
    color: #ffb066;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

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

/* ========================================
   HIGHLIGHTS BAR
   ======================================== */
.highlights-bar {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    background: var(--gray-100);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gray-900);
}

.highlight-item span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    background: rgba(45, 106, 79, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(64, 145, 108, 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--primary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.pricing-card-head {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1), rgba(232, 93, 4, 0.04));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pricing-icon i {
    font-size: 1.4rem;
    color: var(--primary);
}

.pricing-card-head h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pricing-card-head p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.pricing-list h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    margin: 18px 0 8px;
}

.pricing-list h4:first-child {
    margin-top: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--gray-300);
}

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

.price-label {
    font-size: 0.92rem;
    color: var(--gray-700);
}

.price-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-900);
    white-space: nowrap;
}

.price-free {
    color: var(--primary);
}

.pricing-includes {
    margin-top: 16px;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.pricing-includes h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.pricing-includes ul {
    display: grid;
    gap: 8px;
}

.pricing-includes li {
    font-size: 0.88rem;
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.pricing-includes li i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 4px;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(232, 93, 4, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin: 20px 0;
}

.pricing-note i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
}

.pricing-note p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card > .pricing-list {
    margin-bottom: 24px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    background: transparent;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.9), rgba(27, 67, 50, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.5rem;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-item.hidden {
    display: none;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    margin: 0 auto;
}

#lightbox-caption {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-top: 16px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--primary);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    padding: 100px 0;
    background: var(--gray-100);
}

.reviews-stats {
    text-align: center;
    margin-bottom: 48px;
}

.review-score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.review-score .score {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
}

.review-count {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.reviews-carousel {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-track {
    display: flex;
    gap: 24px;
}

.review-card {
    flex: 0 0 auto;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.review-stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.review-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.avatar-j { background: #e85d04; }
.avatar-c { background: #2a9d8f; }
.avatar-jw { background: #457b9d; }
.avatar-l { background: #9b5de5; }
.avatar-a { background: #e07a5f; }
.avatar-m { background: #81b29a; }
.avatar-n { background: #6d6875; }
.avatar-d { background: #3a86ff; }
.avatar-ja { background: #e63946; }
.avatar-e { background: #606c38; }
.avatar-ab { background: #bc6c25; }
.avatar-y { background: #4a4e69; }
.avatar-dr { background: #0f4c5c; }
.avatar-au { background: #8338ec; }

.review-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gray-900);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(45, 106, 79, 0.05);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.main-img {
    height: 500px;
}

.accent-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 160px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-content .section-tag {
    margin-bottom: 8px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.about-content > p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    gap: 14px;
}

.about-feature i {
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.service-areas {
    padding: 80px 0;
    background: var(--gray-100);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.area-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.area-item i {
    color: var(--primary);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-phone {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(212, 168, 67, 0); }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
}

.contact-form {
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--gray-200);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-card a, .contact-card span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.contact-card a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   FLOATING CTA
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    background: var(--primary);
    color: var(--white) !important;
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.floating-cta i {
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-8deg); }
    20%, 40% { transform: rotate(8deg); }
    50% { transform: rotate(0); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--gray-500);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-500);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary-light);
    width: 16px;
}

.footer-contact a {
    color: var(--gray-500);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ========================================
   BEFORE & AFTER SECTION
   ======================================== */
.before-after-section {
    padding: 100px 0;
    background: var(--white);
}

.ba-pair {
    margin-bottom: 60px;
}

.ba-pair:last-child {
    margin-bottom: 0;
}

.ba-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ba-title i {
    color: var(--primary);
}

.ba-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ba-image {
    position: relative;
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

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

.ba-image .ba-label {
    position: absolute;
    bottom: 14px;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.ba-image .ba-label-before {
    left: 14px;
    background: rgba(0,0,0,0.65);
    color: var(--white);
}

.ba-image .ba-label-after {
    right: 14px;
    background: var(--primary);
    color: var(--white);
}

/* Contact Services List */
.faq-section {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-900);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--primary);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item p {
    padding: 16px 24px 20px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item p a {
    color: var(--primary);
    font-weight: 600;
}

.faq-item p a:hover {
    text-decoration: underline;
}

.contact-services-list {
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.contact-services-list h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-services-list ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.contact-services-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Before/After Mobile */
    .before-after-section {
        padding: 60px 0;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-item summary {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-item p {
        padding: 14px 18px 18px;
    }

    .ba-compare {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ba-image {
        aspect-ratio: 4/3;
    }

    .ba-image .ba-label {
        font-size: 0.7rem;
        padding: 4px 12px;
        bottom: 10px;
    }

    /* Header Mobile */
    #main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 12px 20px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    #main-nav.active {
        transform: translateY(0);
    }

    #main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    #main-nav a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-200);
        font-size: 1rem;
    }

    .header-cta {
        display: none;
    }

    #mobile-toggle {
        display: flex;
    }

    .header-inner {
        height: 70px;
    }

    .logo-img {
        height: 45px;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Highlights Mobile */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .highlight-item {
        padding: 10px;
        gap: 10px;
    }

    .highlight-item i {
        font-size: 1.2rem;
    }

    .highlight-item strong {
        font-size: 0.8rem;
    }

    .highlight-item span {
        font-size: 0.7rem;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-filters {
        gap: 8px;
        margin-bottom: 24px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Reviews Mobile */
    .review-card {
        min-width: 280px;
        padding: 24px;
    }

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

    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .accent-img {
        bottom: -15px;
        right: 15px;
        width: 150px;
        height: 120px;
    }

    .main-img {
        height: 300px;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    /* Areas Mobile */
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .area-item {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Floating CTA Mobile */
    .floating-cta span {
        display: none;
    }

    .floating-cta {
        padding: 16px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }

    /* Sections Mobile */
    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .services {
        padding: 60px 0;
    }

    .gallery {
        padding: 60px 0;
    }

    .reviews {
        padding: 60px 0;
    }

    .about {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .service-areas {
        padding: 50px 0;
    }

    .cta-banner {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

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

    .highlight-item {
        padding: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .stat {
        display: flex;
        align-items: center;
        gap: 16px;
        width: 100%;
        text-align: left;
        padding: 16px 20px;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.8rem;
        min-width: 72px;
        margin-bottom: 0;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }

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

    .service-card {
        padding: 24px 20px;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .logo-img {
        height: 40px;
    }

    .about-feature {
        gap: 10px;
    }

    .about-feature i {
        font-size: 1.1rem;
    }

    .about-feature strong {
        font-size: 0.9rem;
    }

    .about-feature p {
        font-size: 0.8rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(27, 67, 50, 0.85), transparent 60%);
    }

    .gallery-overlay i {
        display: none;
    }

    .gallery-overlay span {
        position: absolute;
        bottom: 12px;
        left: 12px;
        font-size: 0.8rem;
    }
}

/* Safe Area for Notched Devices */
@supports (padding: env(safe-area-inset-bottom)) {
    .floating-cta {
        bottom: calc(20px + env(safe-area-inset-bottom));
        right: calc(20px + env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-600);
}
