/* ===== CSS Variables ===== */
:root {
    --primary: #0084d1;
    /* Cerulean Blue from Logo */
    --primary-dark: #0066a3;
    --primary-light: #e6f4fd;
    --secondary: #4b5563;
    --dark: #1f2937;
    --darker: #111827;
    --light: #f9fafb;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow-rich: 0 10px 40px rgba(0, 0, 0, 0.04), 0 20px 80px rgba(0, 132, 209, 0.08);
}


/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 140, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 140, 204, 0.5);
}

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


.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.full-width {
    width: 100%;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 40px;
    /* Offset for promo banner */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}


.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 12px 0;
    top: 0;
    /* Move to top when scrolled */
}


.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    min-height: 80px;
    max-width: 100% !important;
    padding: 0 40px !important;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}


.navbar.scrolled .logo img {
    height: 60px;
}


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

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--darker);
    position: relative;
    white-space: nowrap;
}


.navbar.scrolled .nav-link {
    color: var(--dark);
}

.nav-link:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-link.cta-btn {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 140, 204, 0.4);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.nav-phone:hover {
    color: var(--primary-dark);
}

.nav-phone svg {
    color: var(--primary);
}


.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--darker);
    transition: var(--transition);
}


.navbar.scrolled .mobile-menu-btn span {
    background: var(--dark);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.9) 100%);
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: 5%;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--darker);
    margin-bottom: 20px;
    font-weight: 700;
}


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

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--secondary);
    margin-bottom: 40px;
    font-weight: 400;
}


.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 12px;
    animation: bounce 2s infinite;
}


.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    position: relative;
}


.mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        top: 6px;
    }

    50% {
        opacity: 0.3;
        top: 16px;
    }
}

/* Hero Contact Pill */
.hero-contact-wrapper {
    margin-top: 30px;
}

.hero-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
}

.hero-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

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

.icon-circle svg {
    width: 20px;
    height: 20px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 11px;
    color: var(--gray-500) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text .number {
    font-size: 18px;
    color: var(--dark) !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-overlay {
        background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
    }
}

/* ===== Animations ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

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

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

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

/* ===== Page Header ===== */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    color: var(--darker);
}

.page-header h1 span {
    color: var(--primary);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Section Headers ===== */

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Calculator Section ===== */
.calculator {
    padding: 60px 0;
    background: var(--white);
}

/* ===== About Section ===== */
.about {
    padding: 80px 0;
    background: var(--gray-100);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

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

.stat-plus {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 4px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient);
    color: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    font-family: var(--font-heading);
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

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

.service-card.featured {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 140, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-card.featured .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-link span {
    transition: var(--transition);
}

.service-link:hover span {
    transform: translateX(4px);
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 80px 0;
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-category {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 80px 0;
    background: var(--gray-50);
}


.testimonials .section-tag,
.testimonials .section-title {
    color: var(--darker);
}


.testimonials .section-title span {
    color: var(--primary);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease-out;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-card-hover);
}


.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}


.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.author-info strong {
    color: var(--darker);
    display: block;
    font-size: 15px;
}


.author-info span {
    color: var(--gray-500);
    font-size: 13px;
}

/* ===== Section Divider V2 ===== */
.section-divider-v2 {
    height: 100px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

/* ===== Modern Section Dividers ===== */
.section-divider {
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Gradient Line Divider */
.divider-gradient {
    background: var(--white);
}

.divider-gradient::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), var(--primary), var(--primary-light), transparent);
    border-radius: 2px;
}

/* Dot Divider */
.divider-dots {
    background: var(--white);
    gap: 12px;
}

.divider-dots::before,
.divider-dots::after {
    content: '';
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200));
}

.divider-dots::after {
    background: linear-gradient(90deg, var(--gray-200), transparent);
}

.divider-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
}

/* Wave Divider */
.divider-wave {
    height: 40px;
    background: var(--white);
}

.divider-wave::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-200) 20%, var(--gray-200) 80%, transparent 100%);
}

/* Diamond Divider */
.divider-diamond {
    background: var(--white);
}

.divider-diamond::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    transform: rotate(45deg);
    opacity: 0.5;
}

.divider-diamond::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
    left: 50%;
    transform: translateX(-50%);
}

