/* LuxView Premium Styles */

:root {
    --primary-color: #D4AF37;
    /* Gold */
    --primary-dark: #b5952f;
    --text-color: #333333;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --nav-height: 80px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 4px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.mt-2 {
    margin-top: 2rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

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

.btn-outline:hover {
    background-color: var(--text-color);
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 2px;
}

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

.nav-menu .btn {
    padding: 10px 25px;
    font-size: 0.85rem;
    border-radius: 50px;
    /* MORE PREMIUM PILL SHAPE */
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    height: 85vh;
    /* background: url('../images/') no-repeat center center/cover; */
    /* Placeholder logic needed if no image */
    background-color: #333;
    /* Fallback */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Gradient Overlay fallback just in case image is missing */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Cards */
.card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Services Preview */
.service-card {
    padding: 0;
    overflow: hidden;
}

.card-body {
    padding: 25px;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-weight: 700;
    font-family: var(--font-heading);
    display: block;
}

/* Contact/Forms */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Page Headers */
.page-header {
    background-color: #333;
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
}

/* Service Rows */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-row.reverse .service-content {
    order: -1;
}

.service-image {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    /* Placeholder bg or img */
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

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

.info-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: var(--radius);
}

.info-item {
    margin-bottom: 15px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 20px;
}

.footer h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-col p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
    .h1 {
        font-size: 3rem;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .service-row,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-row.reverse .service-content {
        order: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

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

    .menu-toggle {
        display: block;
    }

    .hero {
        height: auto;
        padding: 100px 0;
    }

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

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

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

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Featured Projects */
.project-card {
    padding: 0;
    overflow: hidden;
}

.project-card .card-body {
    padding: 25px;
}

.project-desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
}

.project-details {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #444;
}

.project-details li {
    margin-bottom: 5px;
}

.project-highlight {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-style: italic;
    background-color: #fcfcfc;
    padding: 10px;
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
}

/* Project Gallery */
.project-gallery .section-title-container {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: -10px;
}

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

.gallery-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    background-color: #000;
    /* fall back */
}

/* Aspect Ratio / Image Sizing */
.gallery-image {
    width: 100%;
    height: 300px;
    /* Fixed height for consistency */
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
    /* Zoom effect */
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}

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

.gallery-text {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.gallery-text h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

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

/* Responsive Gallery */
@media (max-width: 960px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Journey Map Redesign */
.journey-map-container {
    position: relative;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

.journey-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 150px;
    transform: translateY(-50%);
    z-index: 0;
}

.journey-line path {
    stroke: #19C2B1;
    /* Teal connector */
    stroke-width: 3px;
    fill: none;
    stroke-dasharray: 10, 10;
    /* Optional: dashed line */
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.journey-step {
    text-align: center;
    width: 200px;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Alternating positioning for wave effect */
.journey-step:nth-child(odd) {
    transform: translateY(-50px);
}

.journey-step:nth-child(even) {
    transform: translateY(50px);
}

/* Circle Step Styling */
.step-circle {
    width: 120px;
    height: 120px;
    background-color: #F4B400;
    /* Gold */
    border: 5px solid #19C2B1;
    /* Teal border */
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    /* White number */
    font-family: var(--font-heading);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Hover Effects */
.journey-step:hover .step-circle {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 30px rgba(244, 180, 0, 0.4);
    /* Gold glow */
    border-color: #17a092;
    /* Darker Teal */
}

/* Responsive Journey Map */
@media (max-width: 960px) {
    .journey-map-container {
        padding: 40px 0;
    }

    .journey-line {
        display: none;
        /* Hide SVG on mobile/tablet */
    }

    .journey-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .journey-step:nth-child(even),
    .journey-step:nth-child(odd) {
        transform: none;
        /* Reset alternating offsets */
        width: 100%;
        max-width: 300px;
    }

    .journey-step::after {
        content: '';
        display: block;
        width: 2px;
        height: 40px;
        background: #19C2B1;
        margin: 20px auto -60px;
        /* Connect vertical steps */
    }

    .journey-step:last-child::after {
        display: none;
    }
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.btn-margin {
    margin-top: 10px;
    margin-bottom: 10px;
}