/* 
   Platinum Pressure Washing
   "Premium Water Clean" Theme
   Colors matched to the brand logo:
   - Navy: #0b1a30
   - Royal Electric Blue: #0055d4
   - Sky Blue Accent: #00a2e8
   - Ice Blue Light: #f2f6fc
*/

:root {
    /* Color Palette */
    --primary: #0055d4;         /* Royal Electric Blue */
    --primary-light: #3377e0;
    --primary-dark: #003fa0;
    
    --accent: #00a2e8;          /* Sky Blue Accent */
    --accent-light: #eef8ff;
    
    --navy-dark: #0b1a30;       /* Rich Navy */
    --navy-hover: #071224;
    
    --text-dark: #1e293b;       /* Charcoal Text */
    --text-muted: #64748b;      /* Slate Grey Text */
    --text-light: #f8fafc;
    
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;          /* Ice Blue White */
    --bg-ice: #f1f5f9;          /* Slightly darker soft grey/blue */
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Tenor Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(11, 26, 48, 0.04);
    --shadow-md: 0 10px 25px rgba(11, 26, 48, 0.08);
    --shadow-lg: 0 20px 40px rgba(11, 26, 48, 0.12);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    word-break: break-word;
    overflow-wrap: break-word;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--bg-alt);
}

.bg-navy {
    background-color: var(--navy-dark);
    color: var(--white);
}

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy p {
    color: var(--white);
}

/* Typography Utilities */
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 85, 212, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 85, 212, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Header & Navigation */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

/* Top Announcement/Contact Bar */
.top-bar {
    background-color: var(--navy-dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item i {
    color: var(--accent);
}

.top-bar-right a {
    color: var(--white);
    font-weight: 600;
}

.top-bar-right a:hover {
    color: var(--accent);
}

/* Main Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.brand-logo {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: var(--white);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.brand-name {
    margin-left: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-dark);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 0;
}

.brand-name span {
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-link.btn-primary {
    color: var(--white);
    padding: 0.75rem 1.5rem;
}

.nav-link.btn-primary::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--navy-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 26, 48, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header state on scroll */
.header-wrapper.scrolled {
    box-shadow: var(--shadow-md);
}

.header-wrapper.scrolled .top-bar {
    margin-top: -35px; /* Hides top-bar cleanly */
    opacity: 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assest/platinum_hero_banner.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 26, 48, 0.85) 0%, rgba(11, 26, 48, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 750px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

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

/* Welcome Section */
.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

.welcome-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.credentials-list {
    margin: 2rem 0;
}

.credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.credentials-list li i {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.credentials-list h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--navy-dark);
}

.credentials-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-areas {
    padding: 1.5rem;
    background-color: var(--bg-alt);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
}

.service-areas h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.areas-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-dark);
    background: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(11,26,48,0.03);
}

.areas-list li i {
    color: var(--primary);
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    width: 130px;
    height: 130px;
    text-align: center;
}

.experience-badge .number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* Stats Counter Section */
.stats-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background-color: var(--navy-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 26, 48, 0.03);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-card-img {
    height: 250px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.04);
}

.service-card-content {
    padding: 2.2rem 2rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--navy-dark);
    line-height: 1.25;
}

.service-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
    flex-grow: 1;
}

/* Interactive Quote Form Section */
.quote-section {
    background-color: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.quote-info p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-bullets {
    margin-bottom: 2.5rem;
}

.contact-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-bullets li i {
    width: 40px;
    height: 40px;
    background-color: var(--accent-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
    min-width: 0;
    overflow: hidden;
}

.form-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
}

.form-wrapper p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 85, 212, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-wrapper .btn-primary {
    width: 100%;
    padding: 1.1rem;
    font-size: 1rem;
}

/* Form Success Modal */
.form-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 26, 48, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.form-success-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.8);
    transition: var(--transition);
}

.form-success-modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background-color: #dcfce7;
    color: #15803d;
    font-size: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Testimonials / Reviews Section */
