/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* KL Drainage Official Brand Colors */
    --primary-pink: #FE3B81;        /* Lettering pink */
    --teardrop-top: #FF3C91;        /* Teardrop gradient top */
    --teardrop-bottom: #FD5777;     /* Teardrop gradient bottom */
    --bg-gradient-top: #98267B;     /* Background gradient top */
    --bg-gradient-bottom: #D43088;  /* Background gradient bottom */
    
    /* Supporting Colors - Enhanced for readability */
    --dark-navy: #0f172a;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --text-dark: #0f172a;           /* Darker for better contrast */
    --text-light: #475569;          /* Improved contrast from #64748b */
    --text-medium: #334155;         /* New medium text color */
    
    /* Glowing Shadow Colors - Based on brand pink/magenta */
    --glow-pink: rgba(254, 59, 129, 0.4);
    --glow-magenta: rgba(255, 60, 145, 0.4);
    --glow-purple: rgba(152, 38, 123, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px var(--glow-pink);
    border-bottom: 2px solid var(--primary-pink);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary-pink);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--glow-pink);
}

.nav-logo .logo-img {
    height: 65px !important;
    width: auto !important;
    max-width: 250px !important;
    min-width: 120px !important;
    display: block !important;
    object-fit: contain !important;
    background: white !important;
    padding: 4px !important;
    border-radius: 8px !important;
    filter: drop-shadow(0 2px 8px rgba(254, 59, 129, 0.3));
    image-rendering: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin: 0 auto;
    z-index: 10;
    position: relative;
}

/* Image loading state */
.nav-logo .logo-img:not([src]), 
.nav-logo .logo-img[src=""] {
    opacity: 0;
}

/* Fallback for missing images */
.nav-logo .logo-img:not([src]):after,
.nav-logo .logo-img[src=""]:after {
    content: "KL Drainage";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: white;
    color: #1B365D;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

/* Preload largest logo image */
body::after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(KL-Drainage-Logo.png);
}

.nav-logo .logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(254, 59, 129, 0.5));
}

/* Enhanced Logo Container */
.nav-logo {
    position: relative;
    z-index: 10;
    display: block;
    width: auto;
    max-width: 250px;
    margin: 0;
    padding: 0;
}

.nav-logo a {
    display: block;
    padding: 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(254, 59, 129, 0.1), rgba(254, 59, 129, 0.05));
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-logo a:hover {
    background: linear-gradient(135deg, rgba(254, 59, 129, 0.15), rgba(254, 59, 129, 0.08));
    border-color: rgba(254, 59, 129, 0.3);
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--teardrop-top);
    background: rgba(255, 60, 145, 0.1);
    box-shadow: 0 0 15px var(--glow-magenta);
    transform: translateY(-2px);
}

.nav-emergency {
    display: flex;
    align-items: center;
}

