/* ==============================================
   MODERN STYLES FOR L.A. BARBERSHOP
   =============================================== */

/* CSS Variables */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Typography */
@font-face {
    font-family: 'Cabbagetown';
    src: url('../fonts/Cabbagetown.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Cabbagetown';
    src: url('../fonts/CabbagetownBook.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Cabbagetown';
    src: url('../fonts/CabbagetownStone.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Brand Text - Use Playfair Display for reliable rendering */
.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.hero-title-modern .title-line-1,
.hero-title-modern .title-line-2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.welcome-text,
.about-title,
.brand-name,
.main-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
}

/* Header Styles */
.header-modern {
    background: #1a1a1a;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 3rem;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    object-fit: contain;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    display: block;
    background: none;
    border: none;
    object-fit: contain;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    transition: var(--transition);
    position: relative;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.btn-book-now {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-radius: 25px;
    padding: 0.75rem 1.75rem !important;
    font-weight: 600;
    transition: var(--transition);
    line-height: 1.2;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-book-now:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

/* No Background Hero Section */
.modern-hero-no-bg {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        #f8f9fa 0%,
        #e9ecef 25%,
        #dee2e6 50%,
        #ced4da 75%,
        #adb5bd 100%
    );
}

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

.hero-image-container-modern {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(26, 26, 26, 0.85) 0%, 
        rgba(44, 44, 44, 0.75) 50%, 
        rgba(26, 26, 26, 0.9) 100%
    );
    z-index: 2;
}

.hero-content-modern {
    position: relative;
    z-index: 3;
    min-height: 100vh;
}

.hero-left-panel {
    background: linear-gradient(
        135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(44, 44, 44, 0.85) 100%
    );
    padding: 80px 60px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.hero-left-panel-no-bg {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8f9fa 25%,
        #e9ecef 50%,
        #dee2e6 75%,
        #ced4da 100%
    );
    padding: 80px 60px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 
        inset -1px 0 0 rgba(255, 255, 255, 0.2),
        0 0 50px rgba(0, 0, 0, 0.05);
}

/* No background text colors */
.hero-left-panel-no-bg .hero-title-modern {
    color: var(--text-dark);
}

.hero-left-panel-no-bg .title-line-1 {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-left-panel-no-bg .title-line-2 {
    color: var(--text-dark);
}

.hero-left-panel-no-bg .hero-description-modern {
    color: var(--text-light);
}

.hero-left-panel-no-bg .stat-label {
    color: var(--text-light);
}

.hero-left-panel-no-bg .btn-hero-secondary {
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.hero-left-panel-no-bg .btn-hero-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-left-panel-no-bg .feature-modern {
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--primary-color);
}

.hero-left-panel-no-bg .feature-modern:hover {
    background: rgba(212, 175, 55, 0.12);
}

.hero-left-panel-no-bg .feature-content h4 {
    color: var(--text-dark);
}

.hero-left-panel-no-bg .feature-content p {
    color: var(--text-light);
}

/* Full Width Left Panel */
.hero-left-panel-full {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px 80px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-left-panel-full .hero-badge {
    justify-content: center;
    margin-bottom: 30px;
}

.hero-left-panel-full .hero-title-modern {
    text-align: center;
    margin-bottom: 30px;
}

.hero-left-panel-full .hero-description-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-left-panel-full .hero-stats {
    justify-content: center;
    margin-bottom: 40px;
}

.hero-left-panel-full .hero-actions {
    justify-content: center;
    margin-bottom: 50px;
}

.hero-left-panel-full .hero-features-modern {
    justify-content: center;
    margin-bottom: 50px;
}

.hero-left-panel-full .hero-social-modern {
    margin-top: 0;
}

/* Hero Social Media Section */
.hero-social-modern {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-social-modern h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.social-links-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 80px;
    text-align: center;
}

.social-link-modern:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.social-link-modern i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.social-link-modern span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.hero-left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1));
    z-index: 1;
    border-radius: 0 20px 20px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title-modern {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.title-line-1 {
    display: block;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.title-line-2 {
    display: block;
    color: var(--white);
    margin-top: 0;
}

.hero-description-modern {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    display: block;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.btn-hero-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::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.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-features-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.feature-modern {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 80px;
}

.feature-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.feature-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Right Panel */
.hero-right-panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-right-panel-no-bg {
    background: linear-gradient(
        135deg,
        #2c3e50 0%,
        #34495e 25%,
        #2c3e50 50%,
        #34495e 75%,
        #2c3e50 100%
    );
    padding: 60px 40px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    position: relative;
    box-shadow: 
        inset 1px 0 0 rgba(255, 255, 255, 0.1),
        0 0 50px rgba(0, 0, 0, 0.1);
}

.hero-right-panel-no-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.booking-card-modern {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
}

.booking-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #f4d03f, var(--primary-color));
}

.card-header-modern {
    padding: 30px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-header-modern h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.card-header-modern p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.card-body-modern {
    padding: 25px 30px;
}

.booking-form-preview {
    margin-bottom: 25px;
}

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

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

.service-option, .time-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-option span:first-child, .time-option span {
    color: var(--text-dark);
    font-weight: 500;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.time-option i {
    color: var(--primary-color);
}

.btn-booking-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    width: 100%;
}

.btn-booking-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.card-footer-modern {
    background: rgba(44, 62, 80, 0.03);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.contact-item-modern i {
    color: var(--primary-color);
    width: 16px;
}

.contact-item-modern span {
    color: var(--text-dark);
    font-weight: 500;
}

.social-modern {
    display: flex;
    gap: 10px;
}

.social-modern a {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-modern a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.testimonial-content .stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-content .stars i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-content p {
    color: var(--white);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.author-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Premium Booking Card */
.premium-booking-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
    animation: premiumFloat 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes premiumFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg); 
    }
    50% { 
        transform: translateY(-8px) rotateX(2deg); 
    }
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #f4d03f, var(--primary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.card-header-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.card-header-premium::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="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.header-content h4 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body-premium {
    padding: 30px;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(212, 175, 55, 0.12);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.booking-cta {
    margin-bottom: 25px;
}

.btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-premium::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.5s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-premium i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(3px);
}

.contact-premium {
    margin-bottom: 25px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding: 8px 0;
}

.contact-row i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-row span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.hours-premium {
    background: rgba(44, 62, 80, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.hours-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 0.9rem;
}

.hours-day {
    color: var(--text-light);
    font-weight: 500;
}

.hours-time {
    color: var(--primary-color);
    font-weight: 700;
    text-align: right;
}

.card-footer-premium {
    background: rgba(44, 62, 80, 0.03);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-premium {
    display: flex;
    gap: 12px;
}

.social-premium a {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-premium a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.rating-premium {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-premium span {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #2c2c2c;
    color: #ffffff;
}

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

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.about-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    margin-top: 5px;
}

.about-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

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

.about-image {
    position: relative;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rounded-lg {
    border-radius: var(--border-radius);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.section-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #2c2c2c;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    color: #ffffff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(44, 44, 44, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

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

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-description {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

/* Footer Section */
.footer-section {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-brand .social-links {
    margin-left: 0;
}

.footer-brand .social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-brand .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-hours h5,
.footer-contact h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.day {
    color: var(--white);
    font-weight: 500;
}

.time {
    color: var(--primary-color);
    font-weight: 600;
}

.booking-cta {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
}

.contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: #1a1a1a;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Booking Page Styles */
.booking-hero {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 80px;
}

.booking-hero-content .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.booking-hero-content .hero-description {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.booking-features {
    margin-top: 30px;
}

.booking-info-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.booking-info-card h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hours-info {
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-quick p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-quick i {
    color: var(--primary-color);
    margin-right: 8px;
}

.booking-widget-section {
    padding: 80px 0;
    background: #2c2c2c;
}

.booking-widget-container {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-widget-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.booking-widget-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}

.booking-widget-header p {
    margin: 0;
    opacity: 0.9;
}

.booking-widget {
    padding: 0;
}

/* Mobile Navigation Fixes */
@media (max-width: 991px) {
    .navbar-brand {
        margin-right: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .logo-img {
        height: 45px;
        width: auto;
        object-fit: contain;
    }
    
    .brand-text {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .navbar-toggler {
        border: none;
        padding: 6px 10px;
        margin-left: auto;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(26, 26, 26, 0.95);
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        margin: 0;
        text-align: center;
        color: #ffffff !important;
    }
    
    .btn-book-now {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }
}

/* Responsive Design */
@media (min-width: 1200px) {
    .hero-text {
        padding-right: 80px;
    }
    
    .hero-image-container {
        padding-left: 40px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 400px;
    }
    
    .hero-text {
        padding-right: 40px;
    }
    
    .hero-image-container {
        padding-left: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-image-container {
        padding-left: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }
    
    .about-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-modern {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-modern:last-child {
        margin-bottom: 0;
    }
    
    .contact-quick {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
    
    .booking-features {
        margin-top: 20px;
    }
    
    .feature-item {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1.1rem;
        width: 20px;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .hero-title-modern .title-line-1,
    .hero-title-modern .title-line-2 {
        font-size: 2.2rem; /* More subtle mobile hero */
    }
    
    .brand-text {
        font-size: 0.95rem; /* Subtle mobile brand text */
    }
    
    .section-title {
        font-size: 1.6rem; /* Subtle mobile section titles */
    }
    
    .welcome-text,
    .about-title,
    .brand-name,
    .main-heading {
        font-size: 1.2rem; /* Subtle mobile headings */
    }
    
    .modern-hero .row {
        flex-direction: column;
    }
    
    .hero-left-panel {
        padding: 60px 40px;
        height: auto;
        min-height: 60vh;
    }
    
    .hero-right-panel {
        padding: 40px 30px;
        height: auto;
        min-height: 40vh;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-right-panel-no-bg {
        padding: 40px 30px;
        height: auto;
        min-height: 40vh;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-social-modern {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .social-links-modern {
        gap: 10px;
    }
    
    .social-link-modern {
        padding: 15px 12px;
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    .social-link-modern i {
        font-size: 1.3rem;
    }
    
    .social-link-modern span {
        font-size: 0.75rem;
    }
    
    .hero-left-panel-full {
        padding: 80px 30px 60px;
    }
    
    .modern-hero {
        padding-top: 100px;
    }
    
    .hero-left-panel-full .hero-description-modern {
        max-width: 100%;
    }
    
    .hero-left-panel-full .hero-features-modern {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-left-panel-full .feature-modern {
        max-width: 300px;
        width: 100%;
    }
    
    .hero-title-modern {
        font-size: 3.5rem;
    }
    
    .header-modern {
        padding: 15px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        margin: 0;
    }
    
    .btn-book-now {
        padding: 0.6rem 1.25rem !important;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-features-modern {
        gap: 15px;
    }
    
    .booking-card-modern {
        margin-bottom: 20px;
    }
    
    .hero-testimonial {
        margin-top: 20px;
    }
    
    .booking-hero-content .hero-title {
        font-size: 2.2rem;
    }
    
    .booking-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        gap: 10px;
    }
    
    .logo-img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }
    
    .brand-text {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .navbar-toggler {
        padding: 4px 8px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        text-align: left;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .modern-hero {
        padding-top: 120px;
    }
    
    .hero-left-panel-full {
        padding: 40px 20px 60px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

/* Modern Button Styles */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-modern::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.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f4d03f 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-modern-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #e6c200 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-modern-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-modern-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 30px;
}

.btn-modern-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
}

.btn-modern i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-modern:hover i {
    transform: translateX(3px);
}

.btn-modern .btn-text {
    position: relative;
    z-index: 1;
}

/* Phone Button Styles */
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.btn-phone::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.5s ease;
}

.btn-phone:hover::before {
    left: 100%;
}

.btn-phone:hover {
    background: var(--primary-color);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border-color: var(--primary-color);
}

.btn-phone i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-phone:hover i {
    transform: scale(1.1);
    color: #000000;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-location:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-location i {
    transition: all 0.3s ease;
}

.btn-location:hover i {
    transform: scale(1.1);
    color: #000000;
}

/* Contact Info Button Styles */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 5px 0;
}

.contact-button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-button i {
    transition: all 0.3s ease;
}

.contact-button:hover i {
    transform: scale(1.1);
    color: var(--white);
}

/* Booking Features Styling */
.booking-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item span {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.feature-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.feature-item a:hover {
    color: inherit;
}
