/* ============================================
   MODERN DESIGN SYSTEM - KRISTS WEBSITE
   ============================================ */

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   CSS RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   DESIGN TOKENS - INDUSTRIAL CONSTRUCTION
   ============================================ */
:root {
    /* Colors - Industrial Palette */
    --color-primary: #1f2937;
    /* Industrial dark gray */
    --color-primary-hover: #111827;
    /* Darker gray */
    --color-secondary: #f97316;
    /* Safety orange */
    --color-secondary-hover: #ea580c;
    /* Darker orange */
    --color-accent: #eab308;
    /* Construction yellow */
    --color-accent-hover: #ca8a04;
    /* Darker yellow */

    --color-background: #f1f5f9;
    /* Concrete light gray */
    --color-surface: #ffffff;
    --color-surface-elevated: #e2e8f0;

    --color-text-primary: #111827;
    /* Charcoal */
    --color-text-secondary: #374151;
    /* Medium gray */
    --color-text-tertiary: #6b7280;
    /* Light gray */
    --color-border: #cbd5e1;
    /* Industrial border */
    --color-border-light: #e2e8f0;

    /* Typography - Industrial Strength */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 600;
    /* Stronger than default 500 */
    --font-weight-semibold: 700;
    /* Stronger than default 600 */
    --font-weight-bold: 800;
    /* Heavier for headings */
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 2rem;
    /* 32px */
    --font-size-4xl: 2.5rem;
    /* 40px */
    --font-size-5xl: 3rem;
    /* 48px */

    /* Spacing */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */

    /* Layout */
    --max-width: 1120px;
    --border-radius: 0.75rem;
    /* 12px - Reduced for sharper look */
    --border-radius-lg: 1rem;
    /* 16px */
    --border-radius-sm: 0.375rem;
    /* 6px */

    /* Shadows - Premium Industrial */
    --shadow-sm: 0 1px 2px 0 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Textures */
    --texture-overlay: url('../assets/concrete-texture.png');
    /* Will fallback to CSS gradient */

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
}

nav.scrolled {
    box-shadow: var(--shadow-sm);
}

nav .nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    justify-content: center;
    justify-content: space-between;
    /* Changed from center */
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    /* Industrial feel */
}

nav ul {
    list-style: none;
    display: flex;
    gap: var(--space-6);
    /* Reduced gap */
    align-items: center;
    /* Center align with button */
}

/* Remove any accidental arrow separators */
nav ul li::before,
nav ul li::after {
    content: none !important;
}

nav ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    letter-spacing: 0.01em;
    transition: color var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
    /* Adjusted padding */
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--color-primary);
    /* Changed hover/active color */
    font-weight: 700;
    /* High contrast active */
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    /* Adjusted position */
    left: 0;
    width: 100%;
    /* Changed from right:0 */
    height: 3px;
    /* Thickened */
    background: var(--color-accent);
    /* Changed color */
    border-radius: 2px;
}

/* Call Now CTA in Nav */
.nav-cta {
    background: var(--color-primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700 !important;
    font-size: 0.9rem;
    margin-left: 1rem;
    border: 1px solid var(--color-primary);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

section {
    padding: var(--space-20) 0;
    position: relative;
    width: 100%;
    isolation: isolate;
    /* Create strict stacking context */
    z-index: 1;
}

/* Layering fix for patterned sections */
.section-with-pattern {
    position: relative;
    z-index: 0;
    background: transparent !important;
    /* Move bg to pseudo */
}

.section-with-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind content */
}

/* Apply specific textures to pseudo-elements */
.section-with-pattern.texture-concrete::before {
    background-color: #f1f5f9;
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        radial-gradient(at 50% 50%, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 10px 10px, 20px 20px;
}

.section-with-pattern.texture-blueprint::before {
    background-color: #1e293b;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 2;
    /* Content above pattern */
}

/* Standardized Separator */
/* Standardized Separator */
/* Standardized Separator */
/* Separator Removed */
.separator-center {
    display: none;
}

/* Full Bleed Image Container */
.full-bleed-image-container {
    position: relative;
    width: 100%;
    margin-bottom: var(--space-12);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.full-bleed-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.full-bleed-image-container:hover img {
    transform: scale(1.02);
}

.full-bleed-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--space-6);
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   HERO SECTION - PREMIUM UPGRADE
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-20) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-primary);
    /* Fallback */
}

/* Full Width Parallax Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* For parallax */
    background: linear-gradient(rgba(15, 23, 42, 0.72), rgba(31, 41, 55, 0.82)),
        url('../assets/project-roof-workers.jpg') center/cover no-repeat;
    z-index: 0;
    transform: translateY(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.2), transparent 70%),
        linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
    align-items: center;
}

.hero-text {
    max-width: 700px;
}

.hero-text h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: block;
    text-align: left;
}

