/* ==========================================================================
   Gold Coast Concreters QLD - Premium CSS Stylesheet
   ========================================================================== */

/* CSS Variables for design consistency (Harmonious Slate & Gold theme) */
:root {
    --primary: #0f172a;       /* Deep slate/navy for text & dark backgrounds */
    --secondary: #1e293b;     /* Slightly lighter slate for footers/headers */
    --accent: #d97706;        /* Dark gold/amber for core highlights and CTA button backgrounds */
    --accent-hover: #b45309;  /* Rich amber hover */
    --light-bg: #f8fafc;      /* Crisp off-white for alternative sections */
    --text-main: #334155;     /* Slate grey for readable body text */
    --text-light: #64748b;    /* Light slate grey for secondary text */
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --font-sans: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Typography Utility */
h1, h2, h3, h4 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

/* Header & Navigation */
.main-header {
    background-color: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.phone-btn {
    background-color: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.2);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.88) 100%), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 7rem 0 6rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-text-area h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.sub-badge {
    display: inline-block;
    background-color: rgba(217, 119, 6, 0.2);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.lead-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.feature-item {
    font-weight: 600;
    font-size: 0.95rem;
    color: #cbd5e1;
    background-color: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Lead Capture Form Styling */
.hero-form-area {
    background-color: var(--white);
    color: var(--primary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-form-area h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-form-area p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--primary);
    background-color: var(--light-bg);
    outline: none;
    transition: var(--transition-smooth);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
}

.submit-btn {
    background-color: var(--accent);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
    transition: var(--transition-smooth);
}

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

/* Common Section Layout */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title .accent-text {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--accent);
    margin: 1rem auto 0 auto;
    border-radius: 10px;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.services-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

/* Image Placeholders with beautiful gradients */
.card-image-placeholder {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.driveway-img {
    background-image: url('assets/concrete_pouring_work.png');
    background-size: cover;
    background-position: center;
}

.aggregate-img {
    background-image: url('assets/exposed_aggregate_driveway.png');
    background-size: cover;
    background-position: center;
}

.resurfacing-img {
    background-image: url('assets/concrete_resurfacing_covercrete.png');
    background-size: cover;
    background-position: center;
}

.slabs-img {
    background-image: url('assets/concrete_patios_paths.png');
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
    display: inline-block;
}

.card-link:hover {
    color: var(--accent-hover);
    padding-left: 5px;
}

/* Specifications Section */
.specifications-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.specifications-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.spec-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent);
}

.spec-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

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

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

.process-timeline {
    width: 90%;
    max-width: 900px;
    margin: 4rem auto 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.process-step {
    position: relative;
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    z-index: 2;
    transition: var(--transition-smooth);
}

.process-step:hover .step-num {
    background-color: var(--accent);
    transform: scale(1.05);
}

.step-content {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Crossover Callout Banner */
.crossover-banner {
    background-color: #f1f5f9;
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.crossover-content {
    width: 90%;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.crossover-content h2 {
    font-size: 2rem;
    margin: 0.5rem 0 1rem 0;
}

.crossover-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Service Areas Section */
.areas-section {
    padding: 6rem 0;
    background-color: var(--white);
    text-align: center;
}

.areas-intro {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.areas-list {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.area-tag {
    background-color: var(--light-bg);
    border: 1.5px solid var(--border-color);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

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

.faq-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    border-top: 4px solid var(--accent);
}

.cta-banner h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.phone-btn-large {
    background-color: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.phone-btn-large:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

.form-btn-secondary {
    background-color: rgba(255,255,255,0.08);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1.5px solid rgba(255,255,255,0.2);
}

.form-btn-secondary:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* Footer Section */
.main-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h3,
.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-info p {
    line-height: 1.7;
}

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

.footer-links a {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

.footer-contact p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .why-us-badge-area {
        order: -1; /* Place badge area above on mobile */
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0.75rem 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-text-area h1 {
        font-size: 2.25rem;
    }
    
    .hero-form-area {
        padding: 1.75rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 1.85rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        gap: 1.5rem;
    }
    
    .step-num {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-width: 2px;
    }
    
    .step-content {
        padding: 1.5rem;
    }
}
