/* --- Design Variables --- */
:root {
    /* Vintage Palette */
    --clr-primary-dark: #2A1B12; /* Dark Brown */
    --clr-primary: #4A3320; /* Medium Brown */
    --clr-accent: #D4AF37; /* Vintage Gold */
    --clr-accent-hover: #b8962c;
    --clr-bg: #F5F0E6; /* Cream/Off-White */
    --clr-surface: #E8E0D2; /* Slightly darker cream for cards */
    --clr-text-main: #1A1A1A;
    --clr-text-light: #F5F0E6;
    --clr-border: #D4AF37;
    
    /* Typography */
    --ff-heading: 'Playfair Display', serif;
    --ff-body: 'Roboto', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1100px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, .logo {
    font-family: var(--ff-heading);
    color: var(--clr-primary-dark);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--clr-primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--clr-primary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-style: italic;
}

/* --- Layout --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
    scroll-margin-top: 100px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.btn-primary:hover {
    background-color: #e8c95a;
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:disabled {
    background-color: #ccc;
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.btn-outline:hover {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
}

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

/* --- Header & Nav --- */
.header {
    background: none !important;
    background-color: transparent !important;
    padding: 1rem 1.5rem;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: none !important;
    box-shadow: none !important;
}

.pill-nav {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0.6rem 0.6rem 0.6rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111111;
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.logo {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links a {
    color: #b0b0b0;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    background: none;
}

.nav-links a.active {
    background-color: #ffffff;
    color: #111111;
    font-weight: 600;
}

.dot {
    display: none;
}

.nav-links a.active .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: var(--clr-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.nav-links a:not(.active):hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Right side: icons + CTA */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.icon-btn {
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: #ff5722;
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

.btn.pill-btn {
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    border: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn.pill-btn:hover {
    background-color: #e8c95a; /* Lighter gold */
    color: var(--clr-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 25px rgba(212, 175, 55, 0.4);
}

/* Burger Menu */
.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s;
}

.burger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: right 0.4s ease-in-out;
    z-index: 999;
    border-left: none;
    box-shadow: -10px 0 30px rgba(0,0,0,0.6);
}

.mobile-nav.open {
    right: 0;
}

.mobile-link {
    color: #b0b0b0;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--ff-primary);
}

.mobile-link.active {
    background-color: #ffffff;
    color: #111111;
    font-weight: 600;
}

.mobile-link .dot {
    display: none;
}

.mobile-link.active .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--clr-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.mobile-link:not(.active):not(.btn):hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-link.btn {
    margin-top: 1rem;
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/img1.png') center/cover no-repeat;
    margin-bottom: -1px;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 27, 18, 0.7) 0%,
        rgba(42, 27, 18, 0.85) 50%,
        var(--clr-primary-dark) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--clr-text-light);
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--clr-accent);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0d8c8;
}

/* --- Carousel --- */
.gallery-section {
    background-color: var(--clr-primary-dark);
    color: var(--clr-text-light);
    position: relative;
}

.gallery-section .section-title, 
.gallery-section .section-subtitle {
    color: var(--clr-accent);
}

.carousel {
    position: relative;
    height: 500px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: 4px solid var(--clr-accent);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.carousel-track-container {
    background: #000;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.current-slide {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 27, 18, 0.8);
    border: 2px solid var(--clr-accent);
    color: var(--clr-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.carousel-button:hover {
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.carousel-button--left { left: 15px; }
.carousel-button--right { right: 15px; }

.carousel-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.carousel-indicator {
    border: 2px solid var(--clr-accent);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: transparent;
    cursor: pointer;
}

.carousel-indicator.current-indicator {
    background: var(--clr-accent);
}

/* --- Booking Section (Card Grid) --- */
.booking-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('images/barber_pattern.png');
    background-size: 300px;
    background-repeat: repeat;
    position: relative;
}

.section-header-decorated {
    position: relative;
    text-align: center;
    padding: 2rem 3rem;
    max-width: 500px;
    margin: 0 auto 3rem auto;
}

.section-header-decorated .section-title {
    font-size: 2.2rem;
    line-height: 1.3;
}

.section-header-decorated em {
    color: var(--clr-accent);
    font-style: italic;
}

/* Decorative corners */
.deco-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--clr-accent);
    border-style: solid;
    border-width: 0;
}

.deco-tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; }
.deco-tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; }
.deco-bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; }
.deco-br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; }

/* Cards row */
.services-cards-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual card */
.card-vertical {
    cursor: pointer;
    display: block;
    flex: 0 1 200px;
    max-width: 210px;
}

.service-checkbox {
    display: none;
}