/* Remove stray underline from H1 */
/* H1 Accent: Bottom Left, Deterministic */
/* H1 Accent Removed */
.hero-text h1::after {
    content: none;
}

.hero-text h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    margin-bottom: 24px;
    line-height: 1.5;
    border: none;
    padding: 0;
    text-align: left;
    display: block;
}

/* Subheadline Accent REMOVED */
.hero-text h2::after {
    content: none;
}

.hero-text p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
    text-align: left;
}

/* Hero Bullets */
.hero-text ul li {
    color: rgba(255, 255, 255, 0.9);
    padding-left: var(--space-8);
    margin-bottom: var(--space-3);
    font-weight: 500;
    position: relative;
    list-style: none;
    text-align: left;
}

.hero-text ul li::before {
    content: "✓";
    color: var(--color-secondary);
    font-weight: 800;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.25rem;
    line-height: inherit;
    width: 24px;
    /* Fixed width for icon alignment */
    text-align: center;
}

/* Trust Strip */
.trust-strip {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-6) 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.trust-item::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: 700;
    font-size: var(--font-size-lg);
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    /* 12px */
    padding: var(--space-6);
    /* Internal spacing 24px-26px */
    transition: all var(--transition-base);
    height: 100%;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    /* Strict layering above pattern */
    background-color: var(--color-surface);
    /* Ensure solid background */
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: var(--color-border);
    /* Kept subtle, handled by before element */
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-4);
}

.numbered-card {
    counter-increment: card-counter;
    position: relative;
}

.numbered-card::before {
    content: counter(card-counter);
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 40px;
    height: 40px;
    background: var(--color-surface-elevated);
    border: 3px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--color-secondary);
    font-size: var(--font-size-lg);
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */
/* Buttons */
.cta-button {
    display: inline-flex;
    /* Changed from inline-block */
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background-color: var(--color-accent);
    /* Changed from var(--color-secondary) */
    color: white;
    padding: var(--space-4) var(--space-8);
    /* Changed padding */
    border-radius: var(--border-radius-sm);
    /* Changed border-radius */
    text-decoration: none;
    font-weight: 700;
    /* Changed font-weight */
    font-size: var(--font-size-sm);
    /* Changed font-size */
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    /* Changed transition */
    box-shadow: var(--shadow-md);
    /* Changed box-shadow */
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cta-button::after {
    content: "→";
    font-weight: 800;
    transition: transform var(--transition-fast);
    display: inline-block;
    /* Added display */
    margin-left: 0;
    /* Removed margin-left */
}

.cta-button:hover {
    background-color: var(--color-accent-hover);
    /* Changed background-color */
    transform: translateY(-1px);
    /* Changed transform */
    box-shadow: var(--shadow-md);
    /* Changed box-shadow */
}

.cta-button:hover::after {
    transform: translateX(4px);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-secondary);
}

.cta-button-secondary:hover {
    background: var(--color-surface-elevated);
    border-color: var(--color-secondary-hover);
}

/* ============================================
   TYPOGRAPHY
   ============================================*/
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    /* Moved margin-bottom here */
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
    /* Kept from original */
}

h1 {
    font-size: 2.5rem;
    /* Specific size */
    line-height: 1.15;
    /* Specific line-height */
}

h2 {
    font-size: 2rem;
    /* Specific size */
    line-height: 1.2;
    /* Specific line-height */
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

p {
    margin-bottom: var(--space-4);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* Lists */
ul {
    list-style: none;
}

ul li {
    padding-left: var(--space-6);
    position: relative;
    margin-bottom: var(--space-3);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    margin-bottom: var(--space-3);
    background: var(--color-surface-elevated);
    border-radius: var(--border-radius-sm);
}

.contact-item strong {
    color: var(--color-text-primary);
    font-weight: 600;
    min-width: 100px;
}

.contact-item a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--color-secondary-hover);
    text-decoration: underline;
}

/* ============================================
   CALENDAR EMBED
   ============================================ */
.calendar-section {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--space-10);
    margin: var(--space-8) 0;
}

.calendar-placeholder {
    background: var(--color-surface-elevated);
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-16);
    padding: var(--space-16);
    text-align: center;
}

/* Google Calendar Embed */
.calendar-embed {
    width: 100%;
    height: 680px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin: var(--space-8) 0;
    position: relative;
    z-index: 10;
    background: white;
}

@media (max-width: 640px) {
    .calendar-embed {
        height: 720px;
    }
}

/* End of Calendar Styles */

.calendar-section iframe {
    width: 100%;
    max-width: 900px;
    height: 600px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    margin: 0 auto;
    display: block;
}

/* ============================================
   FOOTER CTA
   ============================================ */
.footer-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: var(--space-16) 0;
    text-align: center;
    margin-top: var(--space-20);
    border-top: 4px solid var(--color-accent);
}

.footer-cta h3 {
    color: white;
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-6);
    font-weight: 800;
}

