/* ============================================
   REFINED PREMIUM DESIGN - Ironside Epoxy
   Tighter spacing, better hierarchy, premium feel
   ============================================ */

:root {
    /* Premium Color Palette */
    --navy-deep: #0E1A2B;
    --navy-medium: #1C2A40;
    --accent-blue: #2D72F3;
    --accent-blue-light: #4A8FFF;
    --white: #FFFFFF;
    --soft-gray: #F8F9FA;
    --gray-light: #E8EAED;
    --gray-medium: #6B7280;
    --gray-dark: #1F2937;
    
    /* Enhanced Shadows - More Pronounced */
    --shadow-sm: 0 2px 12px rgba(14, 26, 43, 0.1);
    --shadow-md: 0 4px 20px rgba(14, 26, 43, 0.15);
    --shadow-lg: 0 8px 32px rgba(14, 26, 43, 0.2);
    --shadow-xl: 0 12px 48px rgba(14, 26, 43, 0.25);
    --glow-blue: 0 0 20px rgba(45, 114, 243, 0.3);
    
    /* Card Backgrounds */
    --card-bg: #FFFFFF;
    --card-border: rgba(14, 26, 43, 0.12);
    
    /* Spacing Scale - Tighter */
    --section-padding: 80px; /* Desktop - reduced from 120px */
    --section-padding-tablet: 60px;
    --section-padding-mobile: 40px;
    --card-gap: 24px;
    --heading-spacing: 10px;
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--gray-dark);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   HEADER - Refined & Compact
   ============================================ */
.header-refined {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.2s ease;
    height: 70px; /* Reduced from 80px */
}

.header-refined .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 48px; /* Reduced */
    width: auto;
    object-fit: contain;
    max-width: 180px;
    transition: opacity 0.3s ease;
    filter: brightness(1);
}

.nav-refined {
    display: flex;
    gap: 2rem; /* Tighter */
    align-items: center;
}

.nav-link-refined {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    padding: 0.4rem 0;
    position: relative;
}

.nav-link-refined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-light));
    transition: width 0.2s ease;
}

.nav-link-refined:hover,
.nav-link-refined.active {
    color: var(--navy-deep);
}

.nav-link-refined:hover::after,
.nav-link-refined.active::after {
    width: 100%;
}

.btn-call-refined {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem; /* Tighter */
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

.btn-call-refined:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO SECTION - Refined with Background
   ============================================ */
.hero-refined {
    position: relative;
    min-height: 85vh; /* Reduced from 95vh */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 50%, #253A5F 100%),
        url('data:image/svg+xml,<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="garage" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 50h100M50 0v100" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="400" height="400" fill="url(%23garage)"/></svg>');
    background-size: cover, 200px 200px;
    background-position: center;
    opacity: 0.9;
    animation: heroBackgroundShift 20s ease-in-out infinite;
}

@keyframes heroBackgroundShift {
    0%, 100% {
        background-position: center, 0 0;
    }
    50% {
        background-position: center, 200px 200px;
    }
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(14, 26, 43, 0.7) 0%, rgba(14, 26, 43, 0.85) 100%);
    animation: overlayPulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

/* Animated Shapes */
.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 114, 243, 0.15) 0%, rgba(45, 114, 243, 0.05) 50%, transparent 100%);
    filter: blur(40px);
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.hero-shape-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 30%;
    animation-delay: -7s;
    animation-duration: 28s;
}

.hero-shape-5 {
    width: 220px;
    height: 220px;
    bottom: 40%;
    right: 10%;
    animation-delay: -12s;
    animation-duration: 26s;
}

.hero-shape-6 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 5%;
    animation-delay: -15s;
    animation-duration: 24s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.55;
    }
}

