/* Import Playfair Display & Poppins from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --color-pink: #E83D8C;
    --color-dark-blue: #0F3878;
    --color-blue: #298DDB;
    --color-light-pink: #F760D2;
    --color-grey: #F6F7F8;
    --color-green: #2E7D32;
    --color-light-green: #4CAF50;
    --color-text-dark: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-premium: 0 15px 35px rgba(15, 56, 120, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(15, 56, 120, 0.15), 0 8px 20px rgba(0, 0, 0, 0.06);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark-blue);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* Custom Tagline Header (topmost layout in image) */
.tagline-banner {
    background-color: var(--color-grey);
    padding: 8px 0;
    border-bottom: 1px solid rgba(15, 56, 120, 0.1);
}

.tagline-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.tagline-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    max-height: 85px;
    width: auto;
    background: transparent;
    display: block;
    transition: var(--transition-smooth);
}

.logo-icon-svg {
    width: 80px;
    height: 80px;
}

.logo-text h1 {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
}

.logo-text span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    color: var(--color-pink);
    font-weight: 600;
    display: block;
}

/* Contact and social info stack in the header */
.tagline-contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    font-family: var(--font-body);
}

.tagline-contact-info .contact-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.tagline-contact-info .contact-item a {
    color: var(--color-dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tagline-contact-info .contact-item a:hover {
    color: var(--color-pink);
}

.tagline-contact-info .header-socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.tagline-contact-info .header-socials a {
    color: var(--color-dark-blue);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.tagline-contact-info .header-socials a:hover {
    color: var(--color-pink);
    transform: translateY(-2px);
}

/* Responsive CSS for Header Stack */
@media (max-width: 768px) {
    .tagline-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 10px 20px;
    }
    
    .tagline-contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .header-logo-img {
        max-height: 70px !important;
    }
}

.tagline-center {
    text-align: center;
    max-width: 450px;
}

.tagline-center h2 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark-blue);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.tagline-center h2 span {
    color: var(--color-pink);
}

.tagline-center p {
    font-size: 12px;
    color: var(--color-text-light);
}

.tagline-checklist {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
}

.tagline-checklist li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-dark-blue);
}

.tagline-checklist li i {
    color: var(--color-green);
}

/* Top Navigation Bar (Dark Blue) */
.top-bar {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-contacts {
    display: flex;
    gap: 20px;
}

.top-bar-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contacts a:hover {
    color: var(--color-light-pink);
}

.top-bar-socials {
    display: flex;
    gap: 15px;
}

.top-bar-socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.top-bar-socials a:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Main Navbar */
.main-navbar {
    background-color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-navbar.sticky {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-logo-img {
    max-height: 60px;
}

.navbar-logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-blue);
    line-height: 1;
}

.navbar-logo-text span {
    font-family: var(--font-body);
    font-size: 8px;
    color: var(--color-pink);
    display: block;
    letter-spacing: 1px;
}

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

.nav-item-dropdown {
    position: relative;
}

.nav-link-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-blue);
    padding: 8px 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
    white-space: nowrap;
}

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

.nav-link-btn:hover::after, .nav-menu li.active .nav-link-btn::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(15, 56, 120, 0.15);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 15px 0;
    border-top: 3px solid var(--color-pink);
    z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu-list li a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.dropdown-menu-list li a:hover {
    background-color: var(--color-grey);
    color: var(--color-pink);
    padding-left: 25px;
}

