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

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float linear infinite;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    to {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Font Loading Strategy */
.fonts-loading .loading-text,
.fonts-loading h1,
.fonts-loading h2,
.fonts-loading h3,
.fonts-loading h4,
.fonts-loading h5,
.fonts-loading h6 {
    opacity: 0;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo {
    width: 200px;
    height: auto;
    animation: logoBreath 2s ease-in-out infinite;
}

@keyframes logoBreath {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gold);
    width: 0%;
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-text {
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-top: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

:root {
    --primary-color: #000000;
    --secondary-color: #FFD700;
    --accent-color: #FFA500;
    --text-dark: #000000;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --gold: #FFD700;
    --dark-gold: #DAA520;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    cursor: none;
    font-size: clamp(16px, 2vw, 18px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-weight: normal;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

/* Lazy Loading Images */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img.loaded {
    opacity: 1;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.1s ease;
    background: transparent;
    display: none; /* Initially hidden */
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.8;
    box-shadow: 0 0 6px var(--gold);
    display: none; /* Initially hidden */
}

/* Show cursor only on devices with hover capability */
@media (hover: hover) and (pointer: fine) {
    .cursor,
    .cursor-trail {
        display: block;
    }
}

a, button {
    cursor: none;
}

.cursor.hover {
    transform: scale(1.3);
    background: transparent;
    border-width: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

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

/* Header & Navigation */
header {
    background: #000000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.5rem 0;
}

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

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

.logo img:hover {
    opacity: 0.8;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.cta-button {
    background: var(--gold);
    color: #000000 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
    pointer-events: none;
    display: block;
}

/* Hero Section */
.hero {
    background: #000000 url('/images/Gorillacon-logo.jpg') no-repeat center 60%;
    background-attachment: fixed;
    background-size: 400px auto;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gold border */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: slideGold 3s infinite;
}

@keyframes slideGold {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
    pointer-events: none;
}

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

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
}

.hero-content h3 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--gold);
    animation: fadeInUp 1s ease-out 0.3s backwards;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: .1em;
    animation: 
        typing 3.5s steps(50, end) 1s forwards,
        blink-caret .75s step-end infinite;
    border-right: 2px solid var(--gold);
    max-width: fit-content;
    margin: 0 auto 2rem;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--gold); }
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: #000000;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

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

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

/* Dark background sections - override btn-secondary to white */
.hero .btn-secondary,
.cta-section .btn-secondary,
footer .btn-secondary,
.gallery-showcase .btn-secondary {
    color: white;
    border-color: white;
}

.hero .btn-secondary:hover,
.cta-section .btn-secondary:hover,
footer .btn-secondary:hover,
.gallery-showcase .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Search CTA buttons */
.search-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

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

.search-cta .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.service-areas p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.service-areas .key-areas {
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 1;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--gold);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.service-card a:hover {
    color: var(--dark-gold);
    transform: translateX(5px);
}

.service-card a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.service-card a:hover:after {
    width: 100%;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid transparent;
}

.feature:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--gold);
    border-radius: 10px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.feature:hover::before {
    opacity: 0.3;
}

.feature h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--text-light);
}

/* Gallery Showcase Slideshow */
.gallery-showcase {
    padding: 4rem 0;
    background: #0a0a0a;
}

.gallery-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gold);
}

/* Multi-item Slideshow */
.multi-slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.multi-slideshow-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.multi-slideshow {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.slide-item {
    flex: 0 0 calc(25% - 0.75rem);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.slide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

.slide-item .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slideshow-controls button {
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    border: 2px solid var(--gold);
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
    border-radius: 5px;
}

.slideshow-controls button:hover {
    background: var(--gold);
    color: #000;
}

.gallery-cta-text {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gold);
    font-size: 1.1rem;
    font-style: italic;
}

/* Responsive adjustments for gallery */
@media (max-width: 1024px) {
    .slide-item {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
}

@media (max-width: 768px) {
    .slide-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .slide-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .slide-item {
        flex: 0 0 100%;
    }
}

/* Before/After Slider */
.before-after {
    padding: 4rem 0;
    background: #000;
}

.before-after h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gold);
}

.ba-slider {
    max-width: 800px;
    margin: 0 auto;
}