/* Shine Effect */
.hero-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    animation: shineSweep 10s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes shineSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.hero-content-refined {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-badges-refined {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem; /* Tighter */
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-badge-item .stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.hero-title-refined {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 3.5rem; /* Reduced from 4.5rem */
    font-weight: 900;
    margin-bottom: 1rem; /* Tighter */
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-subtitle-refined {
    font-size: 1.2rem; /* Reduced */
    margin-bottom: 2rem; /* Tighter */
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-ctas-refined {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS - Refined Premium Style
   ============================================ */
.btn-primary-refined {
    background: var(--white);
    color: var(--navy-deep);
    padding: 1rem 2rem; /* Balanced */
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.btn-primary-refined:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--soft-gray);
}

.btn-secondary-refined {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-refined:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ============================================
   FEATURES SECTION - Compact 4-Card Grid
   ============================================ */
.features-refined {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    position: relative;
}

.features-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 114, 243, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 114, 243, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-refined {
    text-align: center;
    margin-bottom: 3rem; /* Reduced from 4rem */
    position: relative;
    z-index: 1;
}

.section-label-refined {
    display: inline-block;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--heading-spacing);
}

.section-title-refined {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 2.75rem; /* Reduced from 3.25rem */
    font-weight: 900;
    margin-bottom: 0.75rem; /* Tighter */
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(14, 26, 43, 0.05);
}

.section-description-refined {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.features-grid-refined {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap);
    margin-top: 0; /* Removed extra margin */
    position: relative;
    z-index: 1;
}

.feature-card-refined {
    background: var(--card-bg);
    padding: 2rem 1.75rem; /* Tighter padding */
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.feature-card-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-refined:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(45, 114, 243, 0.3);
    background: #FFFFFF;
}

.feature-card-refined:hover::before {
    opacity: 1;
}

.feature-icon-refined {
    width: 56px; /* Smaller */
    height: 56px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem; /* Tighter */
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}

.feature-card-refined:hover .feature-icon-refined {
    transform: scale(1.05);
}

.feature-card-refined h3 {
    font-size: 1.4rem; /* Reduced */
    margin-bottom: 0.75rem; /* Tighter */
    color: var(--navy-deep);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.feature-card-refined p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.95rem; /* Smaller */
    font-weight: 400;
}

/* ============================================
   QUALITY SECTION - Balanced Layout
   ============================================ */
.quality-refined {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.quality-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 114, 243, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(45, 114, 243, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.quality-grid-refined {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* Reduced from 5rem */
    align-items: center;
    position: relative;
    z-index: 1;
}

.quality-content-refined {
    padding: 0;
}

.quality-description-refined {
    font-size: 1.1rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 2rem; /* Tighter */
    font-weight: 400;
}

.quality-features-refined {
    margin-bottom: 2rem; /* Tighter */
}

.quality-item-refined {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem; /* Tighter */
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(248, 249, 250, 0.6);
    transition: all 0.2s ease;
}

.quality-item-refined:hover {
    background: rgba(248, 249, 250, 0.9);
    transform: translateX(4px);
}

.quality-check-refined {
    width: 36px; /* Slightly larger */
    height: 36px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.quality-item-refined h4 {
    font-size: 1.25rem; /* Reduced */
    margin-bottom: 0.4rem; /* Tighter */
    color: var(--navy-deep);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.quality-item-refined p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.quality-visual-refined {
    position: relative;
}

.quality-image-container-refined {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.quality-image-refined {
    width: 100%;
    height: 420px; /* Reduced from 500px */
    border-radius: 20px;
}

/* ============================================
   PROJECTS SECTION - Premium Portfolio
   ============================================ */
.projects-refined {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    position: relative;
}

.projects-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(45, 114, 243, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(45, 114, 243, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.projects-grid-refined {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.project-card-refined {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--card-border);
    position: relative;
}

.project-card-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.project-card-refined:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(45, 114, 243, 0.3);
}

.project-card-refined:hover::before {
    opacity: 1;
}

.project-image-wrapper-refined {
    position: relative;
    overflow: hidden;
    height: 260px; /* Reduced */
}

.project-image-refined {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.project-card-refined:hover .project-image-refined {
    transform: scale(1.05);
}

.project-overlay-refined {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 26, 43, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.project-card-refined:hover .project-overlay-refined {
    opacity: 1;
}

.project-category-refined {
    display: inline-block;
    background: var(--white);
    color: var(--navy-deep);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.project-content-refined {
    padding: 1.75rem; /* Tighter */
    background: var(--white);
}

.project-content-refined h3 {
    font-size: 1.4rem; /* Reduced */
    margin-bottom: 0.5rem; /* Tighter */
    color: var(--navy-deep);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.project-content-refined p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.projects-cta-refined {
    text-align: center;
    margin-top: 2.5rem; /* Reduced */
}

/* ============================================
   TESTIMONIALS - Compact Premium
   ============================================ */
.testimonials-refined {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.testimonials-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(45, 114, 243, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid-refined {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.testimonial-card-refined {
    background: var(--card-bg);
    padding: 1.75rem; /* Tighter */
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
    border: 2px solid var(--card-border);
    position: relative;
}

.testimonial-card-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px 18px 0 0;
}

.testimonial-card-refined:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 114, 243, 0.25);
    background: #FFFFFF;
}

.testimonial-card-refined:hover::before {
    opacity: 1;
}

.testimonial-header-refined {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem; /* Tighter */
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-avatar {
    width: 40px; /* Smaller */
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border: 2px solid var(--white);
}

.testimonial-text-refined {
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 1.25rem; /* Tighter */
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
}

.testimonial-author-refined {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem; /* Tighter */
}

.testimonial-author-refined strong {
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-author-refined span {
    color: var(--gray-medium);
    font-size: 0.85rem;
}

.testimonial-tag-refined {
    display: inline-block;
    background: rgba(45, 114, 243, 0.1);
    color: var(--accent-blue);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-refined {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    position: relative;
    overflow: hidden;
}

.cta-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(45, 114, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(45, 114, 243, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-refined {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 750px;
    margin: 0 auto;
}

.cta-content-refined h2 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 2.75rem; /* Reduced */
    font-weight: 900;
    margin-bottom: 1rem; /* Tighter */
    letter-spacing: -0.02em;
}

.cta-content-refined p {
    font-size: 1.15rem; /* Reduced */
    margin-bottom: 2rem; /* Tighter */
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons-refined {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER - Refined
   ============================================ */
.footer-refined {
    background: linear-gradient(180deg, var(--navy-deep) 0%, #0A1520 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem; /* Tighter */
    position: relative;
}

.footer-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 114, 243, 0.5), transparent);
}

.footer-content-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem; /* Tighter */
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-brand-refined {
    max-width: 320px;
}

.footer-logo-refined {
    height: 60px; /* Reduced */
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem; /* Tighter */
    max-width: 180px;
    filter: brightness(0) invert(1); /* Make logo white for dark footer */
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-brand-refined:hover .footer-logo-refined {
    opacity: 1;
}

.footer-col-refined h4 {
    margin-bottom: 1.25rem; /* Tighter */
    font-size: 1.15rem; /* Reduced */
    font-weight: 700;
    color: var(--white);
}

.footer-col-refined p {
    margin-bottom: 1.25rem; /* Tighter */
    opacity: 0.85;
    line-height: 1.7;
    font-size: 0.95rem; /* Smaller */
}

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

.footer-col-refined ul li {
    margin-bottom: 0.6rem; /* Tighter */
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-col-refined ul li svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    opacity: 0.8;
}

.footer-col-refined ul li a,
.footer-col-refined ul li span {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.2s ease;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-col-refined ul li a:hover {
    opacity: 1;
    color: var(--accent-blue-light);
    transform: translateX(3px);
}

.social-links-refined {
    display: flex;
    gap: 0.75rem; /* Tighter */
    margin-top: 1.25rem;
}

.social-icon-refined {
    width: 40px; /* Smaller */
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-refined:hover {
    background: rgba(45, 114, 243, 0.2);
    border-color: rgba(45, 114, 243, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(45, 114, 243, 0.3);
}

.btn-footer-refined {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.btn-footer-refined:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom-refined {
    text-align: center;
    padding-top: 2rem; /* Tighter */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   FLOATING CALL BUTTON (Mobile)
   ============================================ */
.floating-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(45, 114, 243, 0.4);
    z-index: 999;
    transition: all 0.2s ease;
    text-decoration: none;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(45, 114, 243, 0.5);
}

.floating-call-btn {
    display: none; /* Hidden on desktop */
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
    opacity: 0;
}

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

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: all 0.2s ease;
    display: block;
}

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

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

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

.btn-call-refined .call-text {
    display: inline;
}

.btn-call-refined .call-number {
    display: inline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .quality-grid-refined {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quality-visual-refined {
        order: -1;
    }
    
    .features-grid-refined {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .projects-grid-refined {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid-refined {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-refined {
        min-height: 75vh;
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
        --card-gap: 20px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Mobile Header */
    .header-refined {
        height: 64px;
        box-shadow: 0 2px 8px rgba(14, 26, 43, 0.1);
    }
    
    .header-refined .container {
        padding: 0 16px;
        position: relative;
    }
    
    .logo-img {
        height: 42px;
        max-width: 160px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    .btn-call-refined {
        order: 3;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .btn-call-refined .call-text {
        display: none;
    }
    
    .btn-call-refined .call-number {
        display: none;
    }
    
    .btn-call-refined svg {
        width: 18px;
        height: 18px;
    }
    
    /* Mobile Navigation */
    .nav-refined {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(14, 26, 43, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
        z-index: 1000;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-refined.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link-refined {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--gray-light);
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .nav-link-refined::after {
        display: none;
    }
    
    .nav-link-refined.active {
        background: var(--soft-gray);
        color: var(--accent-blue);
        font-weight: 700;
    }

    /* Mobile Hero */
    .hero-refined {
        min-height: 70vh;
        padding: 50px 0;
    }
    
    .hero-content-refined {
        padding: 0 10px;
    }

    .hero-title-refined {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.875rem;
    }

    .hero-subtitle-refined {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }
    
    .trust-badges-refined {
        flex-direction: column;
        gap: 0.625rem;
        margin-bottom: 1.25rem;
    }
    
    .trust-badge-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-ctas-refined {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
    }
    
    .btn-primary-refined,
    .btn-secondary-refined {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 52px;
    }
    
    /* Mobile Sections */
    .section-header-refined {
        margin-bottom: 2rem;
        padding: 0 4px;
    }
    
    .section-label-refined {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .section-title-refined {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 0.625rem;
    }
    
    .section-description-refined {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .features-grid-refined,
    .projects-grid-refined,
    .testimonials-grid-refined {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .feature-card-refined {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-icon-refined {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-card-refined h3 {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }
    
    .feature-card-refined p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .quality-grid-refined {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .quality-description-refined {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .quality-item-refined {
        margin-bottom: 1.25rem;
    }
    
    .quality-check-refined {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .quality-item-refined h4 {
        font-size: 1.1rem;
    }
    
    .quality-item-refined p {
        font-size: 0.9rem;
    }
    
    .quality-image-refined {
        height: 300px;
    }
    
    .project-image-wrapper-refined {
        height: 220px;
    }
    
    .project-content-refined {
        padding: 1.25rem;
    }
    
    .project-content-refined h3 {
        font-size: 1.25rem;
    }
    
    .project-content-refined p {
        font-size: 0.9rem;
    }
    
    .testimonial-card-refined {
        padding: 1.5rem 1.25rem;
    }
    
    .testimonial-text-refined {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-author-refined strong {
        font-size: 0.9rem;
    }
    
    .testimonial-author-refined span {
        font-size: 0.8rem;
    }
    
    .cta-content-refined {
        padding: 0 10px;
    }
    
    .cta-content-refined h2 {
        font-size: 1.875rem;
        margin-bottom: 0.875rem;
    }
    
    .cta-content-refined p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .cta-buttons-refined {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
    }
    
    .cta-buttons-refined .btn-primary-refined,
    .cta-buttons-refined .btn-secondary-refined {
        width: 100%;
    }
    
    /* Mobile Footer */
    .footer-refined {
        padding: 3rem 0 1.25rem;
    }
    
    .footer-content-refined {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-refined {
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .footer-col-refined h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-col-refined p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-col-refined ul li {
        margin-bottom: 0.75rem;
        min-height: 44px;
    }
    
    .footer-col-refined ul li a,
    .footer-col-refined ul li span {
        font-size: 0.9rem;
    }
    
    .social-links-refined {
        gap: 0.625rem;
        margin-top: 1rem;
    }
    
    .social-icon-refined {
        width: 44px;
        height: 44px;
    }
    
    .btn-footer-refined {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        margin-top: 1rem;
        min-height: 48px;
    }
    
    .footer-bottom-refined {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Floating Call Button */
    .floating-call-btn {
        display: flex;
        width: 64px;
        height: 64px;
        bottom: 20px;
        right: 20px;
        box-shadow: 0 6px 20px rgba(45, 114, 243, 0.5);
    }
    
    .floating-call-btn:active {
        transform: scale(0.95);
    }
    
    .floating-call-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title-refined {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-refined {
        font-size: 0.95rem;
    }
    
    .section-title-refined {
        font-size: 1.625rem;
    }
    
    .section-description-refined {
        font-size: 0.95rem;
    }
    
    .btn-primary-refined,
    .btn-secondary-refined {
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
        min-height: 50px;
    }
    
    .feature-card-refined {
        padding: 1.25rem 1rem;
    }
    
    .project-image-wrapper-refined {
        height: 200px;
    }
    
    .quality-image-refined {
        height: 260px;
    }
    
    .trust-badge-item {
        font-size: 0.75rem;
        padding: 0.45rem 0.75rem;
    }
    
    .floating-call-btn {
        width: 60px;
        height: 60px;
        bottom: 16px;
        right: 16px;
    }
}

/* ============================================
   ADDITIONAL PAGE STYLES - Enhanced Cards
   ============================================ */

/* Service Feature Cards (What is Epoxy, Services pages) */
.service-feature-card,
.comparison-card {
    background: var(--card-bg);
    padding: 2rem 1.75rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.service-feature-card::before,
.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-feature-card:hover,
.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(45, 114, 243, 0.3);
    background: #FFFFFF;
}

.service-feature-card:hover::before,
.comparison-card:hover::before {
    opacity: 1;
}

.service-feature-card h3,
.comparison-card h3 {
    color: var(--navy-deep);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    font-size: 1.4rem;
}

.service-feature-card p,
.comparison-card p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Project Cards (Our Work page) */
.project-card {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--card-border);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(45, 114, 243, 0.3);
}

.project-card:hover::before {
    opacity: 1;
}

.project-content {
    padding: 1.75rem;
    background: var(--white);
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--navy-deep);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.project-content p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Contact Cards */
.contact-card {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--card-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 114, 243, 0.3);
    background: #FFFFFF;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card h3 {
    color: var(--navy-deep);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-weight: 400;
}

/* Service Detail Sections */
.service-detail-content {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--card-border);
    position: relative;
}

.service-detail-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border-radius: 18px 18px 0 0;
}

.service-detail-content h2 {
    color: var(--navy-deep);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-detail-content p {
    color: var(--gray-medium);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-feature-item {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(248, 249, 250, 0.6);
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.service-feature-item:hover {
    background: rgba(248, 249, 250, 0.9);
    transform: translateX(4px);
}

.service-feature-item h4 {
    color: var(--navy-deep);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.service-feature-item p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Service Detail Image */
.service-detail-image {
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

/* Benefit Items */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(248, 249, 250, 0.6);
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: rgba(248, 249, 250, 0.9);
    transform: translateX(4px);
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.benefit-item p {
    color: var(--gray-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Main Content Background */
.main-content {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    min-height: 60vh;
    padding: 2rem 0;
}

/* Content Sections Background */
.content-section {
    padding: 3rem 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 114, 243, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 114, 243, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Service Detail Section */
.service-detail-section {
    margin-bottom: 4rem;
    position: relative;
}

.service-detail-section::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
    background: 
        radial-gradient(circle at 30% 40%, rgba(45, 114, 243, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.service-detail-grid {
    position: relative;
    z-index: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(14, 26, 43, 0.05);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(14, 26, 43, 0.05);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Check Lists */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.7;
    font-weight: 400;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.check-list.large li {
    font-size: 1.1rem;
    padding: 1rem 0;
    padding-left: 2.5rem;
}

/* Process List */
.process-list {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--card-border);
}

/* Work Areas */
.work-areas {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--card-border);
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    margin-top: 4rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(45, 114, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(45, 114, 243, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Form Sections */
.form-section,
.careers-section {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--card-border);
    margin-bottom: 3rem;
    position: relative;
}

.form-section::before,
.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border-radius: 20px 20px 0 0;
}

/* Contact Cards Section */
.contact-cards-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.form-header,
.careers-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2,
.careers-header h2 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
}

.form-header p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-weight: 400;
}

/* Google Form Container */
.google-form-container {
    text-align: center;
    padding: 3rem 0;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 16px;
    border: 2px dashed var(--card-border);
    transition: all 0.3s ease;
}

.google-form-container:hover {
    background: rgba(248, 249, 250, 0.8);
    border-color: rgba(45, 114, 243, 0.3);
}

/* Projects Grid (Our Work page) */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Services Grid (What is Epoxy page) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Services Features Grid */
.services-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .feature-card-refined:hover,
    .project-card-refined:hover,
    .testimonial-card-refined:hover {
        transform: none;
    }
    
    /* Ensure all interactive elements are touch-friendly */
    a, button {
        -webkit-tap-highlight-color: rgba(45, 114, 243, 0.2);
    }
    
    /* Improve touch targets */
    .nav-link-refined,
    .btn-primary-refined,
    .btn-secondary-refined,
    .btn-call-refined {
        min-height: 44px;
        min-width: 44px;
    }
}