/* Navbar Buttons */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.navbar-socials a {
    color: var(--color-dark-blue);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.navbar-socials a:hover {
    color: var(--color-pink);
    transform: translateY(-2px);
}

/* Custom Buttons matching typography & styling */
.btn-primary-custom {
    background-color: var(--color-dark-blue); /* Default Dark Blue matching Logo */
    color: var(--color-white) !important;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 10px rgba(15, 56, 120, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary-custom:hover, .btn-primary-custom:active, .btn-primary-custom:focus {
    background-color: var(--color-pink); /* On click / hover Pink matching Logo */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(232, 61, 140, 0.35);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--color-dark-blue) !important; /* Default Dark Blue matching Logo */
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 6px;
    border: 2px solid var(--color-dark-blue);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary-custom:hover, .btn-secondary-custom:active, .btn-secondary-custom:focus {
    background-color: var(--color-pink); /* On click / hover Pink matching Logo */
    color: var(--color-white) !important;
    border-color: var(--color-pink);
    transform: translateY(-2px);
}

.btn-accent-custom {
    background-color: var(--color-dark-blue); /* Default Dark Blue matching Logo */
    color: var(--color-white) !important;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-accent-custom:hover, .btn-accent-custom:active, .btn-accent-custom:focus {
    background-color: var(--color-pink); /* On click / hover Pink matching Logo */
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-dark-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--color-white);
    clip-path: ellipse(60% 80% at 50% 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 50px;
}

.hero-content {
    flex: 1.1;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--color-pink);
}

.hero-content p {
    font-size: 15px;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    background-color: var(--color-dark-blue); /* Default Dark Blue matching Logo */
    color: var(--color-white) !important;
    font-weight: 600;
    font-size: 13px;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 10px rgba(15, 56, 120, 0.25);
}

.hero-btn:hover, .hero-btn:active, .hero-btn:focus {
    background-color: var(--color-pink); /* On click / hover Pink matching Logo */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(232, 61, 140, 0.35);
}

.hero-follow {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-blue);
}

.hero-follow-socials {
    display: flex;
    gap: 10px;
}

.hero-follow-socials a {
    width: 32px;
    height: 32px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hero-follow-socials a:hover {
    color: var(--color-white);
    background-color: var(--color-pink);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    flex: 0.9;
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    animation: morphing 15s ease-in-out infinite alternate;
}

@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
    100% { border-radius: 70% 30% 50% 50% / 40% 40% 60% 60%; }
}

.hero-image-container img {
    width: 100%;
    object-fit: cover;
    height: 400px;
    display: block;
    transform: scale(1.05);
}

.hero-slider {
    height: 400px;
    position: relative;
}

.hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide-img.active {
    opacity: 1;
    z-index: 1;
}

/* Chat Popup Window (Live Chat Simulation in Hero) */
.hero-chat-widget {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 250px;
    cursor: pointer;
    border-left: 4px solid var(--color-pink);
    z-index: 10;
    transition: var(--transition-smooth);
}

.hero-chat-widget:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.hero-chat-avatar {
    width: 36px;
    height: 36px;
    background-color: var(--color-light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pink);
}

.hero-chat-text p {
    font-size: 11px;
    color: var(--color-text-light);
    margin: 0;
}

.hero-chat-text h4 {
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-dark-blue);
    margin: 0;
}

/* Trust Badges Bar */
.trust-badges-bar {
    background-color: var(--color-grey);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-badges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-blue);
}

.trust-badge-item i {
    font-size: 20px;
    color: var(--color-pink);
    background-color: rgba(232, 61, 140, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.section-header h3 {
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--color-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    line-height: 1.2;
}

.why-choose-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.why-choose-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--color-pink);
}

.why-choose-icon {
    font-size: 24px;
    color: var(--color-blue);
    background-color: rgba(41, 141, 219, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: var(--transition-smooth);
}

.why-choose-card:hover .why-choose-icon {
    background-color: var(--color-pink);
    color: var(--color-white);
}

.why-choose-card h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-card p {
    font-size: 12px;
    color: var(--color-text-light);
}

/* Areas We Cover Section */
.areas-section {
    padding: 80px 0;
    background-color: var(--color-grey);
}

.areas-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 50px;
    flex-wrap: wrap;
}

.areas-info {
    flex: 1;
    min-width: 300px;
}