/* ===== Contact Section ===== */
.contact {
    padding: 60px 0 80px;
    position: relative;
    background-color: var(--gray-50);
    background-image:
        radial-gradient(var(--primary-light) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.contact-divider {
    width: 2px;
    height: 450px;
    background: linear-gradient(to bottom, transparent, var(--primary), var(--primary-dark), transparent);
    box-shadow: 0 0 30px rgba(0, 132, 209, 0.6);
    border-radius: 50%;
    opacity: 1;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.2;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-info>p {
    margin-bottom: 40px;
    font-size: 1.05rem;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 140, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 15px rgba(0, 132, 209, 0.2);
}

.contact-item:hover .contact-icon svg {
    color: var(--white);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.04),
        0 20px 80px rgba(0, 132, 209, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-light) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 26px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    color: var(--dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 132, 209, 0.15);
    transform: translateY(-4px) scale(1.01);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    grid-column: span 2;
    margin-top: 10px;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-100);
    padding: 80px 0 0;
    color: var(--secondary);
    border-top: 1px solid var(--gray-200);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 10px;
    line-height: 1.8;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 24px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    width: auto;
    filter: none;
}

.footer-brand p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.social-links svg {
    width: 20px;
    height: 20px;
    margin-bottom: 0;
}

.footer-links h4 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
    padding-left: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: var(--gray-500);
    font-size: 14px;
    background: transparent;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary), transparent);
    }

    .about-image {
        order: -1;
    }

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

    .gallery-item.large {
        grid-row: span 1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1100px) {
    .nav-container {
        justify-content: center;
        position: relative;
        min-height: 70px;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-menu .nav-link {
        color: var(--dark);
        font-size: 18px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: absolute;
        right: 24px;
    }

    .mobile-menu-btn.active span {
        background: var(--dark);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full,
    .contact-form button {
        grid-column: span 1;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 24px;
    }

    .footer-brand p {
        margin: 0 auto 30px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .experience-badge {
        position: static;
        margin-top: -30px;
        margin-left: auto;
        margin-right: auto;
        max-width: 150px;
    }
}



/* ===== WhatsApp Floating Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* ===== Interactive How We Work Section ===== */
.process {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.how-it-works-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.process-steps-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-nav-item {
    padding: 25px 30px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.step-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.step-nav-item:hover {
    background: var(--white);
    transform: translateX(10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-card);
}

.step-nav-item.active {
    background: var(--white);
    transform: translateX(15px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

.step-nav-item.active::before {
    transform: scaleY(1);
}

.step-info {
    display: flex;
    flex-direction: column;
}

.step-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.step-nav-item h3 {
    font-size: 1.25rem;
    color: var(--darker);
    margin-bottom: 8px;
    font-weight: 700;
}

.step-nav-item p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.5;
}

.process-visual-display {
    position: relative;
}

.glass-frame {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 15px;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 1/1;
    overflow: hidden;
}

.step-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-main-image.fade {
    opacity: 0;
    transform: scale(0.95);
}

.visual-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .how-it-works-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-visual-display {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 80px 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.package-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--darker);
    margin-bottom: 20px;
}

.package-price span {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 12px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.package-features li svg {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===== FAQ Section ===== */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    font-weight: 600;
    color: var(--darker);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--secondary);
    line-height: 1.6;
    display: none;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* ===== Map Section ===== */
.map {
    padding-bottom: 0;
}

.map-container {
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Smart Cost Calculator ===== */
.calculator {
    padding: 80px 0 10px;
    background: var(--white);
}

.calc-container {
    max-width: 900px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: var(--darker);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.range-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.range-wrap input[type="range"] {
    flex-grow: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: 5px;
    appearance: none;
    outline: none;
}

.range-wrap input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.input-val {
    min-width: 60px;
    padding: 5px 10px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
}

.package-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Custom Select Dropdown for Floors */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    background: var(--white);
    color: var(--darker);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    transition: var(--transition);
}

.custom-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.pkg-opt {
    padding: 12px;
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.pkg-opt.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.pkg-opt span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
}

.pkg-opt.active span {
    color: var(--primary);
}

.calc-display {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px dashed var(--primary-light);
}

.estimate-label {
    font-size: 0.9rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#total-estimate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.total-sqft {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.calc-note {
    font-size: 0.75rem;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.4;
    opacity: 0.8;
}

/* ===== Live Project Status ===== */
.project-status {
    padding: 80px 0;
    background: var(--gray-50);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.status-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.status-img-wrap {
    position: relative;
    height: 240px;
}

.status-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-content {
    padding: 25px;
}

.status-location {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.status-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 15px;
}

.progress-bar-wrap {
    height: 8px;
    background: var(--gray-100);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    transition: width 1s ease-out;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--secondary);
}

@media (max-width: 991px) {
    .calc-container {
        grid-template-columns: 1fr;
    }

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

/* ===== Urgency Banner ===== */
.promo-banner {
    background: var(--gradient);
    color: var(--white);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}


.promo-banner span {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    margin-right: 12px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== Comparison Table ===== */
.comparison {
    padding: 80px 0;
    background: var(--white);
}

.comp-table-wrap {
    margin-top: 30px;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comp-table th,
.comp-table td {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-100);
}

.comp-table th {
    background: var(--gray-50);
    color: var(--darker);
    font-weight: 700;
    font-size: 1.15rem;
    text-align: center;
    vertical-align: middle;
    padding: 25px;
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-feature {
    font-weight: 600;
    color: var(--darker);
    width: 30%;
}

.comp-liza {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    width: 35%;
    text-align: center;
}

.comp-others {
    color: var(--secondary);
    width: 35%;
    text-align: center;
}

.check-icon {
    color: #10b981;
    margin-right: 8px;
}

.cross-icon {
    color: #ef4444;
    margin-right: 8px;
}

/* ===== Cost Breakdown Section ===== */
.cost-breakdown {
    padding: 60px 0;
    background: var(--gray-100);
}

.breakdown-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.breakdown-chart {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.breakdown-item {
    width: 100%;
}

.bd-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--darker);
}

.bd-val {
    color: var(--primary);
    font-weight: 700;
}

.bd-bar-bg {
    width: 100%;
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.bd-desc {
    font-size: 13px;
    color: var(--secondary);
    margin: 0;
}

.bd-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    /* Width will be controlled via inline style/JS */
}

.trust-badges-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-badge {
    background: var(--primary-light);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 132, 209, 0.1);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.trust-badge svg {
    color: var(--primary);
    margin-bottom: 12px;
}

.trust-badge h4 {
    margin-bottom: 4px;
    color: var(--darker);
}

.trust-badge p {
    font-size: 14px;
    color: var(--secondary);
    margin: 0;
}

@media (max-width: 991px) {
    .breakdown-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-badges-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Lead Magnet (Newsletter/Download) ===== */
.lead-magnet {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.magnet-container {
    max-width: 700px;
    margin: 0 auto;
}

.magnet-container h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.magnet-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.magnet-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
}

.magnet-form button {
    background: var(--darker);
    color: var(--white);
}

/* ===== Video Section ===== */
.video-trust {
    padding: 80px 0;
    background: var(--gray-50);
}

.video-container {
    max-width: 900px;
    margin: 30px auto 0;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('public/bengaluru-construction.webp') center/cover;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.play-btn svg {
    width: 32px;
    height: 32px;
}

/* ===== Instagram Reels Section ===== */
.instagram-reels {
    padding: 80px 0;
    background: var(--white);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
    justify-items: center;
    min-height: 400px;
    /* Prevent collapse during load */
}

.reel-embed-wrapper {
    width: 100%;
    max-width: 328px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.reel-embed-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.reel-embed-wrapper iframe {
    border-radius: 16px !important;
    margin: 0 !important;
}

/* Outdated custom reel styles removed */

.instagram-cta {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reels-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ Layout & Load More ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.faq-load-more {
    display: none;
    text-align: center;
    margin-top: 30px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

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

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-load-more {
        display: block;
        /* Show only on mobile/tablet */
    }
}

/* ===== Modern Light Theme Footer ===== */
.footer {
    padding: 100px 0 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 132, 209, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 132, 209, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    padding-right: 20px;
}

.footer-brand img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 20px 0 25px;
    color: #64748b;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #00a3ff 100%);
    color: #ffffff;
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 132, 209, 0.25);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    padding-top: 5px;
}

.footer-links h4 {
    color: var(--darker);
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 2px;
}

.footer-links a,
.footer-links span {
    display: inline-flex;
    align-items: center;
    color: #64748b;
    margin-bottom: 14px;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    text-decoration: none;
    width: 100%;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    margin-right: 0;
    transition: all 0.25s ease;
    border-radius: 2px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: 8px;
}

.footer-links span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-300) 20%, var(--primary) 50%, var(--gray-300) 80%, transparent 100%);
}

.footer-bottom p {
    margin: 0;
    font-weight: 500;
}

/* Service Card Shadow Update */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    transition: all 0.2s ease-out;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-card-hover);
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-brand p {
        margin: 20px auto 25px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a,
    .footer-links span {
        justify-content: center;
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}

/* ===== Blog Post Styling ===== */
.breadcrumb-nav {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-list a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-list .separator {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--text-dark);
    font-weight: 500;
}

.post-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-light) 100%) !important;
    padding: 140px 0 60px;
}

.post-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--darker);
    line-height: 1.3;
}

.post-meta {
    font-size: 0.95rem;
    opacity: 0.8;
}

.post-meta .tags {
    color: var(--primary);
    font-weight: 500;
}

/* Blog Content Prose Styling */
.prose {
    color: var(--secondary);
}

.prose h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--darker);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.prose strong {
    color: var(--darker);
    font-weight: 600;
}

/* Remove horizontal rules - replace with spacing */
.prose hr {
    display: none;
}

/* Modern list styling */
.prose ul,
.prose ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    position: relative;
}

.prose ul li::marker {
    color: var(--primary);
}

.prose ol li::marker {
    color: var(--primary);
    font-weight: 600;
}

/* Blockquotes */
.prose blockquote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--dark);
}