.ba-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 3px solid var(--gold);
    border-radius: 10px;
    cursor: col-resize;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before {
    z-index: 2;
    width: 50%;
    overflow: hidden;
    border-right: 3px solid var(--gold);
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.ba-before img {
    width: 200%;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: col-resize;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.ba-arrow-left,
.ba-arrow-right {
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.ba-label {
    position: absolute;
    top: 20px;
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.ba-before .ba-label {
    left: 20px;
}

.ba-after .ba-label {
    right: 20px;
}

.ba-description {
    text-align: center;
    margin-top: 1rem;
    color: var(--gold);
    font-style: italic;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: #1a1a1a;
    color: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gold);
}

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

.trust-badge {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.trust-badge:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
}

.badge-icon.qbcc {
    font-size: 1.2rem;
}

.badge-icon.insurance {
    font-size: 3rem;
}

.badge-icon.warranty {
    font-size: 1.5rem;
}

.badge-icon.local {
    font-size: 2.5rem;
}

.trust-badge h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.trust-badge p {
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.trust-badge small {
    color: #ccc;
    font-size: 0.85rem;
}

.payment-methods {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-methods p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    color: var(--gold);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gold);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    opacity: 1;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px var(--gold));
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 1rem;
    font-style: italic;
}

.client {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.review-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating-score {
    font-size: 4rem;
    font-weight: bold;
    color: var(--gold);
}

.rating-details .stars {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-details p {
    color: #ccc;
}

.review-sources {
    display: flex;
    gap: 2rem;
}

.review-sources .source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-sources img {
    width: 30px;
    height: 30px;
}

.review-sources span {
    color: #ccc;
    font-size: 0.9rem;
}

.review-source {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
}

.review-cta {
    text-align: center;
    margin-top: 2rem;
}

.review-cta p {
    color: #ccc;
}

.review-cta a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}

.review-cta a:hover {
    text-decoration: underline;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.test-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.test-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: #000;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.process-section .intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gold);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.process-step h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #ccc;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

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

/* Service Areas Section */
.service-areas-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.service-areas-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-areas-section .intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.area-card.primary {
    border: 2px solid var(--gold);
}

.area-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.radius-info {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.suburbs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suburbs-list span {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--gold);
}

.regions-list .region {
    margin-bottom: 1.5rem;
}

.regions-list h4 {
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.regions-list p {
    color: var(--text-light);
}

.service-areas-section .cta-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-links {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.trust-links .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    background: var(--gold);
    color: #000000;
    border: 2px solid var(--gold);
}

.trust-links .btn-secondary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* CTA Section */
.cta-section {
    background: #000000;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--gold);
}

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

.footer-column h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-column h4 {
    font-size: 0.9rem;
    color: #ecf0f1;
    margin: 0.5rem 0;
    font-weight: normal;
    font-style: italic;
}

.footer-column .extended-areas {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #95a5a6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #95a5a6;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide custom cursor on mobile */
    .cursor,
    .cursor-trail {
        display: none !important;
    }
    
    body {
        cursor: auto;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 5px;
        transition: background 0.3s;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 215, 0, 0.1);
    }
    
    .nav-menu .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Logo adjustment */
    .logo img {
        height: 80px;
    }
    
    /* Hero adjustments */
    .hero {
        padding: 3rem 0;
        background-size: 250px auto;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    /* Gallery slideshow */
    .slideshow {
        height: 300px;
    }
    
    .slideshow-controls button {
        font-size: 1.5rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Before/After slider */
    .ba-container {
        height: 300px;
    }
    
    /* Testimonials */
    .testimonial p {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Sections padding */
    .services,
    .why-choose,
    .gallery-showcase,
    .before-after,
    .testimonials,
    .cta-section {
        padding: 3rem 0;
    }
    
    /* Headings */
    h2 {
        font-size: 2rem !important;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Process section mobile */
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-steps::before {
        left: 50%;
        right: auto;
        width: 2px;
        height: 80%;
        top: 10%;
    }
    
    /* FAQ mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Trust badges mobile */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 1.5rem 0.5rem;
    }
    
    .badge-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Review stats mobile */
    .review-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .rating-summary {
        text-align: center;
    }
    
    .review-sources {
        flex-direction: column;
        align-items: center;
    }
    
    /* Service areas detail mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .search-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
    
    /* About page mobile */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service pages mobile */
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .design-factors {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .services-main .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Instant Quote Modal */
.instant-quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
    padding: 2rem;
}

.instant-quote-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.instant-quote-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.instant-quote-header {
    background: var(--gold);
    padding: 2rem;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.instant-quote-header h2 {
    color: #000;
    margin-bottom: 0.5rem;
}

.instant-quote-header p {
    color: #333;
    font-size: 1.1rem;
}

.close-instant-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-instant-quote:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.instant-quote-body {
    padding: 2rem;
}

.quote-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quote-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: none;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-option:hover {
    border-color: var(--gold);
    background: #fffaf0;
}

.quote-option.selected {
    border-color: var(--gold);
    background: #fffaf0;
}

.quote-option-info h4 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
}

.quote-option-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.quote-option-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold);
}

.size-selector {
    margin-bottom: 2rem;
}

.size-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.size-btn {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: none;
    transition: all 0.3s;
    text-align: center;
}

.size-btn:hover {
    border-color: var(--gold);
}

.size-btn.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.size-btn span {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.instant-quote-result {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    display: none;
}

.instant-quote-result.show {
    display: block;
}

.instant-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
}

.instant-quote-form {
    display: none;
}

.instant-quote-form.show {
    display: block;
}

.instant-quote-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instant-quote-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.instant-quote-trigger.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        background-size: 200px auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .typewriter {
        font-size: 0.9rem;
    }
}

/* Page Hero Section */
.page-hero {
    background: #000;
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* FAQ Page Styles */
.faq-page-content {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-categories {
    display: grid;
    gap: 3rem;
}

.faq-category h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-cta h2 {
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Process Page Styles */
.process-detail-section {
    padding: 4rem 0;
}

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

.process-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-timeline {
    margin-bottom: 4rem;
}

.process-detail-step {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--gold);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-header h3 {
    flex: 1;
}

.step-duration {
    color: var(--gold);
    font-weight: 500;
}

.step-content ul {
    list-style: none;
    padding-left: 0;
}

.step-content li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.step-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.process-timeline-visual {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.timeline-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.timeline-item .day {
    display: block;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.process-features {
    margin-bottom: 3rem;
}

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

.process-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.process-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-cta {
    text-align: center;
    background: #000;
    color: white;
    padding: 3rem;
    border-radius: 10px;
}

.process-cta h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Service Areas Detail Page */
.service-areas-detail {
    padding: 4rem 0;
}

.areas-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.area-benefits {
    margin: 4rem 0;
}

.area-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.benefit {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.suburbs-search {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.suburbs-search h3 {
    margin-bottom: 1rem;
}

.search-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.service-map-info {
    margin-top: 3rem;
}

.service-map-info h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gold);
    font-weight: bold;
}

/* Footer Social Proof Badges */
.social-proof-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.7rem;
}

.review-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.review-badge img {
    width: 14px;
    height: 14px;
}

.review-badge span {
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Quote Form Styling */
.quote-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* File Upload Styling */
.file-label {
    display: block;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-label:hover {
    border-color: var(--gold);
    background: #fffaf0;
}

.file-label input[type="file"] {
    display: none;
}

.file-text {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.photo-preview {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.photo-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #ddd;
}

/* Checkbox Styling */
.checkbox-group {
    text-align: left;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* Form Message */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Info Section */
.contact-info-section {
    position: sticky;
    top: 100px;
}

.contact-info-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-method {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method p {
    margin-bottom: 0.25rem;
    color: #666;
}

.contact-method a {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.phone-link {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

.response-time {
    background: #fffaf0;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    margin-bottom: 1.5rem;
}

.why-choose-box {
    background: #000;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.why-choose-box h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.why-choose-box ul {
    list-style: none;
    padding: 0;
}

.why-choose-box li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
    }
}

/* Services Main Page */
.services-main {
    padding: 4rem 0;
}

.services-main .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.services-main .service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-main .service-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-main .service-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    flex-grow: 1;
}

.services-main .service-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.services-main .service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.services-main .service-card .btn-primary {
    margin-top: auto;
    padding-top: 1.5rem;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Standards Page Styles */
.standards-content {
    padding: 4rem 0;
}

.standards-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.standards-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.standards-list {
    margin-bottom: 4rem;
}

.standard-item {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.standard-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.standard-item ul {
    list-style: none;
    padding-left: 1.5rem;
}

.standard-item li {
    position: relative;
    margin-bottom: 0.5rem;
}

.standard-item li:before {
    content: "✓";
    position: absolute;
    left: -1.5rem;
    color: var(--gold);
    font-weight: bold;
}

.technical-requirements {
    margin-bottom: 4rem;
}

.requirement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.requirement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.quality-process {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.quality-process ol {
    padding-left: 1.5rem;
}

.quality-process li {
    margin-bottom: 1rem;
}

.workmanship-guarantee {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.workmanship-guarantee h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.guarantee-features {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.guarantee-features h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.guarantee-features ul {
    list-style: none;
}

.guarantee-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
}

.guarantee-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.standards-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.about-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.credentials-section,
.team-section,
.community-section {
    margin: 3rem 0;
}

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

.credential {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.credential h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.about-cta {
    text-align: center;
    background: #000;
    color: white;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.about-cta h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Service Detail Pages */
.service-detail {
    padding: 4rem 0;
}

.service-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.option-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--gold);
}

.option-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.option-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.option-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.price-range {
    font-weight: bold;
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.service-process,
.service-benefits,
.service-specs,
.service-extras,
.service-maintenance {
    margin: 3rem 0;
}

.process-list {
    list-style: none;
    counter-reset: process;
    padding: 0;
}

.process-list li {
    counter-increment: process;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.process-list li:before {
    content: counter(process);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gold);
    color: #000;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
}

.benefit-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.service-cta {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.service-cta h2 {
    margin-bottom: 1rem;
}

.cta-info {
    margin: 2rem 0;
}

.cta-info p {
    margin-bottom: 0.5rem;
}

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

.application {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.application h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.design-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.design-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .nav-menu a,
    .btn-primary,
    .btn-secondary,
    button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .feature:hover::before {
        opacity: 0;
    }
    
    /* Improve slideshow controls for touch */
    .slideshow-controls button {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Disable custom cursor completely on touch devices */
    .cursor,
    .cursor-trail {
        display: none !important;
    }
}
/* Services Grid Responsive Updates */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .services .service-card {
        padding: 1.5rem;
    }
    
    .services .service-card h3 {
        font-size: 1.1rem;
    }
    
    .services .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Legal Pages Styling */
.legal-content {
    padding: 4rem 0;
    background: var(--light-bg);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legal-text h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-text h3 {
    color: var(--dark-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: #333;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.contact-info-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--gold);
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-text {
        padding: 2rem 1.5rem;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
    }
}