.areas-info h3 {
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--color-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.areas-info h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.areas-info p {
    font-size: 14px;
    color: var(--color-text-dark);
    margin-bottom: 25px;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.areas-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

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

.areas-map-wrapper {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
}

/* Elegant Interactive Map Container */
.interactive-map-container {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
    width: 100%;
    max-width: 500px;
}

.svg-map {
    width: 100%;
    height: auto;
    max-height: 380px;
}

.map-node {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.map-node circle {
    fill: var(--color-green);
    stroke: var(--color-white);
    stroke-width: 2;
    transition: var(--transition-smooth);
}

.map-node.center-node circle {
    fill: var(--color-pink);
    stroke-width: 3;
}

.map-node:hover circle {
    fill: var(--color-blue);
    r: 10;
}

.map-pulse {
    animation: mapPulse 2s infinite;
    transform-origin: center;
}

@keyframes mapPulse {
    0% {
        r: 6;
        opacity: 1;
        stroke-width: 2;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        r: 18;
        opacity: 0;
        stroke-width: 0.5;
    }
}

.map-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    fill: var(--color-dark-blue);
    text-shadow: 0 1px 3px rgba(255,255,255,0.8);
    pointer-events: none;
}

/* Tooltip on SVG node hover */
.map-tooltip {
    position: absolute;
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

/* What Our Clients Say / Testimonial Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.testimonial-card {
    background-color: var(--color-grey);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    text-align: center;
    position: relative;
    border-top: 4px solid var(--color-pink);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 4px solid var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 18px;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-dark-blue);
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-pink);
    margin-bottom: 5px;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #f1c40f;
    font-size: 12px;
}

/* Our Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-pink);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-body h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark-blue);
}

.service-body p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    flex: 1;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.service-learn-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card:hover .service-learn-more {
    color: var(--color-pink);
}

.service-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-green);
}

/* Call to Action Red Gradient Banner */
.cta-banner-section {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-light-pink) 100%);
    padding: 60px 0;
    color: var(--color-white);
    text-align: center;
}

.cta-banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner-container h2 {
    color: var(--color-white);
    font-size: 36px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.cta-banner-container p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer Section */
.main-footer {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 80px 0 20px 0;
    font-size: 13px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 20px;
    margin-bottom: 50px;
}

.footer-column h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-pink);
    margin-top: 8px;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255,255,255,0.7);
}

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

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-contacts li i {
    color: var(--color-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   MODAL - REQUEST A QUOTE POPUP PREVIEW (Styled exactly like mockup)
   ========================================================================== */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 56, 120, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.modal-card {
    background-color: var(--color-white);
    border-radius: 16px;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-top: 6px solid var(--color-pink);
}

.quote-modal.active .modal-card {
    transform: scale(1);
}

.modal-header-bar {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-bar h2 {
    font-size: 22px;
    margin: 0;
}

.modal-header-bar p {
    font-size: 12px;
    color: var(--color-text-light);
    margin: 0;
}

.modal-close-btn {
    font-size: 20px;
    cursor: pointer;
    color: var(--color-text-light);
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--color-pink);
}

/* 5-Step Form Layout */
.modal-form-body {
    padding: 25px 30px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInStep 0.4s ease;
}

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

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.form-group-modal {
    margin-bottom: 15px;
}

.form-group-modal label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark-blue);
    margin-bottom: 6px;
}

.form-group-modal input, .form-group-modal select, .form-group-modal textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    font-family: var(--font-body);
    border: 1px solid rgba(15, 56, 120, 0.15);
    border-radius: 8px;
    background-color: var(--color-grey);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group-modal input:focus, .form-group-modal select:focus, .form-group-modal textarea:focus {
    border-color: var(--color-pink);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(232, 61, 140, 0.12);
}

