@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0f4c81;        /* Trusted Classic Royal Blue */
    --primary-light: #e6f0fa;  /* Light blue background tint */
    --primary-dark: #0a335c;   /* Darker blue for deep contrast */
    --accent-orange: #ff6f00;  /* Vibrant Amber/Orange for main Conversion CTA */
    --accent-orange-hover: #e05e00;
    --whatsapp-green: #25d366; /* Official WhatsApp color */
    --whatsapp-hover: #20ba5a;
    --call-blue: #007aff;      /* Call blue */
    --call-hover: #0062cc;
    
    /* Neutral Colors */
    --bg-dark: #0b0f19;        /* Premium Dark Slate */
    --bg-card-dark: #131b2e;   /* Dark Card Background */
    --text-light: #f8fafc;
    --text-muted-light: #94a3b8;
    
    --bg-light: #fdfdfd;       /* Crisp clean page background */
    --bg-card-light: #ffffff;  /* Light Card Background */
    --text-dark: #0f172a;      /* Deep Slate for high-readability text */
    --text-muted-dark: #64748b;/* Muted grey for subheadings */
    --border-light: #e2e8f0;   /* Light gray borders */
    
    /* Typography & Spacing */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --max-width: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(15, 76, 129, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

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

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Section */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Navigation Menu Styling */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 6px 12px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Toggle button hidden on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 6px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.menu-toggle svg line {
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active .line-2 {
    opacity: 0;
}

.menu-toggle.active .line-1 {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .line-3 {
    transform: translateY(-6px) rotate(-45deg);
}

.header-btn {
    background: var(--white);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    background: radial-gradient(circle at 80% 20%, rgba(15, 76, 129, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(255, 111, 0, 0.04) 0%, transparent 40%),
                var(--bg-light);
    padding: 60px 0 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    align-self: flex-start;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-badge span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 111, 0, 0.15);
    z-index: -1;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
}

.trust-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.bullet-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Lead Form Card */
.lead-card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.lead-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-orange));
}

.lead-card-header {
    margin-bottom: 20px;
    text-align: center;
}

.lead-card-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.lead-card-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted-dark);
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #fcfcfc;
}

.form-control:focus {
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--text-muted-dark);
    text-align: center;
    margin-top: 12px;
}

/* Form Success State styling */
.form-success-message {
    text-align: center;
    padding: 40px 10px;
    display: none;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: #d1fae5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

/* Trust Badges Bar */
.trust-badges-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
}

.trust-badges-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon-box {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon-box svg {
    width: 24px;
    height: 24px;
}

.badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.badge-desc {
    font-size: 0.78rem;
    color: var(--text-muted-dark);
}

/* Section Common Styling */
.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted-dark);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 76, 129, 0.2);
}

.service-card:hover::after {
    width: 100%;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-icon {
    width: 54px;
    height: 54px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-price-tag {
    background-color: #f1f5f9;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    flex-grow: 1;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

.service-cta svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.service-card:hover .service-cta svg {
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-img-box {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background-color: #f1f5f9;
}

.why-us-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-us-floating-badge .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-orange);
    font-family: var(--font-heading);
    line-height: 1;
}

.why-us-floating-badge .text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-us-item {
    display: flex;
    gap: 18px;
}

.why-us-icon-wrapper {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.why-us-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-us-desc {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 54px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: dashed var(--border-light);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-num-box {
    width: 68px;
    height: 68px;
    background-color: var(--white);
    border: 3px solid var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .process-num-box {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.process-icon-mini {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background-color: var(--accent-orange);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon-mini svg {
    width: 12px;
    height: 12px;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 0.92rem;
    color: var(--text-muted-dark);
    max-width: 280px;
    margin: 0 auto;
}

/* Testimonials / Reviews Section */
.testimonials-section {
    background-color: #fafbfc;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 20px;
    border-radius: 50px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.6rem;
    font-weight: 800;
}

.rating-stars {
    color: #ffb100;
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.reviews-count {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-muted-dark);
}

.google-icon-wrapper {
    color: #4285f4; /* Google Blue */
    width: 22px;
    height: 22px;
}

.review-body {
    font-size: 0.95rem;
    color: var(--text-main);
    font-style: italic;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(15, 76, 129, 0.3);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    font-size: 1.05rem;
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
    color: var(--text-muted-dark);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    border-top: 0px solid transparent;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* arbitrary high value for smooth auto expansion */
    padding: 0 24px 20px 24px;
    border-top: 1px solid var(--border-light);
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* Map and Contact Details Section */
.contact-section {
    border-top: 1px solid var(--border-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-block-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    background-color: var(--white);
}

.contact-card-icon {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card-heading {
    font-weight: 700;
    font-size: 1.05rem;
}

.contact-card-text {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
}

.contact-card-text a:hover {
    color: var(--primary);
}

/* Styled Map Placeholder for Premium Looks & Speed */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    height: 100%;
    min-height: 380px;
    position: relative;
    background-color: #f1f5f9;
}

.map-embed {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Area */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 130px 0; /* Extra bottom padding for sticky bar */
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--font-heading);
}

.footer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-orange);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted-light);
}

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

.footer-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
}

.footer-hours-list span.day {
    font-weight: 600;
    color: var(--text-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

/* Floating Bottom Sticky Action Bar (Call & WhatsApp) */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid var(--border-light);
    transition: transform 0.4s ease;
}

.sticky-action-bar.hidden {
    transform: translateY(100%);
}

.sticky-btn {
    flex: 1;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sticky-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.sticky-btn.btn-call {
    background: linear-gradient(135deg, var(--call-blue), var(--call-hover));
    box-shadow: 0 4px 14px rgba(0, 122, 255, 0.3);
}

.sticky-btn.btn-call:hover {
    box-shadow: 0 6px 18px rgba(0, 122, 255, 0.4);
    transform: translateY(-2px);
}

.sticky-btn.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-hover));
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.sticky-btn.btn-whatsapp:hover {
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Gallery Section Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    background-color: #f1f5f9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.4) 60%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-text {
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-text h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery-text p {
    color: var(--text-muted-light);
    font-size: 0.88rem;
}

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

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

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

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

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner-container {
    position: relative;
    z-index: 2;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-badge {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-banner-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
}

.cta-banner-content p {
    color: var(--text-muted-light);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 10px;
}

.cta-banner-buttons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
    transition: var(--transition);
}

.banner-btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 111, 0, 0.4);
}

.banner-btn-primary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.banner-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Animations */
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-slideup {
    animation: slideUp 0.6s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .trust-bullets {
        justify-content: center;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-img-box {
        order: 2;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --border-radius: 12px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-grid::before {
        display: none; /* Hide line on vertical stack */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-bottom: 1.5px solid var(--border-light);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px;
        gap: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.05rem;
        padding: 14px 0;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-btn {
        display: block;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .cta-banner {
        padding: 50px 20px;
    }
    
    .cta-banner-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .banner-btn-primary, .banner-btn-secondary {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .lead-card {
        padding: 20px;
    }
    
    .trust-bullets {
        grid-template-columns: 1fr;
    }
    
    .sticky-action-bar {
        padding: 10px;
        gap: 10px;
    }
    
    .sticky-btn {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .sticky-btn svg {
        width: 16px;
        height: 16px;
    }
}
