
/* Packages Page Specific Styles */
:root {
    --primary-font: 'Playfair Display', serif;
    --secondary-font: 'Inter', sans-serif;
    --coral-glow: #FF6B9D;
    --peach-blush: #FFCAB0;
    --deep-coffee-brown: #2C1810;
    --warm-cream: #FAF7F2;
    --text-dark: #2C1810;
    --text-light: #6B7280;
    --gradient-primary: linear-gradient(135deg, #FF6B9D, #FF8A65);
    --gradient-secondary: linear-gradient(135deg, #FFCAB0, #FFE0B2);
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    background: var(--warm-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Hero Section */
.packages-hero {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.packages-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.packages-hero-content {
    position: relative;
    z-index: 2;
}

.packages-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.packages-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stat {
    text-align: center;
    color: white;
}

.hero-stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    margin-bottom: 0.5rem;
}

.hero-stat p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.8;
}

/* Main Container */
.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.packages-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Package Cards Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.package-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-type {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.package-price {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral-glow);
    margin-bottom: 1rem;
}

.package-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Inclusions List */
.package-inclusions {
    margin-bottom: 2rem;
}

.inclusions-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.5;
}

.inclusions-list li i {
    color: var(--coral-glow);
    margin-top: 0.2rem;
    font-size: 0.8rem;
}

/* Package Button */
.package-btn {
    width: 100%;
    background: var(--deep-coffee-brown);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.package-btn:hover {
    background: #1a0e08;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
    color: white;
    text-decoration: none;
}

.package-btn:hover::before {
    left: 100%;
}

/* Featured Package */
.package-card.featured {
    border: 2px solid var(--coral-glow);
    transform: scale(1.05);
}

.package-card.featured::before {
    background: var(--coral-glow);
}

.package-card.featured .package-type {
    background: var(--coral-glow);
}

.package-card .package-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-inclusions {
    flex: 1;
    margin-bottom: 2rem;
}

/* Course Cards */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.course-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card .package-inclusions {
    flex: 1;
    margin-bottom: 2rem;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-duration {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    margin-top: 80px;
}

.contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--coral-glow);
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-btn.primary {
    background: white;
    color: var(--coral-glow);
}

.cta-btn.primary:hover {
    background: var(--deep-coffee-brown);
    color: white;
}

/* Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.8);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    max-width: 550px;
    margin: 20px auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(50px) scale(0.9);
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-modal.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.modal-subtitle {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--coral-glow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

.package-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 202, 176, 0.1));
    border: 2px solid var(--coral-glow);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.package-highlight h4 {
    font-family: 'Playfair Display', serif;
    color: var(--coral-glow);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.package-highlight p {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.modal-submit-btn {
    width: 100%;
    background: var(--deep-coffee-brown);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-submit-btn:hover {
    background: #1a0e08;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
}

.modal-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.modal-success {
    padding: 2rem;
    text-align: center;
}

.success-animation {
    margin-bottom: 1rem;
}

.success-animation i {
    font-size: 4rem;
    color: #10B981;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.success-close-btn {
    background: var(--coral-glow);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: #e55a8a;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .packages-hero h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card {
        padding: 2rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .packages-container {
        padding: 0 1rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .packages-hero h1 {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-form {
        padding: 1rem;
    }
}

/* Book Button Styles - works for both <a> and <button> */
.book-btn-enhanced,
.mobile-book-btn {
    background: var(--deep-coffee-brown);
    color: white;
    text-decoration: none;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-btn-enhanced:hover,
.mobile-book-btn:hover {
    background: #1a0e08;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
}

.book-btn-enhanced:visited,
.mobile-book-btn:visited {
    color: white;
    text-decoration: none;
}

/* ===== ENHANCED NAVBAR ===== */
.enhanced-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 202, 176, 0.2);
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.enhanced-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
}

/* Enhanced Logo */
.logo-enhanced {
    position: relative;
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    padding: 3px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo-image:hover .logo-img {
    transform: scale(1.1);
}

.logo-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.logo-link:hover .logo-glow {
    opacity: 0.6;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2C1810 0%, #8B4513 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--coral-glow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Navigation Menu */
.nav-menu-enhanced {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--coral-glow);
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--coral-glow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover .nav-indicator {
    width: 80%;
}

.nav-link.active .nav-indicator {
    width: 0;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 202, 176, 0.2);
    padding: 0.8rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-link:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--coral-glow);
    transform: translateX(5px);
}

.dropdown-link i {
    color: var(--coral-glow);
    font-size: 1rem;
}

/* Enhanced Navigation Actions */
.nav-actions-enhanced {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-social {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 202, 176, 0.3);
}

.social-icon:hover {
    color: white;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.nav-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--coral-glow);
    border-color: var(--coral-glow);
    background: rgba(255, 107, 157, 0.1);
}

.contact-link i {
    color: var(--coral-glow);
}

/* Enhanced Book Button */
.book-btn-enhanced {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.book-btn-enhanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.book-btn-enhanced:hover .btn-glow {
    left: 100%;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu-text {
    font-size: 0.7rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 100%);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Mobile Navigation Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 202, 176, 0.3);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
}

.mobile-brand {
    font-family: var(--primary-font);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    line-height: 1;
}

.mobile-tagline {
    font-size: 0.7rem;
    color: var(--coral-glow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    color: var(--coral-glow);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: var(--coral-glow);
    color: white;
    transform: rotate(90deg);
}

/* Mobile Menu Links */
.mobile-menu-links {
    flex: 1;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 202, 176, 0.2);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--coral-glow);
    padding-left: 1rem;
}