/* File Uploader Step 3 */
.file-upload-zone {
    border: 2px dashed rgba(15, 56, 120, 0.2);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background-color: var(--color-grey);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.file-upload-zone:hover {
    border-color: var(--color-pink);
    background-color: rgba(232, 61, 140, 0.02);
}

.file-upload-zone i {
    font-size: 32px;
    color: var(--color-blue);
    margin-bottom: 12px;
}

.file-upload-zone p {
    font-size: 13px;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.file-upload-zone span {
    font-size: 10px;
    color: var(--color-text-light);
}

.file-list-preview {
    margin-top: 15px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Step 5 Contact Option */
.contact-option-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.radio-label input {
    width: auto;
    accent-color: var(--color-pink);
}

/* Multi-step progress bar */
.modal-progress-bar-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.modal-progress-bar-container::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-grey);
    z-index: 1;
}

.progress-line-fill {
    position: absolute;
    top: 14px;
    left: 0;
    height: 3px;
    background-color: var(--color-pink);
    z-index: 2;
    transition: var(--transition-smooth);
    width: 0%;
}

.progress-step-node {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-grey);
    border: 2px solid rgba(15, 56, 120, 0.1);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    transition: var(--transition-smooth);
}

.progress-step-node.active {
    background-color: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(232, 61, 140, 0.3);
}

.progress-step-node.completed {
    background-color: var(--color-dark-blue);
    border-color: var(--color-dark-blue);
    color: var(--color-white);
}

/* Modal Footer Actions */
.modal-actions-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.modal-actions-footer p {
    font-size: 11px;
    color: var(--color-text-light);
    max-width: 300px;
}

.modal-action-buttons {
    display: flex;
    gap: 10px;
}

/* Live Chat Widget (Bottom Right) */
.live-chat-panel {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
}

.chat-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-pink);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(232, 61, 140, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-toggle-btn:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 10px 30px rgba(232, 61, 140, 0.5);
}

.chat-window-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
    border-top: 4px solid var(--color-pink);
    transform-origin: bottom right;
}