.testimonials {
    background-color: var(--bg-ice);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.review-stars {
    color: #f59e0b; /* Amber */
    font-size: 1rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--navy-dark);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.review-source i {
    color: #4285f4; /* Google blue */
}

/* CTA Banner Section */
.cta {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-lg) 0;
    background-color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.cta h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

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

/* Footer */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding-top: var(--spacing-xl);
    border-top: 4px solid var(--accent);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand .brand-logo {
    border-color: var(--accent);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 0.3rem;
    font-size: 1.1rem;
}

.footer-bottom {
    background-color: #050c18;
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    margin: 0;
}

/* =============================================
   INNER PAGE HERO BANNER
   ============================================= */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background-color: var(--navy-dark);
    background-image: linear-gradient(135deg, var(--navy-dark) 0%, #0d2a50 100%);
    text-align: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('assest/platinum_hero_banner.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
    color: var(--accent);
    font-weight: 600;
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   SERVICES DETAIL PAGE
   ============================================= */
.service-detail {
    padding: var(--spacing-xl) 0;
}

.service-detail:nth-child(even) {
    background-color: var(--bg-alt);
}

.service-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-detail-container.reverse {
    direction: rtl;
}

.service-detail-container.reverse > * {
    direction: ltr;
}

.service-detail-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.service-detail-img:hover img {
    transform: scale(1.04);
}

.service-detail-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.service-detail-text .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-includes {
    margin: 1.5rem 0 2rem;
    list-style: none;
}

.service-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.97rem;
    color: var(--text-dark);
}

.service-includes li i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section {
    padding: var(--spacing-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,26,48,0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

/* =============================================
   ABOUT PAGE EXTRAS
   ============================================= */
.about-story {
    padding: var(--spacing-xl) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary);
}

.why-card .icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* =============================================
   CONTACT PAGE EXTRAS
   ============================================= */
.contact-page-section {
    padding: var(--spacing-xl) 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-card {
    background: var(--navy-dark);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    color: var(--white);
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.contact-info-card h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-info-card > p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-detail-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,162,232,0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-detail-item p,
.contact-detail-item a {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contact-detail-item a:hover {
    color: var(--accent);
}

.contact-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Services CTA Card */
.service-cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

.service-cta-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-cta-card p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Nav Active Link */
.nav-link.active::after {
    width: 100%;
}

/* =============================================
   RESPONSIVE — INNER PAGES
   ============================================= */
@media (max-width: 992px) {
    .service-detail-container,
    .service-detail-container.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    /* Inner page hero */
    .page-hero {
        padding: 120px 1.5rem 60px;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    /* Service detail page */
    .service-detail-container,
    .service-detail-container.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .service-detail-img img {
        height: 240px;
    }

    .service-detail-text h2 {
        font-size: 1.9rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    /* About why grid */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Contact page */
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .service-cta-card {
        padding: 2rem 1.5rem;
    }

    .service-cta-card .btn {
        width: 100%;
        justify-content: center;
    }

    /* Form row stacks on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Form wrapper padding */
    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    /* Section header */
    .section-header h2 {
        font-size: 2rem;
    }

    /* Service detail text */
    .service-detail-text .lead {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 110px 1rem 50px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    /* Gallery single column */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .gallery-item.large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    /* About why card */
    .why-card {
        padding: 2rem 1.5rem;
    }

    /* Contact info card */
    .contact-info-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-detail-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-detail-item .icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    /* Service includes spacing */
    .service-includes li {
        font-size: 0.9rem;
    }

    /* Breadcrumb */
    .page-hero .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Animations & Transitions */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.right {
    transform: translateX(40px);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    :root {
        --spacing-xl: 4rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .experience-badge {
        bottom: 10px;
        right: 10px;
        width: 110px;
        height: 110px;
        padding: 1rem;
    }

    .experience-badge .number {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .quote-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero {
        padding-top: 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: -10px 0 30px rgba(11,26,48,0.15);
        z-index: 1000;
        padding: 3rem;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        align-items: flex-start;
    }

    .nav-link {
        color: var(--navy-dark);
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding: 0.5rem 0;
    }

    /* Free Estimate button in mobile nav */
    .nav-link.btn,
    .nav-link.btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        display: flex;
        padding: 0.85rem 1.5rem;
        border-radius: 4px;
        justify-content: center;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* About section */
    .about-container {
        gap: 2rem;
    }

    .service-areas {
        padding: 1.25rem;
    }

    /* CTA section */
    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Quote section on homepage */
    .quote-container {
        gap: 2rem;
    }

    .quote-info h2 {
        font-size: 2rem;
    }

    /* Form row: stack on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer {
        padding-top: 3rem;
    }

    .footer-container {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.05rem;
    }

    .brand-name span {
        font-size: 0.62rem;
        letter-spacing: 1.5px;
    }

    .brand-logo {
        height: 48px;
        width: 48px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2,
    .about h2,
    .quote-info h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    /* Reviews */
    .review-card {
        padding: 2rem 1.5rem;
    }

    /* Service card */
    .service-card-content {
        padding: 1.75rem 1.5rem 2rem;
    }

    /* Credentials list */
    .credentials-list h4 {
        font-size: 0.95rem;
    }

    /* Areas list */
    .areas-list li {
        font-size: 0.85rem;
        padding: 0.35rem 0.85rem;
    }

    /* Buttons full-width on small screens */
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer contact email wrap */
    .footer-contact p {
        font-size: 0.85rem;
        word-break: break-word;
    }

    .footer-contact a {
        word-break: break-word;
    }
}
