/* Global Styles */
:root {
    --primary-color: #25606E;
    /* Teal */
    --secondary-color: #e6e2d6;
    /* Beige Border/Divider */
    --accent-color: #d5bd99;
    /* Light Gold */
    --text-color: #000000;
    --text-light: #4a4a4a;
    --background-color: #f9f6f1;
    /* Warm Beige Background */
    --background-white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    background-image: url('assets/bg-texture.png');
    background-repeat: repeat;
    background-size: auto;
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.bg-light {
    background-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 15px;
    /* Pill-shaped */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: #494343;
    color: var(--background-white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.btn-sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* Header */
.header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 8px 0;
    /* Smaller padding on scroll */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    max-width: 250px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 40px;
    /* Smaller logo on scroll */
}

.nav-list {
    display: flex;
    gap: 10px;
    /* Reduced gap to prevent overlap on small screens */
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 13px;
    /* Slightly smaller font */
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 1.5px;
    /* Slightly tighter tracking */
    position: relative;
    padding: 5px 10px;
    /* Reduced padding */
    transition: all 0.3s ease;
}

/* Remove underline/pill effect */
.nav-link::after {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    background-color: transparent;
    color: #d5bd99;
    border-color: transparent;
}



.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.hamburger svg {
    transition: transform 0.3s ease;
}

.hamburger.open svg {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    padding-top: 130px;
    padding-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 246, 241, 0.4);
    /* Gentle overlay */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-hooks {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.separator {
    margin: 0 10px;
    color: #ccc;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;

    /* Speech Bubble Styling */
    background-color: #d5bd99;
    padding: 18px 32px;
    border-radius: 35px;
    display: inline-block;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50px;
    border-width: 16px 16px 0;
    border-style: solid;
    border-color: #faf3e0 transparent;
    display: block;
    width: 0;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.04));
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        padding: 20px 30px;
        border-radius: 30px;
    }
}



.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.7;
}

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

.image-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e0e0e0;
    /* Gray placeholder */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    position: relative;
    overflow: hidden;
}

.image-placeholder i {
    font-size: 5rem;
    color: #fff;
    opacity: 0.5;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    /* Use full container width */
    margin: 0 auto;
    text-align: left;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about p {
    margin-bottom: 20px;
    font-size: 1.0rem;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 25px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.service-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.service-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 57, 50, 0.25);
}

.service-card.featured .service-title,
.service-card.featured .service-duration,
.service-card.featured .service-price {
    color: var(--background-white);
}

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

.service-card.featured .btn-outline:hover {
    background-color: #faf3e0;
    color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-duration {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Situations Section */
.situations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.situation-item {
    text-align: center;
    padding: 20px;
}

.situation-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(16, 46, 54, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
}

.situation-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.situation-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.situation-item h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #25606E;
    color: var(--background-white);
    padding-top: 80px;
    padding-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #c4a77d;
    /* Darker cream */
    color: var(--white);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-btn:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav {
        display: none;
        /* Hide nav on tablet/mobile initially */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 10px;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-hooks {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

}

/* Booking Section Styles */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 5px;
}

.step-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-light);
    font-size: 0.9rem;
}

.step.active .step-label {
    color: var(--primary-color);
}

.step-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    width: 100%;
}

.step.active .step-bar {
    background-color: #102e36;
    /* Dark active color */
}

/* Use lighter tones for inactive future steps if needed, or just keep gray */
.step:nth-child(2) .step-bar,
.step:nth-child(3) .step-bar,
.step:nth-child(4) .step-bar {
    background-color: #dcdcdc;
    /* Lighter gray/beige */
}

/* Form Styles */
.booking-form {
    background: var(--white);
    padding: 20px;
    /* border-radius: 10px; */
    /* Screenshot looks flat/clean */
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-control,
select {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.form-control:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 96, 110, 0.1);
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%2325606E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    cursor: pointer;
}

.week-days {
    display: flex;
    gap: 10px;
    align-items: center;
}

.day-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    /* Selected state */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.time-range {
    display: flex;
    gap: 10px;
}

/* Specific button override for booking */
.btn-primary {
    transition: all 0.3s ease;
}


/* Appointment Section */
.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.appointment-text .section-title {
    margin-bottom: 20px;
}

.appointment-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.appointment-info p {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.appointment-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

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

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.appointment-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.appointment-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.appointment-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 92, 107, 0.1);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.form-feedback {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    font-weight: 500;
    text-align: center;
}

.form-feedback.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-feedback.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

@media (max-width: 992px) {
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .appointment-info p {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .appointment-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .appointment-form-wrapper {
        padding: 30px 20px;
    }
}

/* Animations */
.animate-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Product Page Styles */
.product-hero {
    background: var(--background-color);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--secondary-color);
}

.product-hero .hero-title {
    margin-bottom: 15px;
    font-size: 3rem;
    color: var(--primary-color);
}

