/* ============================================
   SHADE PRO - Premium Shade Solutions
   ============================================ */

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

:root {
    --primary: #2d4a3e;
    --primary-dark: #1a3129;
    --primary-light: #3d6b5a;
    --accent: #c8956c;
    --accent-light: #dbb494;
    --accent-dark: #a87650;
    --cream: #faf8f5;
    --cream-dark: #f0ece6;
    --white: #ffffff;
    --text: #1a2a23;
    --text-light: #5a6e64;
    --text-muted: #8a9e94;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    color-scheme: light only;
}

@media (prefers-color-scheme: dark) {
    html, body {
        background-color: var(--cream) !important;
        color: var(--text) !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 49, 41, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 49, 41, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    object-fit: contain;
}

.nav-logo:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(200,149,108,0.4));
}

.logo-shade {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 3px;
    color: var(--white);
}

.logo-pro {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: var(--accent);
    margin-top: 1px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(255,255,255,0.1);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/shade types/standard4poles.png') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 49, 41, 0.85) 0%,
        rgba(45, 74, 62, 0.75) 50%,
        rgba(26, 49, 41, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 149, 108, 0.2);
    border: 1px solid rgba(200, 149, 108, 0.4);
    color: var(--accent-light);
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    animation: scrollBounce 2s ease infinite;
    z-index: 2;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--accent-light);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 149, 108, 0.3);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 149, 108, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

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

.btn-quote {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 2.5rem;
    box-shadow: var(--shadow-lg);
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section-divider-top {
    height: 80px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    background: var(--cream);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.section-divider-top.dark {
    background: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header.light {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-header.light .section-tag {
    color: var(--accent-light);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header.light .section-desc {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   WHAT WE DO - CAROUSEL
   ============================================ */
.what-we-do {
    padding: 6rem 0;
    background: var(--cream);
    position: relative;
}

.services-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card {
    min-width: calc(50% - 0.75rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-content {
    padding: 1.75rem;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Carousel Controls - Below carousel */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.carousel-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(45, 74, 62, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

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

/* Structure Type Chips */
.structure-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.type-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    background: var(--white);
    border: 1px solid rgba(45, 74, 62, 0.12);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.type-chip svg {
    color: var(--accent);
}

.type-chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.type-chip:hover svg {
    color: var(--accent-light);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 6rem 0;
    background: var(--primary);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,49,41,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

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

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: var(--transition);
}

.btn-gallery:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   NETTING COLOURS SECTION
   ============================================ */
.netting-colours {
    padding: 6rem 0;
    background: var(--cream);
    position: relative;
}

.colour-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

/* Net Preview Cards */
.net-preview-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-card {
    background: var(--white);
    border: 1px solid rgba(45, 74, 62, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.preview-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.net-preview-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

/* Colour Selector */
.colour-selector {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selected-colour-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid rgba(45, 74, 62, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.colour-preview-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #c8956c;
    border: 3px solid var(--cream-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transition: background 0.4s ease;
    flex-shrink: 0;
}

.colour-details {
    display: flex;
    flex-direction: column;
}

.colour-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Colour Grid */
.colour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.colour-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.colour-swatch:hover {
    background: var(--cream-dark);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.colour-swatch.active {
    background: var(--cream-dark);
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.swatch-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--cream-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.colour-swatch:hover .swatch-circle,
.colour-swatch.active .swatch-circle {
    border-color: var(--primary);
    transform: scale(1.1);
}

.swatch-name {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
}

.colour-swatch.active .swatch-name {
    color: var(--primary-dark);
}

.knittex-credit {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding-top: 0.5rem;
}

.knittex-credit strong {
    color: var(--primary);
}

/* ============================================
   AREAS WE SERVE
   ============================================ */
.areas-section {
    padding: 6rem 0;
    background: var(--primary);
    position: relative;
}

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

.area-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.75rem 1rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    text-align: center;
}

.area-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border-color: var(--accent);
}

.area-card.primary-area {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.area-card.primary-area .area-icon {
    color: var(--white);
}

.area-card.primary-area .area-name {
    color: var(--white);
}

.area-card.surrounding {
    background: rgba(255,255,255,0.03);
    border-style: dashed;
    border-color: rgba(255,255,255,0.2);
}

.area-icon {
    color: rgba(255,255,255,0.6);
}

.area-card:hover .area-icon {
    color: var(--accent-light);
}

.area-card.primary-area:hover .area-icon {
    color: var(--white);
}

.area-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.area-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    background: rgba(200, 149, 108, 0.15);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
}

.areas-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

.areas-note.light {
    color: rgba(255,255,255,0.5);
}

.areas-note a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    transition: var(--transition);
}

.areas-note a:hover {
    color: var(--accent-light);
    border-color: var(--accent-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 6rem 0;
    background: var(--cream);
    position: relative;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(45, 74, 62, 0.08);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.phone-card .contact-icon {
    background: rgba(107, 142, 78, 0.12);
    color: #5a8a3a;
}

.whatsapp-card .contact-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.email-card .contact-icon {
    background: rgba(200, 149, 108, 0.15);
    color: var(--accent-dark);
}

.facebook-card .contact-icon {
    background: rgba(66, 103, 178, 0.12);
    color: #4267B2;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.contact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background: url('images/footer-bg.jpg') center/cover no-repeat;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 49, 41, 0.88) 0%,
        rgba(45, 74, 62, 0.82) 50%,
        rgba(26, 49, 41, 0.92) 100%
    );
}

.quote-content {
    position: relative;
    z-index: 2;
}

.quote-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.quote-section p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    overflow: auto;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    color: var(--text);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    max-width: 440px;
    width: 90vw;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--cream);
    color: var(--primary);
}

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

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
}

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

/* Success State */
#quote-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

#quote-success p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

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

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.footer-brand .logo-shade {
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-col ul li svg {
    color: var(--accent);
    flex-shrink: 0;
}

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

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

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* Footer Logo Image */
.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.75rem;
    object-fit: contain;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: 0;
        top: 90px;
        flex-direction: column;
        background: rgba(26, 49, 41, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        padding: 1.5rem 0 2rem;
        gap: 0;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.3s ease;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu li {
        padding: 0.5rem 1.5rem;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-cta {
        margin-top: 0.5rem;
        display: inline-block !important;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .service-card {
        min-width: 100%;
    }

    .colour-showcase {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }

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

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .structure-types {
        gap: 0.4rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .hero-subtitle br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .what-we-do,
    .netting-colours,
    .areas-section,
    .contact,
    .gallery-section {
        padding: 4rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

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

    .type-chip {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

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

    .colour-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .swatch-circle {
        width: 28px;
        height: 28px;
    }

    .swatch-name {
        font-size: 0.5rem;
    }

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

    .area-card {
        padding: 1.25rem 0.75rem;
    }

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

    .contact-value {
        font-size: 0.95rem;
    }

    .quote-section {
        padding: 5rem 0;
    }
}
