/* ==========================================================================
   Pride Events - Main Stylesheet
   Theme: Luxury Gold & Elegant Charcoal
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    --primary-color: #8c6c39;      /* Antique Gold for light contrast */
    --primary-hover: #6b5129;      /* Darker bronze-gold on hover */
    --accent-emerald: #0f5132;     /* Forest Emerald Accent */
    --bg-dark: #DDCBB6;            /* Warm Off-White */
    --bg-card: #ffffff;            /* Lighter white card background */
    --bg-input: #fdfbf7;           /* Off-white input fields */
    --text-white: #241c13;         /* Dark charcoal brown for text */
    --text-muted: #5c5245;         /* Muted brownish grey for body */
    --text-gold: #73562a;          /* Rich gold-brown for accents */
    --glass-bg: rgba(253, 251, 247, 0.8);
    --glass-border: rgba(140, 108, 57, 0.2);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(44, 35, 24, 0.08);
    --shadow-glow: 0 0 20px rgba(140, 108, 57, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

input, select, textarea, button {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 8rem 0;
}

/* 2. Utility Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.highlight-text {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.title-bar {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
}

/* 3. Buttons & Interactive Elements */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #bfa054 100%);
    color: var(--bg-dark);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, #c49a51 0%, #a68541 100%);
}

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

.btn-secondary:hover {
    background: rgba(223, 183, 108, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(223, 183, 108, 0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Scroll Animation Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* 4. Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: rgba(27, 21, 15, 0.92); /* Deep dark brown background */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(223, 183, 108, 0.1);
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: rgba(27, 21, 15, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(223, 183, 108, 0.15);
    height: 75px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #dfb76c 0%, #f5e6ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #e5dace; /* Light champagne text color */
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #dfb76c; /* Rich gold on hover */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dfb76c;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn {
    border: 1px solid #dfb76c;
    padding: 0.6rem 1.4rem !important;
    border-radius: 4px;
    color: #dfb76c !important;
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background-color: #dfb76c;
    color: #1b150f !important;
    box-shadow: var(--shadow-glow);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #e5dace; /* Light color for mobile button */
    font-size: 1.5rem;
    cursor: pointer;
}

/* 5. Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(221, 203, 182, 0.2) 0%, rgba(221, 203, 182, 0.95) 80%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
}

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

.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.hero-badge {
    justify-self: center;
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(223, 183, 108, 0.1) 100%);
    padding: 3px;
    box-shadow: var(--shadow-glow);
    animation: float 4s ease-in-out infinite;
}

.badge-inner {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.badge-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Typing Animation cursor */
.typing-text::after {
    content: '|';
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent; }
    50% { color: var(--primary-color); }
}

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

.service-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border);
    box-shadow: var(--shadow);
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: -20px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #bfa054 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-dark);
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.service-body {
    padding: 2.5rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--text-white);
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 7. About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-large-wrapper {
    width: 80%;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.about-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-small-wrapper {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 50%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid var(--bg-dark);
    box-shadow: var(--shadow);
}

.about-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    left: -20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #bfa054 100%);
    color: var(--bg-dark);
    padding: 1.25rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-experience-badge .exp-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.about-experience-badge .exp-txt {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-content {
    max-width: 550px;
}

.about-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.about-bullets {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bullet-item {
    display: flex;
    gap: 1.2rem;
}

.bullet-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.bullet-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--text-white);
}

.bullet-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.whatsapp-chat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25d366;
    font-weight: 600;
}

.whatsapp-chat:hover {
    color: var(--text-white);
    transform: translateY(-2px);
}

/* 8. Stats Section */
.stats-section {
    background-color: var(--bg-card);
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-plus {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* 9. Portfolio Section */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.6rem 1.6rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(36, 28, 19, 0.95) 10%, rgba(36, 28, 19, 0.3) 60%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-item-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.portfolio-item-loc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.portfolio-item-loc i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

/* hide/show classes for filtering */
.portfolio-item.hide {
    display: none;
}

/* 10. Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
}

.team-img-wrapper {
    position: relative;
    height: 300px;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.placeholder-avatar {
    font-size: 5rem;
    color: var(--bg-input);
}

.team-card:hover .placeholder-avatar {
    color: var(--primary-color);
    transform: scale(1.1);
    transition: var(--transition);
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.team-info {
    padding: 2rem 1.5rem;
    text-align: center;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.team-member-role {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 11. Testimonials Section */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--bg-card);
    padding: 4rem 5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.client-rating {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.client-feedback {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-gold);
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-event {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.control-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.control-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

/* 12. Booking Form */
.booking-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.booking-info {
    max-width: 500px;
}

.booking-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
}

.contact-details-list {
    display: grid;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.detail-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(223, 183, 108, 0.08);
    border: 1px solid rgba(223, 183, 108, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.contact-detail-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-detail-item strong {
    font-size: 1.15rem;
    color: var(--text-white);
}

.booking-form-wrapper {
    background-color: var(--bg-card);
    padding: 3.5rem 3rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    padding: 0.9rem 1.2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #5b657e;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(223, 183, 108, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='gold' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Success Modal Style inside Form Wrapper */
.form-success-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-card);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 10;
}

.form-success-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    text-align: center;
    max-width: 400px;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.success-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* 13. Footer Section */
.main-footer {
    background-color: #d1bea7;
    border-top: 1px solid rgba(140, 108, 57, 0.15);
    padding: 6rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

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

.main-footer .logo-text {
    background: linear-gradient(135deg, #594220 0%, #302414 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-desc {
    color: #40362b; /* Darker warm brown for readability */
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #40362b; /* Darker icon color */
}

.social-links a:hover {
    color: var(--bg-dark);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: #241c13; /* Darker heading */
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.links-col ul {
    display: grid;
    gap: 1rem;
}

.links-col a {
    color: #40362b; /* Darker link color */
    font-size: 0.95rem;
}

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

.contact-col p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #40362b; /* Darker text */
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-col i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2.2rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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


/* ==========================================================================
   14. Responsive Layout Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-container, .booking-container {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .img-large-wrapper {
        width: 100%;
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-badge {
        display: none;
    }
    
    /* Responsive mobile menu drawer */
    .mobile-toggle {
        display: block;
        z-index: 1100;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-card);
        border-left: 1px solid var(--glass-border);
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 100px 2.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.2rem;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 3rem 2rem;
    }
    
    .client-feedback {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        width: 100%;
    }
}
