/* 
   Zha Dance Studio - Main Stylesheet
   Color Scheme adjusted to Logo Gradient Theme
*/

/* Google Fonts Integration */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Roboto:wght@400;500;700;900&display=swap');

/* Color Variables and Tokens based on Logo */
:root {
    --bg-dark: #080808;
    --bg-card: #121212;
    
    /* Logo Colors */
    --logo-pink: #e81c4f;
    --logo-purple: #7e22ce;
    --logo-blue: #1c52e8;
    
    /* Theme Mappings */
    --primary: var(--logo-pink);
    --primary-hover: #ff3b72;
    --accent: var(--logo-purple);
    --accent-hover: #9333ea;
    --blue-accent: var(--logo-blue);
    
    --logo-gradient: linear-gradient(135deg, var(--logo-pink) 0%, var(--logo-purple) 50%, var(--logo-blue) 100%);
    --logo-gradient-hover: linear-gradient(135deg, #ff3b72 0%, #9333ea 50%, #3b6cff 100%);
    
    --text-main: #f5f5f5;
    --text-muted: #a7a6a5;
    --text-dark: #3a3a3a;
    --white: #ffffff;
    --black: #000000;
    
    --font-body: 'Lato', sans-serif;
    --font-heading: 'Roboto', sans-serif;
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;
    --border-radius-pill: 50px;
    
    --glass-bg: rgba(8, 8, 8, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

a:hover, a:focus {
    color: var(--primary);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.2;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Typography Utility Classes */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }

/* Common Layout Components */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title-wrap {
    margin-bottom: 50px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Header & Navigation */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
}

.site-header.sticky {
    position: fixed;
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo a {
    display: inline-flex;
    align-items: center;
    background-color: var(--white);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

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

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

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

.nav-link.active {
    color: var(--white);
}

/* Header Button */
.btn-header {
    background: var(--logo-gradient);
    color: var(--white);
    font-weight: 700;
    padding: 10px 25px;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232, 28, 79, 0.3);
    transition: var(--transition-fast);
}

.btn-header:hover {
    background: var(--logo-gradient-hover);
    box-shadow: 0 6px 20px rgba(232, 28, 79, 0.5);
    transform: translateY(-2px);
}

/* Mobile Toggler */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.6) 50%, rgba(8, 8, 8, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 60px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.1;
    animation: zoomIn 1s ease;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    animation: fadeInUp 1.2s ease;
}

.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.4s ease;
}

/* Universal Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--logo-gradient);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(232, 28, 79, 0.3);
}

.btn-primary:hover {
    background: var(--logo-gradient-hover);
    box-shadow: 0 8px 25px rgba(232, 28, 79, 0.5);
    transform: translateY(-3px);
}

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

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

/* Shape Dividers (Like Astra/Elementor Curve) */
.shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}

.shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider-bottom .shape-fill {
    fill: var(--bg-dark);
}

/* Info Cards Block */
.info-section {
    background-color: var(--bg-dark);
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-fast);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(232, 28, 79, 0.15);
}

.info-card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card-desc {
    color: var(--text-muted);
}

/* Flip Boxes for Dance Classes */
.classes-section {
    background-color: var(--bg-dark);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.flip-box {
    background-color: transparent;
    perspective: 1000px;
    height: 380px;
    border-radius: var(--border-radius-md);
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    border-radius: var(--border-radius-md);
}

/* Active Class or Hover triggers flip */
.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front, .flip-box-rear {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.flip-box-front {
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.flip-box-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.85) 100%);
    z-index: 1;
}

.flip-box-front-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
}

.flip-box-tag {
    background: var(--logo-gradient);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 15px;
}

.flip-box-title {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.flip-box-rear {
    background-color: var(--bg-card);
    transform: rotateY(180deg);
    justify-content: center;
}

.flip-box-rear-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.flip-box-rear-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.flip-box-rear-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.flip-box-btn {
    background: var(--logo-gradient);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
}

.flip-box-btn:hover {
    background: var(--logo-gradient-hover);
    transform: scale(1.05);
}

/* Split Image and Text section (A Space for your Dreams) */
.split-section {
    background-color: var(--bg-card);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-col {
    flex: 1;
}

.split-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.split-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin-top: 15px;
}

.split-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Image Carousel / Showcase wrapper */
.carousel-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.carousel-slide {
    height: 450px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-dark);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    text-align: center;
}

.stars-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    color: #ffb400;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: var(--border-radius-pill);
}

/* Team/Instructors Grid */
.team-section {
    background-color: var(--bg-card);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background-color: var(--bg-dark);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-fast);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.team-image-box {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}

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

.team-card:hover .team-image-box img {
    transform: scale(1.08);
}

.team-info {
    padding: 25px 20px;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

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

/* Footer Section */
.site-footer {
    background-color: var(--black);
    color: var(--text-muted);
    padding: 70px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    margin-top: 10px;
}

.footer-about-text {
    margin-top: 20px;
    font-size: 0.95rem;
}

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

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #111;
    color: var(--white);
    font-size: 1rem;
}

.footer-social-btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #050505;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.copyright-text {
    font-size: 0.9rem;
}

/* Outer Banner (About us banner page, classes page, contact, etc.) */
.page-banner {
    position: relative;
    padding: 160px 0 100px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    background-color: #050505;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--primary);
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

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

.service-img-box {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

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

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features-list {
    margin-top: 15px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.service-feature-item i {
    color: var(--primary);
}

/* Gallery Filter Layout */
.gallery-filter-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--bg-card);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 25px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 2;
    padding: 20px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.gallery-item-cat {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-item-title,
.gallery-item:hover .gallery-item-cat {
    transform: translateY(0);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 50px;
}

.contact-info-panel {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 40px;
}

.contact-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(232, 28, 79, 0.1);
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-info-details p {
    color: var(--text-muted);
}

.contact-info-details a {
    color: var(--text-muted);
}

.contact-info-details a:hover {
    color: var(--primary);
}

/* Map container */
.map-container {
    height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg);
}

/* Contact Form */
.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 40px;
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(232, 28, 79, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-submit-btn {
    width: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
    color: var(--white);
}

/* Pulse Animation for WhatsApp */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsappPulse 1.8s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Booking Modal Form */
.book-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.book-modal.show-modal {
    opacity: 1;
    pointer-events: auto;
}

.book-modal-content {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 90%;
    max-width: 500px;
    padding: 35px;
    border-radius: var(--border-radius-md);
    position: relative;
    transform: translateY(-50px);
    transition: var(--transition-slow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.book-modal.show-modal .book-modal-content {
    transform: translateY(0);
}

.book-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.book-modal-close:hover {
    color: var(--primary);
}

.book-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 921px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: var(--transition-slow);
        z-index: 1050;
    }
    
    .nav-list.open {
        right: 0;
    }
    
    .main-nav .btn-header {
        display: none;
    }
    
    .split-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    .hero-btn-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    .section-padding {
        padding: 50px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
