/* ===================================
   Pennsylvania House - Professional CSS
   Color Scheme: Navy Blue & Gold
   =================================== */

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #d97706;
    --accent-color: #b45309;
    --dark-navy: #0f172a;
    --light-navy: #334155;
    --gold: #fbbf24;
    --light-gold: #fde68a;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --success: #10b981;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-gold: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===================================
   Header Top Bar
   =================================== */
.header-top {
    background: var(--dark-navy);
    padding: 12px 0;
    font-size: 0.9rem;
}

.header-contact a {
    background: var(--gradient-gold);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.header-contact a:hover {
    background-color: #fff;
    color: var(--gold);
}

.header-contact i {
    color: var(--gold);
    margin-right: 8px;
}

.header-social span {
    color: var(--white);
    margin-right: 15px;
    font-weight: 500;
}

.header-social a {
    color: var(--white);
    margin-left: 12px;
    font-size: 1rem;
}

.header-social a:hover {
    color: var(--gold);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--white);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.brand-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
}

.brand-content {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-size: 1.3rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--gray-800);
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(30, 58, 138, 0.05);
}

.btn-nav-cta {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-nav-cta:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
/* ===================================
   Navbar Dropdown — Universal
   =================================== */
.navbar .dropdown-menu {
    min-width: 240px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 10px;
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.navbar .dropdown-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    padding: 6px 18px 8px;
}

.navbar .dropdown-menu .dropdown-item {
    font-size: 0.88rem;
    padding: 8px 18px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.navbar .dropdown-menu .dropdown-item i {
    color: var(--gold);
    font-size: 0.75rem;
    width: 14px;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(217, 119, 6, 0.08);
    color: var(--primary-color);
    padding-left: 22px;
}

.navbar .dropdown-menu .dropdown-divider {
    margin: 6px 12px;
    border-color: rgba(0, 0, 0, 0.08);
}

.navbar .dropdown-menu .dropdown-item.view-all {
    font-weight: 600;
    color: var(--primary-color);
}

.navbar .dropdown-menu .dropdown-item.view-all:hover {
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 6px;
    margin: 0 8px;
    padding-left: 14px;
    width: calc(100% - 16px);
}

.navbar .dropdown-menu .dropdown-item.view-all i {
    color: inherit;
}

/* Dropdown toggle chevron rotation */
.navbar .dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}
.navbar .dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        box-shadow: none;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.03);
        margin: 4px 0 8px;
        position: static;
        max-height: none;
        overflow-y: visible;
        z-index: auto;
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        padding-left: 18px;
    }
}
@media (max-width: 991px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
}
/* ===================================
   Hero Slider
   =================================== */
/* ===================================
   Hero Slider
   =================================== */
.hero-slider-section {
    position: relative;
    margin-top: 0;
	overflow: hidden;
}

.carousel-item {
    height: 750px;
    position: relative;
}

.slider-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.slider-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(30,58,138,0.45) 100%);
    z-index: 1;
}

/* ── NEW: wrapper that sits both text & form side by side ── */
.hero-inner-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    /* leave room for the fixed form panel on the right */
    padding-right: 420px;
    /* padding-top: 100px; */
    padding-bottom: 40px;
}

.carousel-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

/* ── FORM OVERLAY: outside carousel, positioned over section ── */
.hero-form-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 20px 0;
    pointer-events: none; /* let clicks pass through to carousel arrows */
}

.hero-form-card {
    pointer-events: all; /* re-enable for the card itself */
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-height: calc(750px - 40px);
    overflow-y: auto;
    padding: 0;
}
.btn-primary-lg {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    box-shadow: var(--shadow-lg);
    display: inline-block;
}

.btn-primary-lg:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.4);
}

.btn-outline-light-lg {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    display: inline-block;
}

.btn-outline-light-lg:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}
.hero-form-card::-webkit-scrollbar {
    width: 4px;
}
.hero-form-card::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.form-card-header {
    background: var(--gradient-primary);
    color: #fff;
    padding: 18px 22px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.form-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.form-card-header p {
    font-size: 0.82rem;
    margin: 0;
    opacity: 0.88;
}

.quick-offer-form {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.quick-offer-form .form-group {
    margin: 0;
}

.quick-offer-form .form-control,
.quick-offer-form .form-select {
    font-size: 0.82rem;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
}

.quick-offer-form .form-control:focus,
.quick-offer-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.15);
    outline: none;
}