.card-vertical-inner {
    background: var(--clr-bg);
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 2rem 1.2rem 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.card-vertical:hover .card-vertical-inner {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-checkbox:checked + .card-vertical-inner {
    border-color: var(--clr-accent);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Card icon */
.card-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--clr-accent);
    background: rgba(212, 175, 55, 0.06);
    transition: all 0.3s;
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.service-checkbox:checked + .card-vertical-inner .card-icon {
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
}

/* Card text */
.card-name {
    font-size: 1.05rem;
    font-family: var(--ff-heading);
    color: var(--clr-primary-dark);
    margin-bottom: 0.6rem;
}

.card-desc {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.card-duration {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-accent);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

/* Card price */
.card-price {
    font-family: var(--ff-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-primary-dark);
}

/* Selection indicator */
.card-check-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-top: 1rem;
    transition: all 0.25s;
    position: relative;
}

.service-checkbox:checked + .card-vertical-inner .card-check-indicator {
    border-color: var(--clr-accent);
    background: var(--clr-accent);
}

.service-checkbox:checked + .card-vertical-inner .card-check-indicator::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--clr-primary-dark);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

/* Summary Bar */
.booking-summary-bar {
    margin-top: 3rem;
    background: var(--clr-primary-dark);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 4px solid var(--clr-accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.summary-bar-services {
    flex: 1;
    color: var(--clr-text-light);
    min-height: 30px;
}

.summary-bar-services .selected-item {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin: 0.2rem;
    font-size: 0.85rem;
    color: var(--clr-accent);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.summary-bar-totals {
    display: flex;
    gap: 2rem;
    color: var(--clr-text-light);
    white-space: nowrap;
}

.summary-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-weight: 500;
}

.summary-bar-item .highlight {
    font-size: 1.3rem;
}

.booking-summary-bar .btn {
    white-space: nowrap;
    padding: 0.8rem 1.8rem;
}

.booking-summary-bar .empty-state {
    color: #999;
    font-style: italic;
    margin: 0;
}

.highlight {
    color: var(--clr-accent);
    font-family: var(--ff-heading);
    font-weight: 700;
}

.service-pill {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin: 0.2rem;
    font-size: 0.85rem;
    color: var(--clr-accent);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-pill small {
    opacity: 0.8;
}

/* --- Footer --- */
.footer {
    background-color: #1a110b; /* Very dark brown */
    color: var(--clr-text-light);
    padding: 4rem 0 0 0;
}

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

.footer-brand h3 {
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #aaa;
}

.footer-links h4 {
    color: var(--clr-accent);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    background-color: #0f0a06;
    text-align: center;
    padding: 1.5rem;
    color: #777;
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #e8c95a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .booking-summary-bar {
        flex-direction: column;
        text-align: center;
    }

    .summary-bar-totals {
        justify-content: center;
    }

    .booking-summary-bar .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .carousel {
        height: 350px;
    }

    .services-cards-row {
        gap: 1rem;
    }

    .card-vertical {
        flex: 0 1 45%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .card-vertical {
        flex: 0 1 100%;
        max-width: none;
    }
}


/* --- Modal & Form Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1005;
    display: none;
    backdrop-filter: blur(3px);
}

.modal-overlay.active {
    display: block;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--clr-bg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    z-index: 1010;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 3px solid var(--clr-accent);
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    background-color: var(--clr-primary-dark);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--clr-accent);
}

.modal-header h2 {
    color: var(--clr-text-light);
    font-size: 1.5rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--clr-accent);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #fff;
}

.modal-body {
    padding: 2rem;
}

.modal-summary {
    background: var(--clr-surface);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--clr-accent);
}

.modal-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal-summary-row:last-child {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--ff-heading);
    color: var(--clr-primary-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--clr-primary);
    border-radius: 4px;
    background-color: #fff;
    font-family: var(--ff-body);
    font-size: 1rem;
    color: var(--clr-text-main);
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.terms-group {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
    font-weight: 400 !important;
}

.terms-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--clr-accent);
}

.time-hint {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.8rem;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.time-slot-btn {
    padding: 0.6rem;
    background: transparent;
    border: 2px solid var(--clr-primary);
    border-radius: 4px;
    color: var(--clr-primary-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.time-slot-btn:hover:not(:disabled) {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--clr-accent);
}

.time-slot-btn.selected {
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    font-weight: 700;
}

.time-slot-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #e0e0e0;
    border-color: #ccc;
    text-decoration: line-through;
}

.form-actions {
    margin-top: 2rem;
}

.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #555;
    margin-bottom: 1rem;
}

.success-message .small-text {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* --- Services Page Layout --- */
.services-header-section {
    padding: 6rem 0 2rem 0;
    text-align: center;
    background-color: var(--clr-primary-dark);
    color: var(--clr-text-light);
}

.services-header-section .section-title {
    color: var(--clr-accent);
}

.services-header-section .section-subtitle {
    color: var(--clr-bg);
}

.services-page-section {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-full {
    background: var(--clr-surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card-full:hover {
    transform: translateY(-5px);
    border-color: var(--clr-accent);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--clr-accent);
}

.service-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-details .btn {
    margin-top: auto;
}

.service-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(42, 27, 18, 0.2);
}

.service-duration {
    color: #666;
    font-weight: 500;
}

.service-cost {
    font-family: var(--ff-heading);
    color: var(--clr-primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.service-details p {
    color: #444;
    margin-bottom: 2rem;
    min-height: 80px;
}

/* --- Text Pages Content --- */
.text-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--clr-surface);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.text-content h2 {
    color: var(--clr-primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.text-content h2:first-child {
    margin-top: 0;
}

.text-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.text-link {
    color: var(--clr-accent);
    text-decoration: underline;
    font-weight: 500;
}

.text-link:hover {
    color: #e8c95a;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--clr-accent);
}