/* Code blocks */
.prose code {
    background: var(--gray-100);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--primary-dark);
}

.prose pre {
    background: var(--darker);
    color: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.prose pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* Links */
.prose a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--primary-light);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.prose a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary);
}

/* Tables */
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.prose th,
.prose td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.prose th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.prose tr:nth-child(even) {
    background: var(--gray-50);
}

/* Post footer */
.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200) !important;
}

.post-footer .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.post-footer .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== Blog Index Page ===== */
.blog-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    text-align: center;
}

.blog-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    color: var(--darker);
}

.blog-header h1 span {
    color: var(--primary);
}

.blog-header p {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

/* Blog Search */
.blog-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.blog-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 132, 209, 0.15);
}

.blog-search input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.blog-search input::placeholder {
    color: var(--gray-400);
}

.blog-search button {
    padding: 16px 24px;
    background: var(--gradient);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.blog-search button:hover {
    background: var(--primary-dark);
}

/* Blog Feed Section */
.blog-feed {
    padding: 80px 0;
    background: var(--gray-50);
}

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

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-light);
}

.blog-card-image {
    margin: -30px -30px 24px;
    height: 220px;
    overflow: hidden;
    background: #004a77;
    /* Deep blue matching the image theme */
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.blog-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--darker);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-desc {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-card-link:hover {
    gap: 10px;
}

.blog-card-link span {
    transition: var(--transition);
}

/* No Results State */
.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    color: var(--gray-400);
}