.quick-offer-form textarea.form-control {
    resize: none;
}

.quick-offer-form .form-check-label {
    font-size: 0.78rem;
    color: #555;
}

.btn-form-submit {
    background: var(--gradient-gold);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217,119,6,0.4);
}

.form-privacy {
    font-size: 0.72rem;
    color: #888;
    text-align: center;
    margin: 6px 0 0;
}
@media (min-width: 1101px) {
    .hero-form-overlay {
        right: 50px; /* was 0 — gives space for the carousel arrow */
    }

    .hero-inner-wrapper {
        padding-right: 470px; /* was 420px — adjust to match new form position */
    }
}.hero-form-overlay {
    z-index: 10; /* lower from 100 */
}
.carousel-control-prev {
    left: 0 !important;
    width: 50px;
    z-index: 30 !important;
}

.carousel-control-next {
    right: 0 !important;
    width: 50px;
    z-index: 30 !important;
}
/* ── Slider text styles (unchanged) ── */
.slider-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.carousel-content h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.carousel-content .lead {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.slider-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.slider-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.carousel-indicators button {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}

.carousel-indicators button.active {
    background: var(--gold);
    width: 35px;
    border-radius: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px; height: 50px;
    background-color: rgba(217,119,6,0.9);
    border-radius: 50%;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet: form goes below slider */
@media (max-width: 1100px) {
    .hero-inner-wrapper {
        padding-right: 20px;
        justify-content: center;
        text-align: center;
    }

    .carousel-content {
        max-width: 100%;
    }

    .slider-buttons,
    .slider-features {
        justify-content: center;
    }

    .hero-form-overlay {
        position: relative;
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }

    .hero-form-card {
        max-width: 680px;
        max-height: none;
    }

    .carousel-item {
        height: auto;
        min-height: 600px;
    }

    .hero-slider-section {
        display: flex;
        flex-direction: column;
    }

    /* Move the carousel to be a block, form stacks below */
    #heroSlider {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    #heroSlider,
    #heroSlider .carousel-inner,
    #heroSlider .carousel-item,
    .carousel-item {
        height: auto !important;
        min-height: unset !important;
    }

    .slider-image {
        position: absolute !important;
        height: 100% !important;
    }

    .hero-inner-wrapper {
        position: relative;
        z-index: 2;
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content .lead {
        font-size: 0.95rem;
    }

    .form-row-split {
        grid-template-columns: 1fr;
    }

    .btn-primary-lg,
    .btn-outline-light-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}
.stats-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.stats-section .row > [class*="col-"] {
    display: flex;
    flex: 0 0 25% !important;
    max-width: 25% !important;
    padding-right: 15px;
    padding-left: 15px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-color);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    box-sizing: border-box;
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-top-color: var(--secondary-color);
}
.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}
.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Equal height rows */
.stats-section .row {
    align-items: stretch;
}
.stats-section .col-lg-3,
.stats-section .col-md-6 {
    display: flex;
}
@media (max-width: 991px) {
    .stats-section {
        display: none;
    }
}
/* ===================================
   Section Headers
   =================================== */
.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(217, 119, 6, 0.1));
    color: var(--secondary-color);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 60px 0;
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(30, 58, 138, 0.03) 10px, rgba(30, 58, 138, 0.03) 20px);
    border-radius: 20px;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--gradient-gold);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 3;
}

.badge-content h4 {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.badge-content p {
    color: var(--white);
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.about-shape-1,
.about-shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.about-shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.2), rgba(251, 191, 36, 0.2));
    top: -30px;
    right: -30px;
}

.about-shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.2));
    bottom: 50px;
    left: -20px;
}

.about-content {
    padding-left: 40px;
}

.founder-info {
    margin-bottom: 30px;
}

.founder-name {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--gray-600);
}