.footer-cta .cta-button {
    background: var(--color-accent);
    color: var(--color-primary);
}

.footer-cta .cta-button:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER - INDUSTRIAL DARK THEME
   ============================================ */
footer {
    background: linear-gradient(180deg, #0f172a 0%, #1f2937 100%);
    color: white;
    padding: var(--space-16) 0 var(--space-10);
    border-top: 6px solid var(--color-secondary);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent) 50%, transparent);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

footer .footer-content {
    text-align: center;
    max-width: 600px;
}

footer .footer-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

footer .footer-tagline {
    color: var(--color-border);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-6);
}

footer .footer-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

footer .footer-icon {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-border);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

footer .footer-icon::before {
    content: '⚙';
    font-size: var(--font-size-xl);
    color: var(--color-secondary);
}

footer .footer-divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: var(--space-6) 0;
}

footer .footer-bottom {
    text-align: center;
}

footer .footer-bottom p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        grid-template-columns: 3fr 2fr;
        gap: var(--space-16);
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    nav ul {
        gap: var(--space-10);
    }

    nav ul li a {
        font-size: var(--font-size-base);
    }
}

/* Mobile Adjustments (max 640px) */
@media (max-width: 640px) {
    :root {
        --font-size-5xl: 2.25rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
        --space-20: 3rem;
        --space-16: 2.5rem;
    }

    .hero {
        padding: var(--space-12) 0;
    }

    .hero-text h1 {
        font-size: var(--font-size-4xl);
    }

    .hero-text h2 {
        font-size: var(--font-size-xl);
    }

    nav ul {
        gap: var(--space-4);
        flex-wrap: wrap;
    }

    nav ul li a {
        font-size: var(--font-size-sm);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-text h2 {
        border-left: none;
        border-bottom: 4px solid var(--color-accent);
        padding-left: 0;
        padding-bottom: var(--space-4);
        display: inline-block;
    }

    .hero-text ul {
        text-align: left;
        display: inline-block;
        list-style: none;
        padding-left: 0;
    }

    /* Fix double checkmark */
    .hero-text ul li {
        list-style: none;
        padding-left: 0;
    }

    .hero-text ul li::before {
        content: none !important;
    }

    .container {
        padding: 0 var(--space-4);
    }

    .card {
        padding: var(--space-6);
    }

    .trust-items {
        gap: var(--space-6);
    }
}

/* Counter reset for numbered cards */
.numbered-list {
    counter-reset: card-counter;
}

/* ============================================
   PHONE-FIRST CTA COMPONENTS
   ============================================ */

/* Primary phone CTA button override */
.cta-button.cta-phone {
    background: var(--color-secondary);
    color: #fff;
    font-weight: 700;
    font-size: var(--font-size-base);
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.cta-button.cta-phone:hover {
    background: #ea6a0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

/* Secondary / ghost button */
.cta-button.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.cta-button.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero CTA group */
.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.hero-helper-text {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
    max-width: 520px;
}

/* ============================================
   PHONE NUMBER DISPLAY BLOCK
   ============================================ */
.phone-cta-block {
    background: var(--color-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.phone-cta-block h2 {
    color: white;
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-4);
}

.phone-number-display {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -0.02em;
    text-decoration: none;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    transition: color var(--transition-fast);
}

.phone-number-display:hover {
    color: var(--color-accent);
}

.phone-cta-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* ============================================
   CALLBACK FORM
   ============================================ */
.callback-form-wrapper h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2);
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    color: var(--color-text-primary);
    background: white;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-helper {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
    margin: 0;
    margin-top: -var(--space-2);
}

/* ============================================
   CONTACT PAGE GRID
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-details-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-details-card h3 {
    margin-bottom: var(--space-4);
    font-size: var(--font-size-lg);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--font-size-sm);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-tertiary);
}

.contact-item a {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER CONTACT DETAILS
   ============================================ */
.footer-contact-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.footer-contact-details p {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* ============================================
   STICKY MOBILE CALL BUTTON
   ============================================ */
.sticky-call-btn {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.5);
    z-index: 999;
    white-space: nowrap;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.sticky-call-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.6);
}

@media (max-width: 768px) {
    .sticky-call-btn {
        display: block;
    }

    /* Add padding to footer so sticky button doesn't overlap */
    footer {
        padding-bottom: 5rem;
    }

    /* Contact grid to single column */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .booking-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-cta-group .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   PROJECT PHOTO GALLERY
   ============================================ */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    background: var(--color-primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.6rem 1rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
    color: white;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ============================================
   REAL IMAGE ENHANCEMENTS
   ============================================ */

/* Ensure all project images have consistent treatment */
.full-bleed-image-container img {
    filter: brightness(0.95) contrast(1.02);
}

@media (max-width: 640px) {
    .project-gallery {
        grid-template-columns: 1fr;
    }
}