.no-results svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results p {
    font-size: 1.1rem;
}

/* ===== Blog Post Details Page ===== */
.post-body-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: flex-start;
}

.post-content {
    min-width: 0;
    /* Prevents overflow issues */
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px auto;
    display: block;
    box-shadow: var(--shadow);
}

/* Sidebar Styling */
.blog-sidebar {
    position: sticky;
    top: 100px;
    /* Adjust based on sticky header height */
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    margin-bottom: 30px;
}

.sidebar-widget .widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

/* Sidebar Search */
.sidebar-search-form {
    display: flex;
    background: var(--gray-50);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.sidebar-search-form:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 132, 209, 0.1);
}

.sidebar-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font-size: 0.95rem;
    outline: none;
    color: var(--dark);
}

.sidebar-search-form button {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-search-form button:hover {
    background: var(--primary-dark);
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.recent-posts-list a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.recent-posts-list .recent-post-title {
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    font-size: 1rem;
    transition: var(--transition);
}

.recent-posts-list a:hover .recent-post-title {
    color: var(--primary);
}

.recent-posts-list .recent-post-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Tag Cloud Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    padding: 6px 14px;
    background: var(--gray-50);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.tag-pill:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary-light);
}

/* Post Meta Tags Separator */
.tags-separator {
    margin: 0 10px;
    color: var(--gray-300);
}

.post-title-large {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--darker);
    line-height: 1.2;
    margin-bottom: 24px;
}

.post-featured-image {
    margin-top: 40px;
    border-radius: 8px;
    /* Minimal rounding to protect corner logos */
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    background: #004a77;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsive Blog Post */
@media (max-width: 900px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .blog-sidebar {
        order: 2;
        /* Sidebar below content on tablet/mobile */
        position: static;
    }
}

/* Post FAQ Premium Accordion */
.post-faqs {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--gray-100);
}

.post-faqs .section-header {
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    counter-reset: faq-counter;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 132, 209, 0.12);
}

.faq-button {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question-text::before {
    counter-increment: faq-counter;
    content: counter(faq-counter);
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--primary);
    background: var(--primary-light);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

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

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 500px;
    /* Arbitrary large height */
    opacity: 1;
}

.faq-answer-content {
    padding: 0 32px 32px 72px;
    font-size: 1.05rem;
    color: var(--secondary);
    line-height: 1.7;
}

/* Fixed Service Card tooltip styles */
.service-card {
    position: relative !important;
    overflow: visible !important;
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--darker);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: var(--shadow);
}