.chat-window-box.active {
    display: flex;
    animation: chatOpen 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes chatOpen {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.chat-header {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header-avatar {
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-pink);
}

.chat-header-text h4 {
    color: var(--color-white);
    font-size: 13px;
    font-family: var(--font-body);
    margin: 0;
}

.chat-header-text span {
    font-size: 10px;
    opacity: 0.8;
}

.chat-messages-area {
    padding: 15px;
    height: 220px;
    overflow-y: auto;
    background-color: var(--color-grey);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    max-width: 80%;
    line-height: 1.4;
}

.chat-bubble.admin-chat {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.chat-bubble.user-chat {
    background-color: var(--color-pink);
    color: var(--color-white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input-form {
    display: flex;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 10px;
}

.chat-input-form input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 12px;
    padding: 8px;
}

.chat-input-form button {
    background: none;
    border: none;
    color: var(--color-pink);
    font-size: 16px;
    padding: 0 10px;
    cursor: pointer;
}

/* Service Detail View Layout Styles */
.detail-banner {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-blue) 100%);
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
}

.detail-banner h1 {
    color: var(--color-white);
    font-size: 40px;
    margin-bottom: 10px;
}

.detail-banner p {
    font-size: 14px;
    opacity: 0.8;
}

.detail-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.detail-main-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.detail-main-content p {
    font-size: 14px;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-sidebar-box {
    background-color: var(--color-grey);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--color-pink);
}

.detail-sidebar-box h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-content p {
        margin: 0 auto 30px auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-follow {
        justify-content: center;
    }
    .hero-image-wrapper {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    .areas-container {
        flex-direction: column;
    }
    .areas-info {
        text-align: center;
    }
    .areas-list {
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .tagline-container {
        flex-direction: column;
        text-align: center;
    }
    .tagline-checklist {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
    }
    .nav-menu {
        display: none;
        width: 100%;
    }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        padding: 20px 25px;
        gap: 12px;
        align-items: flex-start;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }
    .nav-menu.active li {
        width: 100%;
        margin: 0;
    }
    .nav-menu.active .nav-link-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        font-size: 15px;
        color: var(--color-dark-blue);
    }
    .nav-menu.active .nav-link-btn::after {
        display: none;
    }
    /* Mobile Dropdown styles */
    .nav-item-dropdown {
        width: 100%;
    }
    .nav-item-dropdown .dropdown-menu-list {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: var(--color-grey);
        border-radius: 8px;
        padding: 5px 0;
        margin-top: 5px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .nav-item-dropdown.open .dropdown-menu-list {
        display: block;
    }
    .nav-item-dropdown .dropdown-menu-list li a {
        padding: 10px 20px;
        font-size: 13px;
        color: var(--color-text-dark);
        display: block;
    }
    /* SVG Logo max dimensions on mobile */
    .logo-icon-svg {
        width: 45px !important;
        height: 45px !important;
    }
    .logo-text h1 {
        font-size: 18px !important;
    }
    .logo-text span {
        font-size: 8px !important;
    }
    /* Mobile slider height adjustment to prevent vertical distortion */
    .hero-slider, .hero-image-container img {
        height: 280px !important;
    }
    .hero-chat-widget {
        bottom: -10px;
        left: 10px;
        padding: 8px 12px;
        max-width: 200px;
    }
    .navbar-actions {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .detail-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin: 30px auto !important;
    }
    .service-detail-image {
        height: 250px !important;
    }
}

/* ==========================================================================
   GOOGLE REVIEWS SLIDER WIDGET
   ========================================================================== */
.google-reviews-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.reviews-wrapper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.reviews-summary-card {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
}

.reviews-summary-card .excellent-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.reviews-summary-card .summary-stars {
    display: flex;
    gap: 4px;
    color: #fbaf08;
    font-size: 24px;
    margin-bottom: 12px;
}

.reviews-summary-card .based-reviews {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.reviews-summary-card .google-logo-svg {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Product Sans', 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 1px;
    letter-spacing: -1px;
}

.reviews-summary-card .google-logo-svg .g-blue { color: #4285F4; }
.reviews-summary-card .google-logo-svg .o-red { color: #EA4335; }
.reviews-summary-card .google-logo-svg .o-yellow { color: #FBBC05; }
.reviews-summary-card .google-logo-svg .l-green { color: #34A853; }

.reviews-carousel-slider {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
}

/* Track container needs hidden overflow to crop sliding cards */
.reviews-carousel-slider-window {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 0;
}

.reviews-carousel-slider-window::-webkit-scrollbar {
    display: none;
}

.reviews-slider-track {
    display: flex;
    gap: 20px;
}

.google-review-card {
    flex: 0 0 340px;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
    width: 100%;
}

.review-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.review-avatar-letter {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-body);
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.review-time {
    font-size: 11px;
    color: #95a5a6;
    margin: 0;
}

.review-g-icon {
    margin-left: auto;
    align-self: flex-start;
    padding-top: 2px;
}

.review-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars-row {
    display: flex;
    gap: 2px;
    color: #fbaf08;
    font-size: 14px;
}

.verified-badge {
    color: #1a73e8;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.review-card-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.review-message {
    font-size: 13px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-size: 12px;
    font-weight: 600;
    color: #7f8c8d;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.2s ease;
}

.read-more-link:hover {
    color: #1a73e8;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--color-dark-blue);
}

.slider-btn:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
    border-color: var(--color-pink);
    box-shadow: 0 6px 16px rgba(232, 61, 140, 0.3);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.slider-btn:disabled, .slider-btn.disabled {
    opacity: 0;
    pointer-events: none;
}

/* Media Queries */
@media (max-width: 991px) {
    .google-review-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .reviews-wrapper-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .reviews-summary-card {
        flex: 1;
        align-items: center;
        text-align: center;
        padding-bottom: 0;
    }
    
    .prev-btn {
        left: -10px;
    }
    
    .next-btn {
        right: -10px;
    }
}

/* ==========================================================================
   SCROLLING ANNOUNCEMENT BAR (TICKER)
   ========================================================================== */
.scrolling-ticker-bar {
    background-color: var(--color-pink); /* Pink background */
    overflow: hidden;
    white-space: nowrap;
    padding: 3px 0px;
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: inset 0 -1px 3px rgba(0,0,0,0.05);
}

.ticker-content-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 100%;
    animation: ticker-animation 30s linear infinite;
}

.ticker-text {
    font-family: var(--font-body), sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff; /* White color */
    padding: 0 40px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1;
}

.ticker-separator {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.6;
}

@keyframes ticker-animation {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
