:root {
    --primary-red: #a32a29;
    --dark-navy: #051024;
    --text-gray: #b0b0b0;
    --dark-blue: #11284d;
    --playfair: "Playfair Display", serif;
    --caveat: "Caveat", cursive;
    --inter: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--inter);
    /* background-color: var(--dark-navy); */
    color: white;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background: white;
    padding: 15px 50px;
}

.navbar-brand img {
    height: 50px;
    /* Adjust based on your logo */
}

.nav-link {
    color: #333 !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
}

.phone-link {
    color: #333 !important;
    font-weight: 600;
    margin-right: 20px;
}

.btn-start-nav {
    background-color: var(--primary-red);
    color: white !important;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-image: url("../images/banner.png");
    background-size: cover;
    background-position: right center;
    display: flex;
    align-items: center;
}

/* Dark Gradient Overlay with Grid */
/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(5, 16, 36, 1) 0%,
        rgba(5, 16, 36, 0.9) 40%,
        rgba(5, 16, 36, 0.2) 100%
    );
    z-index: 1;
} */

/* Subtle Grid Pattern */
.hero-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.sub-heading {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.main-title {
    font-family: var(--inter);
    font-size: 75px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
}

.main-title span {
    font-family: var(--playfair);
    font-style: italic;
    color: var(--primary-red);
}

.hero-desc {
    font-size: 18px;
    color: #d1d1d1;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Buttons */
.btn-red {
    background-color: var(--primary-red);
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-red:hover {
    background-color: #8a2322;
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: var(--dark-navy);
    text-decoration: none;
}

/* Footer elements in Hero */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    animation: scroll-bounce 1.8s ease-in-out infinite;
    transition: color 0.3s ease, transform 0.3s ease;
}

.scroll-indicator hr {
    display: inline-block;
    width: 40px;
    border-top: 1px solid var(--primary-red);
    margin: 0 10px 0 0;
    vertical-align: middle;
    transition: width 0.3s ease, border-color 0.3s ease;
}

.scroll-indicator i {
    transition: transform 0.3s ease;
}

.scroll-indicator:hover,
.scroll-indicator:focus {
    color: #ffffff;
    text-decoration: none;
    outline: none;
    animation-play-state: paused;
}

.scroll-indicator:hover hr,
.scroll-indicator:focus hr {
    width: 56px;
    border-color: #ffffff;
}

.scroll-indicator:hover i,
.scroll-indicator:focus i {
    transform: translateY(4px);
}

@keyframes scroll-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .scroll-indicator {
        animation: none;
    }
}

.tagline-bottom {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 2;
    font-family: var(--playfair);
    font-style: italic;
    font-size: 24px;
    text-align: right;
    max-width: 350px;
}

@media (max-width: 991px) {
    .main-title {
        font-size: 50px;
    }

    .navbar {
        padding: 10px 20px;
    }

    .tagline-bottom {
        display: none;
    }
}

/* --- NEW SECTION: "What brings you here?" --- */
.services-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.section-title-box {
    padding-right: 30px;
}

.section-title-box h2 {
    font-family: var(--caveat);
    font-size: 48px;
    color: var(--dark-navy);
    line-height: 1.2;
    margin-bottom: 15px;
}

.red-line {
    width: 50px;
    height: 2px;
    background-color: var(--primary-red);
    display: block;
}

/* Card Styles */
.service-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    margin: 10px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #d1d1d1;
}

.card-img-box {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px;
    text-align: center;
}

.card-img-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.card-body-content {
    padding: 30px 25px;
    flex-grow: 1;
}

.card-body-content h3 {
    font-family: var(--playfair);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card-body-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.circle-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    text-decoration: none;
    transition: 0.3s;
}

.service-card:hover .circle-arrow {
    background-color: var(--dark-navy);
    color: white;
    border-color: var(--dark-navy);
}

/* Slider Custom Arrows */
.slick-prev,
.slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slick-prev:before,
.slick-next:before {
    color: var(--dark-navy);
    font-size: 20px;
}

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

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

@media (max-width: 991px) {
    .section-title-box {
        margin-bottom: 40px;
        text-align: center;
    }

    .red-line {
        margin: 0 auto;
    }

    .hero-content {
        padding-left: 20px;
    }

    .main-title {
        font-size: 45px;
    }
}

/* --- JOURNEY SECTION (New Section) --- */
.journey-section {
    background-color: var(--dark-navy);
    padding: 100px 0;
    color: white;
    scroll-margin-top: 90px;
}

.journey-title h2 {
    font-family: "Dancing Script", cursive;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.process-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: left;
    padding: 0 15px;
    position: relative;
}

.step-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 1px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background-color: var(--dark-navy);
    position: relative;
    z-index: 2;
}

.step-icon-wrapper i {
    color: var(--primary-red);
    font-size: 22px;
}

/* Dashed Line Connection */
.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    /* middle of icon */
    left: 75px;
    right: -15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.step-content .step-num {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.step-content h4 {
    font-family: "Playfair Display", serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .process-container {
        flex-direction: column;
    }

    .step-item {
        margin-bottom: 40px;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .hero-content {
        padding-left: 20px;
    }

    .main-title {
        font-size: 45px;
    }
}

/* start designing section */

.form-main-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.handwriting-text {
    font-family: "Dancing Script", cursive;
    font-size: 32px;
    color: var(--dark-navy);
    line-height: 1.2;
}

.form-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
}

.form-row-custom {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.form-icon {
    width: 45px;
    height: 45px;
    background: #f4f6f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    margin-right: 15px;
}

.form-row-custom label {
    flex-grow: 1;
    margin: 0;
    font-weight: 500;
    color: #444;
    font-size: 15px;
}

.custom-select-box {
    width: 180px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 12px;
    color: #333;
    font-size: 14px;
    background: #fff;
    outline: none;
}

/* YES/NO Toggle Buttons */
.toggle-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: 180px;
}

.btn-toggle {
    flex: 1;
    border: none;
    padding: 8px;
    font-size: 13px;
    font-weight: 700;
    background: #fff;
    color: #aaa;
    transition: 0.3s;
}

.btn-toggle.active {
    background: var(--dark-navy);
    color: #fff;
}

/* Round Submit Button */
.round-submit-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(163, 42, 41, 0.3);
    transition: 0.3s;
}