.nav-emergency .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(254, 59, 129, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

/* Hamburger menu animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background-color: var(--primary-pink);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background-color: var(--primary-pink);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-gradient-top) 0%, var(--bg-gradient-bottom) 50%, var(--teardrop-top) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, var(--glow-pink) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--glow-magenta) 0%, transparent 50%);
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: url('KL-Drainage-Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teardrop-top), var(--teardrop-bottom));
    color: var(--white);
    box-shadow: 0 8px 25px var(--glow-magenta);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bg-gradient-top), var(--bg-gradient-bottom));
    box-shadow: 0 12px 35px var(--glow-purple);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--bg-gradient-top), var(--bg-gradient-bottom));
    color: var(--white);
    box-shadow: 0 8px 25px var(--glow-purple);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--teardrop-top), var(--teardrop-bottom));
    box-shadow: 0 12px 35px var(--glow-magenta);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    box-shadow: 0 0 15px var(--glow-pink);
}

.btn-outline:hover {
    background: var(--primary-pink);
    color: var(--white);
    box-shadow: 0 8px 25px var(--glow-pink);
    transform: translateY(-3px);
}

/* Enhanced Glow Button Styles */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-emergency {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    animation: emergencyPulse 2s ease-in-out infinite;
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    transform: translateY(-3px);
}

.btn-contact {
    background: linear-gradient(135deg, var(--teardrop-top), var(--teardrop-bottom));
    color: var(--white);
    box-shadow: 0 8px 25px var(--glow-magenta);
}

.btn-contact:hover {
    background: linear-gradient(135deg, var(--bg-gradient-top), var(--bg-gradient-bottom));
    box-shadow: 0 12px 35px var(--glow-purple);
    transform: translateY(-3px);
}

.btn-quote {
    background: linear-gradient(135deg, var(--bg-gradient-top), var(--bg-gradient-bottom));
    color: var(--white);
    box-shadow: 0 8px 25px var(--glow-purple);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-quote:hover {
    background: linear-gradient(135deg, var(--teardrop-top), var(--teardrop-bottom));
    box-shadow: 0 12px 35px var(--glow-magenta);
    transform: translateY(-3px);
}

/* Pulsing Animation for Emergency Buttons */
@keyframes emergencyPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(220, 38, 38, 0.7);
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
}

.contact-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-number:hover {
    color: white;
}

.office-hours {
    margin-top: 1rem;
    text-align: center;
}

.office-hours p {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: #d1d5db;
}

.office-hours a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.office-hours a:hover {
    color: white;
    text-decoration: underline;
}

.btn .fab {
    margin-right: 0.5rem;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    width: 500px;
    height: 350px;
    padding: 2rem;
}

.floating-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100px);
    animation: fallIntoPlace 1.5s ease-out forwards;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.floating-card h4 {
    font-size: 1rem;
    font-weight: 600;
}

.card-1 {
    animation-delay: 0.2s;
}

.card-2 {
    animation-delay: 0.4s;
}

.card-3 {
    animation-delay: 0.6s;
}

.card-4 {
    animation-delay: 0.8s;
}

.card-5 {
    animation-delay: 1.0s;
}

.card-6 {
    animation-delay: 1.2s;
}

/* Grid Card Animations */
@keyframes fallIntoPlace {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: translateY(10px) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px var(--glow-magenta);
    border-color: var(--teardrop-top);
    background: rgba(255, 255, 255, 0.25);
}


/* Features/Services Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.services-grid-main {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-main {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.service-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.service-highlights {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.highlight-badge {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--glow-pink);
    border-color: var(--primary-pink);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-card h3 a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing/About Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #6b7280;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #10b981;
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--bg-gradient-top), var(--bg-gradient-bottom));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, var(--glow-pink) 0%, transparent 70%);
    opacity: 0.3;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #fbbf24;
    color: #1f2937;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #d1d5db;
}

/* Service Features Grid */
.service-features {
    padding: 60px 0;
    background: #f8fafc;
}

.service-features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
}

.service-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-features .feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #fbbf24;
}

.service-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-features .feature-item i {
    font-size: 1.25rem;
    color: #fbbf24;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.service-features .feature-item span {
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #fbbf24;
}

.pricing-card.additional-hours {
    border-color: #10b981;
}

