/* 
   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-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 85, 212, 0.2);
}

.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);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--navy-dark) 0%, var(--primary-dark) 100%);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1001;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.urgency-banner span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.urgency-banner .urgency-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}
.urgency-banner .urgency-link:hover {
    background: #ffd700;
    color: var(--navy-dark);
}

/* 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-body);
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.brand-name span {
    font-size: 0.78rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 1px;
}

.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.webp');
    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;
}

.hero-trust-badges {
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Trust Strip Section */
.trust-strip {
    background-color: var(--bg-alt);
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}
.trust-strip-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 1.05rem;
}
.trust-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Transformation Gallery Slider */
.transformation-gallery {
    background-color: #fff;
}
.slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.slider-container::-webkit-scrollbar {
    display: none;
}
.gallery-slider {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
}
.gallery-slider > img,
.gallery-slider > .slide-group {
    flex: 0 0 85%;
    max-width: 600px;
    height: 300px;
    border-radius: var(--border-radius);
    scroll-snap-align: center;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}
.gallery-slider > .slide-group {
    display: flex;
    gap: 4px;
    box-shadow: none;
}
.gallery-slider > .slide-group img {
    flex: 1;
    width: 50%;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}
@media (min-width: 768px) {
    .gallery-slider > img,
    .gallery-slider > .slide-group {
        flex: 0 0 45%;
        height: 380px;
    }
}
@media (min-width: 1024px) {
    .gallery-slider > img,
    .gallery-slider > .slide-group {
        flex: 0 0 30%;
    }
}

/* 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;
}

/* Clean Light Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: #f4f5f7;
}

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

.stat-card {
    padding: 1.5rem;
    text-align: center;
}

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

.stat-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-symbol {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.2rem;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--navy-dark);
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* 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: #334155;
}

.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.2fr 0.8fr 1fr 1fr;
    gap: 2.5rem;
    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 h3 {
    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: #cbd5e1;
    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.webp');
    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: linear-gradient(145deg, #0a192f, #112240);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    color: var(--white);
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.contact-info-card > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-detail-item:nth-last-of-type(2) {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail-item > div:last-child {
    flex: 1;
    min-width: 0;
}

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

.contact-detail-item h3 {
    display: none; /* Hide heading for a cleaner look */
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--white);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 500;
    word-break: break-all; /* Fixes awkward wrapping for long emails */
    overflow-wrap: anywhere;
    max-width: 100%;
    text-decoration: none;
}

.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%;
}

/* =============================================
   BEFORE & AFTER SLIDER
   ============================================= */
.before-after-section {
    padding: var(--spacing-xl) 0 0 0;
}

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

.before-after-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.before-after-card:hover {
    transform: translateY(-5px);
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #0b1a30;
}

.before-after-slider .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.before-after-slider .foreground-img {
    width: 50%;
    border-right: 3px solid var(--white);
}

.before-after-slider .slider-label {
    position: absolute;
    bottom: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(11, 26, 48, 0.85);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none;
}

.before-after-slider .label-before {
    left: 1rem;
}

.before-after-slider .label-after {
    right: 1rem;
}

.before-after-slider .slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
    margin: 0;
}

.before-after-slider .slider-button {
    position: absolute;
    width: 3px;
    height: 100%;
    background: var(--white);
    left: 50%;
    top: 0;
    z-index: 9;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transform: translateX(-50%);
}

.before-after-slider .slider-button::after {
    content: '\f07e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 3px solid var(--white);
}

.before-after-info {
    padding: 1.5rem;
}

.before-after-info h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 1.25rem;
}

.before-after-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =============================================
   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) {
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* 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 {
        display: flex;
        flex-direction: column-reverse;
        gap: 2.5rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem 6rem 1.5rem;
    }
    
    .contact-detail-item .icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-detail-item a,
    .contact-detail-item p {
        font-size: 0.85rem;
    }

    .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;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }

    .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: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-symbol {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* 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;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Mobile Sticky CTA */
.d-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .d-mobile-only {
        display: block;
    }
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 15px;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .floating-whatsapp {
        bottom: 90px;
    }
    .section-padding {
        padding: 2.5rem 0;
    }
    .mt-mobile-repeat-cta {
        margin-top: 1.5rem !important;
    }
}

/* Helper/Utility classes for SEO inline styles removal */
.mt-3 {
    margin-top: 3rem !important;
}
.ml-1 {
    margin-left: 0.5rem !important;
}
.fs-sm {
    font-size: 0.7rem !important;
}

/* Service Detail Pages Layout */
.service-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 2rem;
}

.service-main-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-main-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.service-main-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.process-steps, .bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.process-steps li, .bullet-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.process-steps li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 1.1rem;
}

.bullet-list li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--accent);
    font-size: 0.6rem;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: sticky;
    top: 110px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 85, 212, 0.05);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-family: var(--font-header);
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-links li a {
    display: block;
    padding: 0.8rem 1.2rem;
    background-color: #f4f7fc;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar-links li a:hover,
.sidebar-links li a.active {
    background-color: #eef4ff;
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 1.5rem;
}

.quote-widget {
    background: linear-gradient(135deg, var(--primary), #00378b);
    color: var(--white);
    border: none;
}

.quote-widget h3 {
    color: var(--white);
}

.quote-widget p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quote-widget .btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

@media (max-width: 992px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .service-sidebar {
        position: static;
    }
}

/* ==========================================================================
   Navbar Dropdown Styles
   ========================================================================== */
.nav-item.dropdown {
    position: relative;
}

.nav-link-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-icon {
    font-size: 0.7rem;
    color: var(--navy-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.nav-link.active + .dropdown-icon {
    color: var(--primary);
}

/* Desktop Styles */
@media (min-width: 993px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        background-color: var(--white);
        box-shadow: 0 15px 35px rgba(11, 26, 48, 0.15);
        border-radius: 8px;
        padding: 0.75rem 0;
        min-width: 260px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1000;
        list-style: none;
        border-top: 3px solid var(--primary);
        margin: 0;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        display: block;
        padding: 0.7rem 1.5rem;
        color: var(--navy-dark);
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.25s ease;
        text-decoration: none;
    }

    .dropdown-menu a:hover {
        background-color: rgba(0, 110, 255, 0.05);
        color: var(--primary);
        padding-left: 1.75rem;
    }

    /* Hover trigger */
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(5px);
    }

    .nav-item.dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
        color: var(--primary);
    }
}

/* Mobile Styles */
@media (max-width: 992px) {
    .nav-link-wrapper {
        justify-content: space-between;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .dropdown-icon {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-menu {
        display: none;
        list-style: none;
        width: 100%;
        padding-left: 1.5rem;
        margin-top: 0.25rem;
        border-left: 2px solid rgba(0, 110, 255, 0.15);
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1rem;
        color: var(--navy-dark);
        opacity: 0.85;
        font-weight: 500;
    }

    .dropdown-menu a:hover {
        color: var(--primary);
    }

    /* Active state to expand menu */
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-item.dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
}