.product-hero .hero-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.product-detail {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image {
    position: sticky;
    top: 120px;
}

.product-image img {
    width: 100%;
}

.product-info .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: block;
}

.product-description {
    margin-bottom: 40px;
}

.product-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.product-description strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

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

    .product-image {
        position: relative;
        top: 0;
    }
}

/* Forum Styles */
.forum-form-wrapper {
    background: var(--background-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    max-width: 800px;
    margin: 0 auto 60px;
    border: 1px solid var(--secondary-color);
}

.qa-item {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.qa-question {
    margin-bottom: 20px;
    position: relative;
}

.qa-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.qa-question p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.qa-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
}

.qa-answer {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
}

.qa-answer p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.qa-no-answer {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 20px;
}

.no-data {
    text-align: center;
    padding: 60px 0;
    font-style: italic;
    color: var(--text-light);
}

.loading-state {
    text-align: center;
    padding: 40px 0;
}

/* Footer Q&A Integration */
.footer-qa-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-col-info h3 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col-info p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-form {
    margin-bottom: 30px;
}

.footer-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.footer-form label {
    color: rgba(255, 255, 255, 0.8);
}

.footer-questions-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 20px;
}

/* Custom scrollbar for questions list */
.footer-questions-list::-webkit-scrollbar {
    width: 6px;
}

.footer-questions-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.footer-questions-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.footer-questions-list .qa-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
}

.footer-questions-list .qa-question p {
    color: var(--white);
    font-size: 1rem;
}

.footer-questions-list .qa-label {
    color: var(--accent-color);
}

.footer-bottom-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-contact-info span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

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

    .footer-bottom-links {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 10px;
    }
}

/* Custom Select Styles */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-color);
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.custom-select-trigger::after {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%2325606E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-trigger {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 96, 110, 0.1);
}

.custom-select.open .custom-select-trigger::after {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    overflow: hidden;
    max-height: 250px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 18px;
    font-size: 0.95rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-option:hover {
    background-color: #f7f9fa;
    /* Light teal tint or gray */
    color: var(--primary-color);
}

.custom-option.selected {
    background-color: var(--primary-color);
    color: #fff;
}

/* Gold Highlight Effect */
mark {
    background-color: transparent;
    color: inherit;
    position: relative;
    display: inline-block;
    padding: 0 5px;
    z-index: 1;
}

mark::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    /* Adjust thickness */
    background-color: #d5bd99;
    /* Gold Accent */
    z-index: -1;
    opacity: 0.6;
    /* Adjust for transparency */
}

/* Specific Style for H Titles requested by user */
h1 mark,
h2 mark,
h3 mark,
.gold-mark {
    background-color: #d5bd99;
    /* Solid gold background as requested */
    color: #000000;
    /* Black text */
    padding: 2px 10px;
    display: inline;
    /* Or inline-block if spacing needed */
    border-radius: 12px;
}

h1 mark::after,
h2 mark::after,
h3 mark::after,
.gold-mark::after {
    display: none;
    /* Disable underline effect for the solid style */
}

/* Utility Class for Script Font */
.script-font,
.google_font {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 400;
    color: #000;
}

/* Hero Slider - Reference Image Layout */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&display=swap');

.hero-custom {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    background-color: #fff;
}

.hero-bg {
    position: absolute;
    padding-top: 130px;
    top: 80px;
    /* Offset for header */
    right: 50px;
    /* Space on the right */
    width: 35%;
    /* Image takes right 60% */
    height: calc(100% - 0px);
    /* Adjust height to account for offset */
    background-image: url('assets/portrait.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content-layer {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    padding-top: 220px;
    /* Account for fixed header */
    z-index: 10;
}

.hero-shape-overlay {
    display: none;
    /* Not needed in this layout */
}

/* Text container on the left */
.hero-text-container {
    max-width: 400px;
    margin-bottom: 30px;
}

.hero-text-block {
    background-color: #d5bd99;
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    padding: 8px 20px;
    margin-bottom: 0px;
    /* Reduced to make blocks touch */
    display: inline-block;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    border-radius: 12px;
}

.block-1 {
    animation-delay: 0.3s;
}

.block-2 {
    animation-delay: 0.1s;
}

.block-3 {
    animation-delay: 0.2s;
}

.hero-desc {
    max-width: 350px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.hero-desc p {
    margin-bottom: 15px;
}

.hero-action {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.5s;
}

.btn-rev {
    background-color: #000000;
    color: #fff;
    font-size: 1rem;
    padding: 12px 30px;
    display: inline-block;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-rev:hover {
    background-color: #333;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 900px) {
    .hero-custom {
        height: auto;
        min-height: 500px;
        flex-direction: column;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 300px;
        order: 2;
    }

    .hero-content-layer {
        padding: 40px 20px;
        order: 1;
    }

    .hero-text-block {
        font-size: 1.8rem;
    }

    .hero-desc {
        max-width: 100%;
    }
}