.round-submit-btn:hover {
    transform: scale(1.1);
    background-color: #8a2322;
}

.blueprint-img-box {
    padding: 10px;
    background: #fff;
    position: relative;
}

@media (max-width: 991px) {
    .design-intro-box {
        text-align: center;
        margin-bottom: 40px;
    }

    .form-card {
        margin-bottom: 40px;
    }

    .custom-select-box,
    .toggle-group {
        width: 150px;
    }
}

/* inspire section  */
.inspiration-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 500;
    color: white;
    line-height: 1.2;
    letter-spacing: 1px;
}

.btn-outline-custom {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.inspiration-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px !important;
}

/* Custom Navigation Arrows */
.slider-controls {
    position: absolute;
    bottom: -70px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.insp-prev,
.insp-next {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
    outline: none !important;
}

.insp-prev:hover,
.insp-next:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .inspiration-content {
        text-align: center;
    }

    .inspiration-content .red-line {
        margin: 0 auto;
    }

    .inspiration-content p {
        margin: 0 auto 30px auto;
    }

    .inspiration-card img {
        height: 400px;
    }

    .slider-controls {
        bottom: -60px;
        right: 50%;
        transform: translateX(50%);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.grid-main-title {
    font-family: var(--playfair);
    font-size: 32px;
    font-weight: 500;
    color: white;
    line-height: 1.3;
    letter-spacing: 1px;
}

.main-services-card {
    background-color: #faf9f6;
    /* Off-white warm background like image */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-box {
    padding: 50px 40px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

/* Removing right borders on the last column and bottom borders on last row */
@media (min-width: 768px) {
    .service-box:nth-child(3n) {
        border-right: none;
    }

    .service-box:nth-child(n + 4) {
        border-bottom: none;
    }
}

.icon-sq {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: 18px;
    margin-bottom: 25px;
}

.service-box h4 {
    font-family: var(--playfair);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.service-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-box:hover {
    background-color: #ffffff;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}

@media (max-width: 991px) {
    .services-intro {
        text-align: center;
        margin-bottom: 40px;
    }

    .services-intro .red-line {
        margin: 0 auto 20px;
    }

    .service-box {
        padding: 30px;
        text-align: center;
        border-right: none !important;
    }

    .icon-sq {
        margin: 0 auto 20px;
    }
}

/* journy  */

.sub-heading-small {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.journey-heading {
    font-family: var(--playfair);
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
}

.price-tag {
    color: var(--primary-red);
    font-family: var(--playfair);
    font-style: italic;
    font-size: 32px;
    font-weight: 600;
}

/* Checklist Styles */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-size: 18px;
    color: #d1d1d1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: var(--primary-red);
    font-size: 14px;
    margin-right: 15px;
}

.btn-red-large {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 18px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: 0.3s;
}

.btn-red-large:hover {
    background-color: #8a2322;
    color: white;
    transform: translateY(-2px);
}

/* Torn Paper CSS */
.torn-paper-note {
    background: url("../images/sticky.png") no-repeat center center;
    max-width: 560px;
    background-size: cover;
    padding: 150px 40px;
    height: 420px;
}

.note-inner {
    text-align: center;
    color: var(--dark-navy);
}

.quote-text {
    font-family: var(--caveat);
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.quote-author {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-red);
    letter-spacing: 2px;
}

/* Tape Styles */


@media (max-width: 991px) {
    .journey-heading {
        font-size: 35px;
    }

    .torn-paper-note {
        width: 100%;
        margin-top: 40px;
    }

    .check-list li {
        font-size: 16px;
    }
}

.quote-mark {
    font-size: 30px;
    color: #d1d1d1;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-navy);
    font-weight: 500;
}

.signature-text {
    font-family: var(--caveat);
    font-size: 24px;
    color: var(--dark-navy);
}

.house-feature-img img {
    border-radius: 15px !important;
    object-fit: cover;
    height: 300px;
    width: 100%;
}

/* Stats Styles */
.vertical-divider {
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #ddd;
}

.stat-icon {
    font-size: 22px;
    color: var(--dark-navy);
}

.stat-red-title {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 11px;
    color: #777;
    text-transform: capitalize;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 991px) {
    .testimonial-box {
        text-align: center;
        margin-bottom: 40px;
    }

    .house-feature-img {
        margin-bottom: 40px;
    }

    .stat-red-title {
        font-size: 14px;
    }

    .stat-desc {
        font-size: 10px;
    }
}

.footer-title {
    font-family: var(--playfair);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

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

.footer-links-list li a {
    color: #777;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

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

/* Footer Buttons */
.btn-footer-red {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--primary-red);
    color: white !important;
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
}

.btn-footer-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: transparent;
    color: var(--primary-red) !important;
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.btn-footer-red:hover,
.btn-footer-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Social Circles */
.social-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    margin-left: 10px;
    text-decoration: none !important;
    transition: 0.3s;
    font-size: 14px;
}

.social-circle:hover {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

@media (max-width: 991px) {
    .footer-section {
        text-align: center;
    }

    .social-icon-wrapper {
        justify-content: center !important;
        margin-top: 20px;
    }

    .btn-footer-red,
    .btn-footer-outline {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-title {
        margin-top: 30px;
    }
}