.founder-quote {
    border-left: 4px solid var(--gold);
    padding-left: 25px;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 30px;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
}

.credential-item {
    background: var(--light-bg);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.credential-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    padding: 60px 0;
    background: var(--white);
}

.process-step {
    background: var(--light-bg);
    padding: 50px 35px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    border: 3px solid transparent;
}

.process-step:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.step-icon-wrapper {
    margin-bottom: 30px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.8rem;
    margin: 0 auto;
}

.process-step h3 {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-features i {
    color: var(--success);
    font-size: 1.1rem;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -60px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-filter {
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--white);
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin: 5px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.gallery-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(217, 119, 6, 0.90));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

.gallery-link:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.gallery-content h4 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: 60px 0;
    background: var(--white);
}

.testimonial-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.testimonial-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.testimonial-info h4 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-quote-icon {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(217, 119, 6, 0.1);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-box {
    background: var(--gradient-primary);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
}

.cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
}

.cta-feature i {
    color: var(--gold);
    font-size: 1.3rem;
}

.cta-phone-number {
    display: block;
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.cta-phone-number:hover {
    color: var(--white);
}

.btn-cta-primary {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    box-shadow: var(--shadow-lg);
    display: inline-block;
}

.btn-cta-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 60px 0;
    background: var(--white);
}
.contact-info-wrapper {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 20px;
    height: 100%;
}
.contact-title {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
}
.contact-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-info-list {
    margin-bottom: 40px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}
.contact-info-content h5 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 8px;
}
.contact-info-content p,
.contact-info-content a {
    font-size: 1rem;
    color: var(--gray-600);
    margin: 0;
}
.contact-info-content a:hover {
    color: var(--primary-color);
}
.contact-social h5 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* Form Wrapper */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Regular & Floating Form Controls */
.contact-form .form-control,
.contact-form .form-select,
.contact-form select.form-control {
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form select.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.15);
    background: var(--white);
}

/* Floating Labels */
.contact-form .form-floating > label {
    color: var(--gray-600);
    font-size: 0.95rem;
    padding: 15px 20px;
}
.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-floating > .form-select ~ label {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Form Labels */
.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 10px;
    display: block;
    font-size: 0.98rem;
}
.form-group label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 10px;
    display: block;
}

/* Radio & Checkbox */
.contact-form .form-check {
    padding-left: 1.8rem;
    margin-bottom: 8px;
}
.contact-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 2px solid var(--gray-200);
    cursor: pointer;
}
.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.contact-form .form-check-label {
    font-size: 0.98rem;
    color: var(--gray-600);
    cursor: pointer;
    padding-left: 6px;
}

/* Section Headers */
.form-section-header {
    background: var(--gradient-primary);
    padding: 14px 20px;
    border-radius: 10px;
    margin: 30px 0 20px;
}
.form-section-header h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}
.form-section-header h4 i {
    margin-right: 8px;
}

/* Textarea */
.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.btn-submit-form {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    margin-top: 10px;
}
.btn-submit-form:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Privacy Text */
.form-privacy-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.form-privacy-text i {
    color: var(--success);
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    .contact-info-wrapper {
        padding: 30px 20px;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo i {
    color: var(--gold);
    font-size: 2rem;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.footer-widget h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===================================
   Scroll to Top
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    cursor: pointer;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1199px) {
    .step-connector {
        display: none;
    }
}

@media (max-width: 991px) {
    .carousel-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-badge {
        position: static;
        margin-top: 30px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .header-top {
        text-align: center;
    }
    
    .header-contact a {
        display: block;
        margin: 8px 0;
    }
    
    .header-social {
        margin-top: 15px;
    }
    
    .carousel-item {
        height: 600px;
    }
    
    .carousel-content {
        padding-top: 100px;
    }
    
    .carousel-content h1 {
        font-size: 2.2rem;
    }
    
    .carousel-content .lead {
        font-size: 1.1rem;
    }
    
    .slider-buttons {
        flex-direction: column;
    }
    
    .btn-primary-lg,
    .btn-outline-light-lg {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-phone-number {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
}