.pricing-card.additional-hours:hover {
    border-color: #059669;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header i {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.pricing-card.additional-hours .pricing-header i {
    color: #10b981;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

.pricing-details .price {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.pricing-details .price-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.pricing-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-details li {
    padding: 0.5rem 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.pricing-details li i {
    color: #10b981;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pricing-note {
    margin-top: 3rem;
    text-align: center;
    background: #fef3e6;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    color: #7c2d12;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Enhanced Responsive Design - Mobile & Tablet Optimization */

/* Tablet Landscape (1024px and down) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-emergency {
        font-size: 0.9rem;
    }
}

/* Tablet Portrait (768px and down) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-emergency {
        margin-left: 0;
        margin-top: 1rem;
        order: 3;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 3rem 0;
    }

    .hero::after {
        width: 250px;
        height: 250px;
        opacity: 0.06;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-graphic {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .service-hero-content {
        text-align: center;
    }

    .service-hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Process/Benefits Grids */
    .process-grid,
    .benefits-grid,
    .remedial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact Section */
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-contact {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    /* Service Content Layouts */
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Breadcrumb */
    .breadcrumb-nav {
        padding: 0.5rem 0;
    }

    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        text-align: center;
    }

    .service-features .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-features .feature-item {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .service-features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-details .price {
        font-size: 2.5rem;
    }

/* Mobile Phones (480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Section Mobile Optimization */
    .hero-responsive {
        background: linear-gradient(135deg, #1B365D 0%, #0F2027 50%, #203A43 100%);
        color: white;
        padding: 80px 0 60px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22%3E%3Cdefs%3E%3Cpattern id=%22luxury-grid%22 width=%2220%22 height=%2220%22 patternUnits=%22userSpaceOnUse%22%3E%3Cpath d=%22M 20 0 L 0 0 0 20%22 fill=%22none%22 stroke=%22%23D4AF37%22 stroke-width=%220.3%22 opacity=%220.1%22/%3E%3C/pattern%3E%3C/defs%3E%3Crect width=%22100%22 height=%22100%22 fill=%22url(%23luxury-grid)%22/%3E%3C/svg%3E');
        opacity: 0.3;
    }

    .hero-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .hero-badge {
        background: linear-gradient(45deg, rgba(212,175,55,0.2) 0%, rgba(255,255,255,0.1) 100%);
        display: inline-block;
        padding: 8px 16px;
        border-radius: 20px;
        margin-bottom: 1.5rem;
        border: 2px solid rgba(212,175,55,0.3);
        backdrop-filter: blur(10px);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-align: center;
    }

    .hero-badge i {
        margin-right: 6px;
        color: #D4AF37;
    }

    .hero-title {
        font-size: 2.2rem !important;
        font-weight: 800;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
        line-height: 1.1;
    }

    .hero-title .highlight {
        color: #D4AF37;
        display: block;
        margin-top: 8px;
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 2rem;
        opacity: 0.95;
        max-width: 100%;
        line-height: 1.5;
        color: #E8E8E8;
        font-weight: 300;
        padding: 0 10px;
    }

    .trust-indicators {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .trust-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: #D4AF37;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .trust-item i {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
        text-align: center;
        border-radius: 25px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: linear-gradient(45deg, #D4AF37 0%, #F4E27A 100%);
        color: #1B365D;
        border: none;
    }

    .btn-secondary {
        background: rgba(255,255,255,0.1);
        color: white;
        border: 2px solid rgba(255,255,255,0.3);
    }

    .nav-container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 50px !important;
        width: auto !important;
        max-width: 200px !important;
        display: block !important;
        object-fit: contain !important;
        background: white !important;
        padding: 4px !important;
        border-radius: 6px !important;
        /* Ensure image displays properly */
        min-width: 120px !important;
        /* Smooth loading transition */
        transition: opacity 0.3s ease !important;
    }

    /* Only show text fallback if image fails to load */
    .logo-img[alt]::after {
        content: "";
        display: none;
    }
    
    /* Fallback text only for broken images */
    .logo-img[src=""]:after,
    .logo-img:not([src]):after {
        content: "KL Drainage";
        font-size: 1.2rem !important;
        font-weight: bold !important;
        color: #1B365D !important;
        display: block !important;
        text-align: center !important;
        line-height: 46px !important;
        background: rgba(255,255,255,0.9);
        border-radius: 6px;
        padding: 8px;
    }

    .nav-emergency {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .nav-emergency .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 15px;
    }

    .btn-large {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Desktop and larger screens - Hero responsive styles */
@media (min-width: 481px) {
    .hero-responsive {
        background: linear-gradient(135deg, #1B365D 0%, #0F2027 50%, #203A43 100%);
        color: white;
        padding: 120px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22%3E%3Cdefs%3E%3Cpattern id=%22luxury-grid%22 width=%2220%22 height=%2220%22 patternUnits=%22userSpaceOnUse%22%3E%3Cpath d=%22M 20 0 L 0 0 0 20%22 fill=%22none%22 stroke=%22%23D4AF37%22 stroke-width=%220.3%22 opacity=%220.1%22/%3E%3C/pattern%3E%3C/defs%3E%3Crect width=%22100%22 height=%22100%22 fill=%22url(%23luxury-grid)%22/%3E%3C/svg%3E');
        opacity: 0.3;
    }

    .hero-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-badge {
        background: linear-gradient(45deg, rgba(212,175,55,0.2) 0%, rgba(255,255,255,0.1) 100%);
        display: inline-block;
        padding: 12px 30px;
        border-radius: 30px;
        margin-bottom: 2rem;
        border: 2px solid rgba(212,175,55,0.3);
        backdrop-filter: blur(10px);
        font-weight: 600;
        letter-spacing: 1.5px;
        font-size: 0.9rem;
    }

    .hero-badge i {
        margin-right: 10px;
        color: #D4AF37;
    }

    .hero-title {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
        line-height: 1.1;
    }

    .hero-title .highlight {
        color: #D4AF37;
        display: block;
        margin-top: 10px;
    }

    .hero-description {
        font-size: 1.4rem;
        margin-bottom: 3rem;
        opacity: 0.95;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
        color: #E8E8E8;
        font-weight: 300;
    }

    .trust-indicators {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #D4AF37;
        font-weight: 500;
    }

    .trust-item i {
        font-size: 1.2rem;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        border-radius: 30px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
        min-width: 200px;
        justify-content: center;
    }

    .btn-primary {
        background: linear-gradient(45deg, #D4AF37 0%, #F4E27A 100%);
        color: #1B365D;
        border: none;
    }

    .btn-secondary {
        background: rgba(255,255,255,0.1);
        color: white;
        border: 2px solid rgba(255,255,255,0.3);
    }
}

/* Tablet responsive styles (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-responsive {
        padding: 100px 0 !important;
    }

    .hero-container {
        padding: 0 30px !important;
    }

    .hero-title {
        font-size: 3rem !important;
    }

    .hero-description {
        font-size: 1.2rem !important;
        margin-bottom: 2.5rem !important;
    }

    .trust-indicators {
        gap: 1.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .trust-item {
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        padding: 12px 25px !important;
        font-size: 1rem !important;
        min-width: 180px;
    }

    .nav-emergency .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .trust-indicators {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Services section responsive styles */
.service-hero {
    padding: 100px 0;
    background: linear-gradient(to bottom, #FAFAFA 0%, #FFFFFF 100%);
}

.service-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero-content {
    text-align: center;
    margin-bottom: 80px;
}

.service-badge {
    background: linear-gradient(45deg, #1B365D 0%, #D4AF37 100%);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.service-badge i {
    margin-right: 10px;
}

.service-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1B365D;
    line-height: 1.2;
}

.service-title .highlight {
    color: #D4AF37;
}

.service-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobile styles for services section */
@media (max-width: 480px) {
    .service-hero {
        padding: 60px 0;
    }

    .service-hero .container {
        padding: 0 15px;
    }

    .service-hero-content {
        margin-bottom: 40px;
    }

    .service-badge {
        padding: 8px 16px;
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .service-title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .service-subtitle {
        font-size: 1rem !important;
        padding: 0 10px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 400 !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Tablet styles for services section */
@media (min-width: 481px) and (max-width: 768px) {
    .service-hero {
        padding: 80px 0;
    }

    .service-hero .container {
        padding: 0 30px;
    }

    .service-hero-content {
        margin-bottom: 60px;
    }

    .service-title {
        font-size: 2.8rem !important;
    }

    .service-subtitle {
        font-size: 1.1rem !important;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 400 !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Google Maps responsive styling */
.google-embed-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.google-embed-container iframe {
    width: 100% !important;
    height: 300px !important;
    border: 0 !important;
    border-radius: 15px !important;
    display: block !important;
}

/* Mobile Google Maps optimization */
@media (max-width: 480px) {
    .google-embed-container {
        padding: 15px !important;
        margin: 10px 0 !important;
        border-radius: 15px !important;
    }
    
    .google-embed-container iframe {
        height: 250px !important;
        border-radius: 10px !important;
        margin-bottom: 15px !important;
    }
}

/* Tablet Google Maps */
@media (min-width: 481px) and (max-width: 768px) {
    .google-embed-container iframe {
        height: 280px !important;
    }
}

    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .hero-graphic {
        width: 250px;
        height: 250px;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .service-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .process-step,
    .benefit-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .step-number {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin: 0 auto 1rem auto;
    }

    .process-step h3,
    .benefit-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .process-step p,
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contact-method {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .contact-method h3 {
        font-size: 1.1rem;
    }

    .contact-method p {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        text-align: center;
    }

    /* Service Page Specific */
    .service-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .service-highlights {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .highlight-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-guarantee p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Table Responsiveness */
    .responsive-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 100%;
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.5rem;
        white-space: nowrap;
    }

    /* Forms */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-control {
        padding: 0.8rem;
        font-size: 1rem;
    }

    /* Breadcrumb for mobile */
    .breadcrumb {
        font-size: 0.75rem;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
    }

    .breadcrumb-nav {
        padding: 0.5rem 0;
        margin-top: 70px;
    }


/* Additional Mobile Optimizations */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 1rem 0.8rem;
    }
}

    .floating-card {
        padding: 1rem;
    }

    .floating-card h4 {
        font-size: 0.875rem;
    }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Service Detail Pages */
.service-detail {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-main {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-main h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.service-features i {
    color: #10b981;
    font-size: 1rem;
}

.service-description p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-description ul,
.service-description ol {
    color: #6b7280;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card,
.service-areas,
.related-services {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card h3,
.service-areas h3,
.related-services h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.emergency-number {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.emergency-number i {
    color: #ef4444;
    font-size: 1.25rem;
}

.emergency-number a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.emergency-number a:hover {
    text-decoration: underline;
}

.service-areas ul,
.related-services ul {
    list-style: none;
}

.service-areas li,
.related-services li {
    padding: 0.5rem 0;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.service-areas li:last-child,
.related-services li:last-child {
    border-bottom: none;
}

.related-services a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-services a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.cta-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-header h1 {
        font-size: 2.5rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-main {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Emergency Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, var(--teardrop-top) 0%, var(--bg-gradient-top) 50%, var(--bg-gradient-bottom) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, var(--glow-pink) 0%, transparent 70%);
    opacity: 0.4;
}

.service-hero-content {
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.emergency-badge i {
    font-size: 1.25rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.emergency-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.emergency-phone,
.response-time {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.emergency-phone i,
.response-time i {
    font-size: 2rem;
    color: #fbbf24;
}

.emergency-label,
.response-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emergency-number,
.response-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.emergency-number:hover {
    color: #fbbf24;
}

.service-coverage {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-coverage h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.coverage-areas span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.emergency-services {
    padding: 80px 0;
    background: #f8fafc;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.emergency-service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ef4444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emergency-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.emergency-icon i {
    font-size: 1.5rem;
    color: white;
}

.emergency-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.emergency-service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.service-features i {
    color: #10b981;
    font-size: 0.75rem;
}

/* Emergency Pricing Styles */
.emergency-pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.emergency-pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #dc2626;
    font-size: 2.5rem;
    font-weight: 700;
}

.emergency-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.emergency-pricing .pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.emergency-pricing .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.emergency-pricing .pricing-card.business-hours:hover {
    border-color: #fbbf24;
}

.emergency-pricing .pricing-card.out-of-hours {
    border-color: #dc2626;
}

.emergency-pricing .pricing-card.out-of-hours:hover {
    border-color: #b91c1c;
}

.emergency-pricing .pricing-card.additional-hours {
    border-color: #10b981;
}

.emergency-pricing .pricing-card.additional-hours:hover {
    border-color: #059669;
}

.emergency-pricing .pricing-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.emergency-pricing .business-hours .pricing-header i {
    color: #fbbf24;
}

.emergency-pricing .out-of-hours .pricing-header i {
    color: #dc2626;
}

.emergency-pricing .additional-hours .pricing-header i {
    color: #10b981;
}

.emergency-pricing .pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.emergency-pricing .pricing-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

.emergency-pricing .pricing-details .price {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.emergency-pricing .pricing-details .price-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.emergency-pricing .pricing-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.emergency-pricing .pricing-details li {
    padding: 0.5rem 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.emergency-pricing .pricing-details li i {
    color: #10b981;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.emergency-pricing .pricing-note {
    margin-top: 3rem;
    text-align: center;
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-pricing .pricing-note p {
    color: #991b1b;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.why-emergency {
    padding: 80px 0;
    background: white;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon i {
    font-size: 1.5rem;
    color: white;
}

.reason-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: #6b7280;
    line-height: 1.6;
}

.emergency-cta {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 80px 0;
}

.emergency-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.emergency-urgency {
    text-align: center;
}

.emergency-urgency i {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.emergency-urgency h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ef4444;
}

.emergency-urgency p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-action {
    text-align: center;
}

.btn-emergency-call {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ef4444;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-emergency-call:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-emergency-call i {
    font-size: 1.5rem;
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
}

.emergency-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.emergency-features i {
    color: #10b981;
}

.emergency-footer-contact {
    margin: 1.5rem 0;
}

.footer-emergency-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #374151;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.footer-emergency-phone i {
    color: #ef4444;
    font-size: 1.25rem;
}

.footer-emergency-phone a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-emergency-phone span {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-left: auto;
}

/* Responsive Design for Emergency Pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .emergency-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .emergency-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .emergency-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
    }
}

/* CCTV Survey Page Styles */
.cctv-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.cctv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,15 85,85 15,85" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: float 30s linear infinite;
}

.cctv-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-badge i {
    font-size: 1.25rem;
}

.cctv-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cctv-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.feature-item span {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
}

.survey-types {
    padding: 80px 0;
    background: #f8fafc;
}

.survey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.survey-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.survey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.survey-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.survey-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.survey-icon i {
    font-size: 2rem;
    color: white;
}

.survey-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.survey-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.survey-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.survey-includes li {
    padding: 0.5rem 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.survey-includes i {
    color: #10b981;
    font-size: 0.875rem;
}

.survey-pricing {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.how-it-works {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, transparent);
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

.technology {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-feature {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}

.tech-feature i {
    font-size: 2rem;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.tech-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.tech-feature p {
    color: #6b7280;
    line-height: 1.6;
}

.cctv-cta {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 80px 0;
}

.cctv-cta .cta-content {
    text-align: center;
}

.cctv-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cctv-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.cta-option p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.cta-features i {
    color: #10b981;
}

/* Responsive Design for CCTV Pages */
@media (max-width: 768px) {
    .cctv-hero h1 {
        font-size: 2.5rem;
    }
    
    .cctv-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .survey-grid {
        grid-template-columns: 1fr;
    }
    
    .survey-card.featured {
        transform: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step::after {
        display: none;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Remedial Works Page Styles */
.remedial-hero {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.remedial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="20" height="20" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: float 25s linear infinite;
}

.remedial-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.remedial-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.remedial-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.capability-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.capability-item i {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.capability-item span {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
}

.project-scale {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.scale-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scale-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.scale-option p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.scale-option ul {
    list-style: none;
    padding: 0;
}

.scale-option li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    opacity: 0.8;
}

.scale-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-align: center;
}

.remedial-services {
    padding: 80px 0;
    background: #f8fafc;
}

.remedial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.remedial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f97316;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.remedial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.remedial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.remedial-icon i {
    font-size: 2rem;
    color: white;
}

.remedial-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.remedial-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-details {
    list-style: none;
}

.service-details li {
    padding: 0.5rem 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.service-details i {
    color: #10b981;
    font-size: 0.75rem;
}

.project-types {
    padding: 80px 0;
    background: white;
}

.project-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-category {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.category-header {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.category-icon i {
    font-size: 2rem;
}

.category-content {
    padding: 2rem;
}

.category-content ul {
    list-style: none;
    padding: 0;
}

.category-content li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    line-height: 1.6;
}

.category-content li:last-child {
    border-bottom: none;
}

.category-content strong {
    color: #1f2937;
    font-weight: 600;
}

.remedial-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 4px solid #f97316;
}

.timeline-step .step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
}

.timeline-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.timeline-step p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    background: #fef3e6;
    color: #ea580c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}

.why-choose-remedial {
    padding: 80px 0;
    background: white;
}

.expertise-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.expertise-item i {
    font-size: 2rem;
    color: #f97316;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.expertise-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.expertise-item p {
    color: #6b7280;
    line-height: 1.6;
}

.remedial-cta {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 80px 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.contact-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.contact-option p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
    display: block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.office-hours-note {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.project-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.guarantee-item i {
    color: #10b981;
}

/* Responsive Design for Remedial Pages */
@media (max-width: 768px) {
    .remedial-hero h1 {
        font-size: 2.5rem;
    }
    
    .remedial-capabilities {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .project-scale {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scale-divider {
        transform: rotate(90deg);
        font-size: 2rem;
    }
    
    .remedial-grid {
        grid-template-columns: 1fr;
    }
    
    .project-categories {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .expertise-areas {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-guarantees {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Credentials Page Styles */
.page-header {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

.credentials-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.credentials-overview h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
}

.credentials-overview p {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.credentials-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #6b7280;
    margin: 0;
}

.detailed-credentials {
    padding: 80px 0;
    background: white;
}

.detailed-credentials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
}

.credential-details {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.credential-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.credential-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.credential-icon-large {
    font-size: 3rem;
}

.credential-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.credential-status {
    color: #10b981;
    font-weight: 600;
    margin: 0;
}

.credential-body h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.credential-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.credential-body li {
    padding: 0.5rem 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.credential-body li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    flex-shrink: 0;
}

.credential-note {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    font-size: 0.875rem;
    line-height: 1.6;
}

.trust-section {
    padding: 80px 0;
    background: #f8fafc;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.trust-text h3 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trust-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.verification-list {
    list-style: none;
    padding: 0;
}

.verification-list li {
    padding: 0.5rem 0;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.verification-list li:before {
    content: "🔍";
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.trust-badges {
    display: grid;
    gap: 1.5rem;
}

.trust-badge {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trust-badge h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-badge p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

/* CTA Section Styles */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #fbbf24;
    color: #1f2937;
    border: 2px solid #fbbf24;
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
    }
}

/* Additional mobile utilities */
@media (max-width: 480px) {
    .text-center {
        text-align: center;
    }
    
    .w-full {
        width: 100%;
    }
    
    .hidden-mobile {
        display: none;
    }
}

/* Utility classes for responsive design */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}

/* Service Card Enhancements - Button-style Links */
.service-card-main h3 a {
    display: inline-block;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
}

.service-card-main h3 a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--teardrop-top));
    transition: left 0.3s ease;
    z-index: -1;
}

.service-card-main h3 a:hover {
    color: white;
    border-color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 59, 129, 0.3);
}

.service-card-main h3 a:hover::before {
    left: 0;
}

.service-card-main h3 a:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(254, 59, 129, 0.4);
}

.service-card-main h3 a:focus {
    outline: 3px solid rgba(254, 59, 129, 0.5);
    outline-offset: 2px;
}

/* Enhanced service card hover effects */
.service-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card-main:hover .feature-icon {
    color: var(--primary-pink);
    transform: scale(1.1);
}

/* Mobile responsive service buttons */
@media (max-width: 768px) {
    .service-card-main h3 a {
        padding: 0.6rem 1rem;
        font-size: 1rem;
        margin: 0.3rem 0;
    }
    
    .service-card-main:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .service-card-main h3 a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* Additional button variations for different service types */
.service-card-main:nth-child(1) h3 a {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.service-card-main:nth-child(1) h3 a:hover {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.service-card-main:nth-child(2) h3 a {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.service-card-main:nth-child(2) h3 a:hover {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
}

.service-card-main:nth-child(3) h3 a {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.service-card-main:nth-child(3) h3 a:hover {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.service-card-main:nth-child(4) h3 a {
    background: linear-gradient(135deg, #fefbeb, #fef3c7);
}

.service-card-main:nth-child(4) h3 a:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

/* Focus states for accessibility */
.service-card-main h3 a:focus-visible {
    outline: 3px solid var(--primary-pink);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(254, 59, 129, 0.2);
}

/* Footer service links as buttons */
.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin: 0.1rem 0;
}

.footer-section ul li a:hover {
    color: var(--primary-pink);
    background: rgba(254, 59, 129, 0.1);
    transform: translateX(5px);
}

/* Special styling for service links in footer */
.footer-section:nth-child(2) ul li a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section:nth-child(2) ul li a:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: white;
    transform: translateX(5px) scale(1.05);
}

/* Active/pressed state */
.service-card-main h3 a:active {
    transform: translateY(1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Floating Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-pink), #e91e63);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(254, 59, 129, 0.4);
    transition: all 0.3s ease;
    animation: float-pulse 3s ease-in-out infinite;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.floating-quote-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 30px rgba(254, 59, 129, 0.6);
    background: linear-gradient(135deg, #e91e63, var(--primary-pink));
}

.floating-quote-btn:active {
    transform: translateY(0) scale(1.02);
    transition: all 0.1s ease;
}

.floating-quote-btn i {
    font-size: 1rem;
}

/* Floating button animation */
@keyframes float-pulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 25px rgba(254, 59, 129, 0.4);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(254, 59, 129, 0.5);
    }
}

/* Mobile responsive floating button */
@media (max-width: 768px) {
    .floating-quote-btn {
        bottom: 70px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: 130px;
    }
    
    .floating-quote-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-quote-btn {
        bottom: 60px;
        right: 10px;
        padding: 8px 14px;
        font-size: 0.8rem;
        min-width: 120px;
    }
}

/* Ensure floating button doesn't conflict with emergency button */
.floating-quote-btn {
    bottom: 20px;
}

@media (max-width: 768px) {
    .floating-quote-btn {
        bottom: 80px; /* Move higher on mobile to avoid nav overlap */
    }
}

/* Quote Buttons Container for Hero Sections */
.quote-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.quote-buttons .floating-quote-btn {
    position: relative;
    bottom: auto;
    right: auto;
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    animation: none;
    margin: 0;
}

.quote-buttons .btn-primary {
    background: linear-gradient(135deg, #FE3B81, #FF6B9D);
    color: white;
    border: none;
}

.quote-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #E5336F, #FF5A8A);
}

.quote-buttons .btn-secondary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
}

.quote-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #20C659, #0F7A6E);
}

/* Mobile Responsive Quote Buttons Container */
@media (max-width: 768px) {
    .quote-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }
    
    .quote-buttons .floating-quote-btn {
        min-width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quote-buttons {
        gap: 10px;
    }
    
    .quote-buttons .floating-quote-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Compact Layout Styles for Postcode Pages */
.area-coverage.compact {
    padding: 2rem 0;
}

.coverage-grid.compact-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.coverage-card.compact-card {
    padding: 1rem;
    margin-bottom: 0;
}

.coverage-card.compact-card .area-details {
    display: none; /* Hide detailed lists in compact view */
}

.coverage-card.compact-card .area-header h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.coverage-card.compact-card .area-type {
    font-size: 0.8rem;
}

.coverage-card.compact-card .area-features {
    margin-top: 0.5rem;
}

.feature-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
}

/* Payment Disclaimer Styling */
.payment-disclaimer {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-pink);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-disclaimer p {
    margin: 0 !important;
    font-size: 0.95rem !important;
    color: #0f172a !important;
    opacity: 1 !important;
    line-height: 1.7 !important;
    font-weight: 500 !important;
}

/* Compact Services Section */
.services-section .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-card ul {
    font-size: 0.85rem;
}

.service-card ul li {
    margin-bottom: 0.3rem;
}

/* Local Expertise Compact */
.local-expertise .expertise-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.expertise-item {
    padding: 0.8rem;
}

.expertise-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.expertise-item p {
    font-size: 0.85rem;
}

/* Responsive adjustments for compact layout */
@media (max-width: 768px) {
    .coverage-grid.compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
    }
    
    .coverage-card.compact-card {
        padding: 0.8rem;
    }
    
    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* End of CSS file - Enhanced Text Readability */

/* Text Readability Utilities */
.text-readable {
    color: var(--text-dark) !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}

.text-readable-light {
    color: var(--text-medium) !important;
    opacity: 1 !important;
}

.text-contrast-high {
    color: #0f172a !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Improved readability for common elements */
p, .text-content {
    line-height: 1.7;
}

/* Enhanced disclaimer and note readability */
.disclaimer-text, .note-text {
    color: var(--text-dark) !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
}

/* Enhanced readability for gradient background text */
.service-hero p, .service-hero .service-subtitle,
.hero-section p, .hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Ensure all subtitle elements are readable */
.subtitle, .section-subtitle, .page-subtitle {
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}