:root {
    --primary: #A0522D;        /* Sienna/Terracotta */
    --primary-dark: #8B4513;   /* Saddle Brown */
    --secondary: #2F4F4F;      /* Dark Slate Grey */
    --bg: #FFFDF5;            /* Soft Cream/Ivory */
    --text: #2D2926;          /* Charcoal Black */
    --text-muted: #6B665F;    /* Warm Taupe */
    --glass: rgba(160, 82, 45, 0.05);
    --glass-border: rgba(160, 82, 45, 0.1);
    --container-width: 1200px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--primary);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 253, 245, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--secondary) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600 !important;
}

.btn-primary-lg {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

.btn-secondary-lg {
    display: inline-block;
    background: transparent;
    color: var(--text);
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-secondary-lg:hover {
    background: var(--primary);
    color: white !important;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 253, 245, 0.95) 0%, rgba(255, 253, 245, 0.6) 50%, transparent 100%);
}

.hero-content {
    max-width: 800px;
}

h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Sections */
.section {
    padding: 10rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(160, 82, 45, 0.05);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card .icon-container {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card .icon-container i {
    width: 40px;
    height: 40px;
    stroke-width: 1.5px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Glass Card */
.glass-card {
    background: white;
    padding: 5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    text-align: center;
    box-shadow: 0 20px 40px rgba(160, 82, 45, 0.1);
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Footer */
footer {
    background: var(--secondary);
    color: #f9f9f9;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer .logo {
    color: white;
}

footer .footer-links a, footer .footer-contact p {
    color: #d1d1d1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Animations */
.reveal-text {
    animation: fadeInUp 1s ease forwards;
}

.reveal-text-slow {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 253, 245, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        z-index: 1050;
        backdrop-filter: blur(12px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .nav-links .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 5rem 0; }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions a {
        text-align: center;
        width: 100%;
    }
}

/* Reviews Page Styles */
.reviews-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(to bottom, #FFF7EF, var(--bg));
    text-align: center;
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.rating-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.total-reviews {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.filter-container {
    margin-bottom: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-tag {
    background: white;
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-tag:hover, .filter-tag.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.filter-tag span {
    margin-left: 0.5rem;
    opacity: 0.6;
    font-size: 0.8rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 8rem;
}

.review-card {
    background: white;
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 25px rgba(160, 82, 45, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(160, 82, 45, 0.1);
}

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

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.reviewer-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.review-content {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .rating-number {
        font-size: 4rem;
    }
}
/* Journey Section (StoryBrand) */
#journey {
    background: linear-gradient(to bottom, var(--bg), #FFF7EF);
    position: relative;
    overflow: hidden;
}

.journey-path {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connecting Line (Desktop) */
.journey-path::before {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary) 0,
        var(--primary) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.2;
    z-index: 0;
}

.journey-item, .journey-outcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Zig-Zag Positioning */
.journey-item:nth-child(odd) {
    grid-column: 1;
    transform: translateX(2rem);
}

.journey-item:nth-child(even) {
    grid-column: 2;
    transform: translateX(-2rem);
    margin-top: 6rem;
}

.journey-icon-box {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(160, 82, 45, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.journey-icon-box i {
    width: 32px;
    height: 32px;
    stroke-width: 1.5px;
}

.highlight-box {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(160, 82, 45, 0.2);
}

.journey-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.journey-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 300px;
}

/* Outcomes Positioning */
.journey-outcome {
    grid-column: 1 / span 2;
    margin-top: 6rem;
}

.journey-outcome.success {
    grid-column: 1;
    margin-top: 4rem;
}

.journey-outcome.failure {
    grid-column: 2;
    margin-top: 4rem;
}

.journey-outcome.success .journey-icon-box {
    border-color: #4CAF50;
    color: #4CAF50;
}

.journey-outcome.failure .journey-icon-box {
    border-color: #6B665F;
    color: #6B665F;
}

/* Hover Effects */
.journey-item:hover .journey-icon-box {
    transform: scale(1.1) translateY(-5px);
    background: var(--primary);
    color: white;
}

/* Responsive Journey */
@media (max-width: 768px) {
    .journey-path {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .journey-path::before {
        display: none;
    }

    .journey-item, .journey-outcome {
        display: flex;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
        transform: none !important;
        margin-top: 0 !important;
        grid-column: unset !important;
        width: 100%;
    }

    .journey-item:nth-child(odd),
    .journey-item:nth-child(even) {
        grid-column: unset;
        transform: none;
        margin-top: 0;
    }

    .journey-outcome.success,
    .journey-outcome.failure {
        grid-column: unset;
        margin-top: 0;
    }

    .journey-icon-box {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        margin-bottom: 0;
    }

    .journey-content p {
        max-width: 100%;
    }
}
