/* Modern Design System - Reliable Waterproofing Services */

/* ============================================
   COLOR SYSTEM & VARIABLES
   ============================================ */
:root {
    /* Primary Colors */
    --primary-teal: #5A8A9F;
    --primary-dark: #4A7C94;
    --secondary-dark: #2c5f7c;
    
    /* Accent Colors */
    --accent-orange: #FF6B35;
    --accent-orange-dark: #E55A2B;
    --accent-light: #5ca3c4;
    
    /* Neutral Colors */
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-light: #f0f7fa;
    --bg-white: #ffffff;
    --border-light: #e0e6ea;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #5A8A9F 0%, #2c5f7c 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    --gradient-subtle: linear-gradient(180deg, #f0f7fa 0%, #ffffff 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.18);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ============================================
   REMOVED: URGENCY BANNER
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.parallax-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Animated Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Floating Service Badges */
.floating {
    animation: float 3s ease-in-out infinite;
}

.floating.delay-1 {
    animation-delay: 0.5s;
}

.floating.delay-2 {
    animation-delay: 1s;
}

.floating.delay-3 {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero CTA Buttons */
.btn-orange {
    background: var(--gradient-accent);
    color: white !important;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-ghost {
    background: transparent;
    color: white !important;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 13px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid white;
    margin: 10px auto 0;
    animation: bounce 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ============================================
   REMOVED: TRUST SIGNALS
   ============================================ */

/* ============================================
   MODERN SERVICE CARDS
   ============================================ */
.modern-services {
    position: relative;
    padding: 4rem 0;
    background: white;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.service-card {
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card.alt-bg {
    background: var(--gradient-subtle);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-orange);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.5rem;
}

.service-link .arrow {
    display: inline-block;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.service-link:hover .arrow {
    transform: translateX(5px);
}

/* Blob Shapes */
.blob-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -200px;
    right: -200px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    bottom: -150px;
    left: -150px;
}

/* Section Divider */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.section-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

/* ============================================
   RECENT PROJECTS SECTION
   ============================================ */
.recent-projects {
    padding: 4rem 0;
    background: var(--bg-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.project-card {
    position: relative;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.project-image-placeholder {
    width: 100%;
    height: 250px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px dashed #ddd;
}

.project-card:hover .project-image-placeholder {
    background: #eeeeee;
    transform: scale(1.02);
}

.project-image-placeholder span {
    line-height: 1.5;
    opacity: 0.7;
}

.project-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-teal);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn.btn-outline {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.btn-outline:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design for Projects Grid */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto;
    }
    
    .project-image-placeholder {
        height: 200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 2rem 1rem;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.google-review-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #4285f4;
    text-align: center;
}

.review-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.google-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.google-logo {
    margin-bottom: 0.5rem;
}

.stars {
    color: #fbbc04;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.rating {
    font-size: 0.9rem;
    color: #5f6368;
    font-weight: 500;
}

blockquote {
    font-size: 1.125rem;
    font-style: italic;
    margin: 0.5rem 0;
    color: #333;
    quotes: none;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #666;
    margin-top: 0.5rem;
    display: block;
}

@media (max-width: 600px) {
    .review-content {
        flex-direction: column;
        text-align: center;
    }
    
    .google-badge {
        margin-bottom: 1rem;
    }
    
    cite {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
    }
}

/* ============================================
   REMOVED: VISUAL EVIDENCE
   ============================================ */

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.gradient-bg {
    background: var(--gradient-subtle);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ============================================
   MODERN CTA
   ============================================ */
.modern-cta {
    background: var(--gradient-primary);
    padding: 4rem 0;
    text-align: center;
}

.modern-cta h2 {
    color: white;
}

.modern-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem !important;
    font-size: 1.1rem !important;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   REMOVED: FEATURED IN
   ============================================ */

/* ============================================
   MODERN FOOTER
   ============================================ */
.modern-footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 1rem;
}

/* Newsletter and awards badges removed */

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* ============================================
   REMOVED: FLOATING CTA & EXIT POPUP
   ============================================ */

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.4s;
}

.animate-fade-up.delay-3 {
    animation-delay: 0.6s;
}

.animate-fade-up.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Nav Hover Animation */
.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-nav {
        gap: 1rem;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-services {
        gap: 0.5rem;
    }
    
    .service-badge {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta a {
        width: 100%;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) {
    .service-card:hover {
        transform: none;
    }
    
    .value-card:hover {
        transform: none;
    }
}