.mobile-link.active {
    color: var(--coral-glow);
    background: rgba(255, 107, 157, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
    border-bottom-color: transparent;
}

.mobile-link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-link-content i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.link-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 202, 176, 0.2);
}

.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-dropdown-trigger:hover {
    color: var(--coral-glow);
    padding-left: 1rem;
}

.dropdown-toggle {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-toggle {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 300px;
    padding: 1rem;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.mobile-sub-link:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--coral-glow);
    transform: translateX(5px);
}

.mobile-sub-link i {
    color: var(--coral-glow);
    font-size: 1rem;
}

/* Mobile Actions */
.mobile-nav-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 202, 176, 0.3);
}

.mobile-book-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
}

.mobile-contact-link:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--coral-glow);
    border-color: var(--coral-glow);
}

.mobile-contact-link i {
    color: var(--coral-glow);
    font-size: 1.1rem;
}

.mobile-social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
}

.mobile-social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
    border-color: #E4405F;
    color: #E4405F;
}

.mobile-social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
    color: #1877F2;
}

.mobile-social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
    color: #FF0000;
}

.mobile-social-link i {
    font-size: 1.2rem;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Media Queries */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-social {
        display: none;
    }

    .nav-contact {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-menu-enhanced {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-content {
        display: none;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .book-btn-enhanced {
        display: none;
    }

    .mobile-nav {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .mobile-nav-content {
        padding: 1.5rem;
    }

    .mobile-logo-img {
        width: 40px;
        height: 40px;
    }

    .mobile-brand {
        font-size: 1.2rem;
    }
}

.contact-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===== SIMPLIFIED FOOTER ===== */
.simple-footer {
    background: linear-gradient(135deg, #2C1810 0%, #1A0F0A 100%);
    color: #FFFFFF;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.simple-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 138, 101, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 202, 176, 0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFCAB0 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    font-weight: 300;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--coral-glow);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    border-radius: 45px;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    outline: none;
}

.input-group button {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 45px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

/* Main Footer */
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.9rem;
    color: var(--coral-glow);
    font-weight: 600;
    margin-top: 0.2rem;
}

.brand-description {
    font-size: 1rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 202, 176, 0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--coral-glow);
}

.social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.2);
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--coral-glow);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 202, 176, 0.2);
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 0.8rem;
}

.link-list a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.link-list a:hover {
    color: #FFFFFF;
    padding-left: 0.5rem;
    border-left: 2px solid var(--coral-glow);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--coral-glow);
    font-size: 1.1rem;
    margin-top: 0.3rem;
    width: 20px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-details a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--coral-glow);
}

.contact-details span {
    color: #AAAAAA;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 202, 176, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.copyright {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin: 0;
}

.brand-highlight {
    color: var(--coral-glow);
    font-weight: 700;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--coral-glow);
    font-family: var(--primary-font);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #AAAAAA;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-policies {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.policy-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: var(--coral-glow);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links .footer-column:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .simple-footer {
        padding: 3rem 0 0;
    }

    .footer-newsletter {
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .input-group {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .input-group button {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links .footer-column:last-child {
        grid-column: span 1;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-stats {
        justify-content: center;
    }

    .footer-policies {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-newsletter {
        padding: 1.5rem 1rem;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .logo {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-policies {
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
}

/* Message Containers */
.message-container {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
}

/* Success Card */
.success-card {
    border-left: 5px solid #10b981;
}

.success-card .message-icon {
    color: #10b981;
}

/* Error Card */
.error-card {
    border-left: 5px solid #ef4444;
}

.error-card .message-icon {
    color: #ef4444;
}

/* Message Icon */
.message-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.message-icon i {
    display: inline-block;
}

/* Message Content */
.message-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-coffee-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.message-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--deep-coffee-brown);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--warm-orange);
}

/* Message Actions */
.message-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.message-actions .btn-primary {
    background: var(--deep-coffee-brown);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.message-actions .btn-primary:hover {
    background: #1a0e08;
    transform: translateY(-2px);
}

.message-actions .btn-secondary {
    background: transparent;
    color: var(--deep-coffee-brown);
    padding: 0.8rem 2rem;
    border: 2px solid var(--deep-coffee-brown);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.message-actions .btn-secondary:hover {
    background: var(--deep-coffee-brown);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .message-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .message-actions {
        flex-direction: column;
    }

    .message-actions .btn-primary,
    .message-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .message-content h3 {
        font-size: 1.5rem;
    }
}

/* Message Actions - Updated */
.message-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.message-actions .btn-primary,
.message-actions .btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: none;
    outline: none;
}

.message-actions .btn-primary {
    background: var(--deep-coffee-brown);
    color: white;
}

.message-actions .btn-primary:hover {
    background: #1a0e08;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.3);
}

.message-actions .btn-secondary {
    background: transparent;
    color: var(--deep-coffee-brown);
    border: 2px solid var(--deep-coffee-brown);
}

.message-actions .btn-secondary:hover {
    background: var(--deep-coffee-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.3);
}

/* Ensure buttons work as both <button> and <a> tags */
.message-actions button.btn-primary,
.message-actions button.btn-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

/* Focus states for accessibility */
.message-actions .btn-primary:focus,
.message-actions .btn-secondary:focus {
    outline: 2px solid var(--warm-orange);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .message-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .message-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .message-actions .btn-primary,
    .message-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .message-content h3 {
        font-size: 1.5rem;
    }
}