/* Global Styles */
:root {
    --primary-color: #d4af37;
    /* Gold */
    --bg-color: #111111;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --secondary-bg: #1a1a1a;
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-family: var(--font-subheading);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-subheading);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-gold {
    background-color: var(--primary-color);
    color: #000;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-gold:hover::before {
    left: 0;
}

.btn-gold:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    font-family: var(--font-subheading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.header-btn {
    display: block;
}

.header-btn .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero_bg.png');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

/* ===================================
   FEATURED APPOINTMENT SECTION
   =================================== */
.featured-appointment {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.featured-appointment .container {
    position: relative;
    z-index: 3;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-info h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
}

.featured-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.featured-stars i {
    color: var(--primary-color);
    font-size: 18px;
}

.featured-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.featured-phone:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.featured-phone i {
    font-size: 40px;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-family: var(--font-subheading);
    font-size: 12px;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--primary-color);
}

.barber-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.badge-item {
    text-align: center;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.badge-item i {
    font-size: 30px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.badge-item span {
    font-family: var(--font-subheading);
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-form-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-form-card h3 {
    font-size: 28px;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.quick-appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.quick-appointment-form .form-group {
    margin-bottom: 0;
}

.quick-appointment-form input,
.quick-appointment-form select {
    width: 100%;
    padding: 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    font-family: var(--font-body);
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-appointment-form input[type="date"] {
    position: relative;
    cursor: pointer;
}

.quick-appointment-form input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.quick-appointment-form input:focus,
.quick-appointment-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
}

.btn-appointment {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #000;
    font-family: var(--font-subheading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-appointment:hover {
    background: #000;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 1024px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-info h2 {
        font-size: 32px;
    }
    
    .barber-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-appointment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .featured-bg {
        background-attachment: scroll;
    }
    
    .phone-number {
        font-size: 24px;
    }
}

/* About Section */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features li {
    margin-bottom: 15px;
    color: #eee;
    font-size: 16px;
}

.about-features i {
    color: var(--primary-color);
    margin-right: 15px;
}

/* Tablet / Mobile */
@media (max-width: 900px) {
    .site-header .main-nav {
        display: none;
        /* Hide for now, toggle later */
    }

    .mobile-menu-toggle {
        display: block;
        color: #fff;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .about-wrapper {
        flex-direction: column;
    }
}

/* Services & Pricing */
.bg-secondary {
    background-color: var(--secondary-bg);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-item {
    background: var(--bg-color);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    color: #fff;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: var(--primary-color);
}

.service-item p {
    color: var(--text-muted);
}

.package-list {
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
    list-style-type: disc;
    color: #ccc;
    font-size: 14px;
}

.price-tag {
    font-family: var(--font-subheading);
    color: var(--primary-color) !important;
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
}

/* Pricing Grid */
.pricing-menu {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.price-col {
    flex: 1;
}

.price-col h3 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
    color: #fff;
}

.offer-box {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border: 1px solid var(--primary-color);
    margin-bottom: 20px;
}

.offer-box h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.offer-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-top: 10px;
}

.offer-price del {
    font-size: 14px;
    color: #666;
    margin-left: 10px;
}

.price-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
    border-bottom-color: var(--primary-color);
}

.price-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-item:last-child:hover {
    border-bottom-color: var(--primary-color);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.price-header h4 {
    margin-bottom: 0;
    font-size: 18px;
    color: #fff;
}

.price {
    font-family: var(--font-subheading);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.price-item p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pricing-menu {
        flex-direction: column;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-item {
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info .role {
    color: var(--primary-color);
    font-family: var(--font-subheading);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-item {
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.team-item:hover .team-img::before {
    left: 100%;
}

.team-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-item:hover .team-img img {
    transform: scale(1.1);
}
.stats-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(17, 17, 17, 1) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .stat-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2);
    color: #fff;
    animation-play-state: paused;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-item .stat-label {
    font-family: var(--font-subheading);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background: var(--secondary-bg);
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.testimonial-source {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 12px;
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-source i {
    color: #4285F4;
    font-size: 14px;
}

.testimonial-text {
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-rating {
    margin-bottom: 0;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 3px;
}

.testimonial-author {
    font-family: var(--font-subheading);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

/* ===================================
   VIDEO PROMO SECTION
   =================================== */
.video-promo {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.video-promo .container {
    position: relative;
    z-index: 2;
}

.video-promo h2 {
    color: #fff;
    margin-bottom: 40px;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.play-button:hover {
    background: #fff;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: var(--primary-color);
}

.video-modal iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-item {
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.team-item:hover .team-img::before {
    left: 100%;
}

.team-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-item:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info .role {
    color: var(--primary-color);
    font-family: var(--font-subheading);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-details {
    margin: 30px 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 18px;
    color: #ddd;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 20px;
    margin-top: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-details li:hover i {
    transform: scale(1.3) rotate(10deg);
    color: #fff;
}

.opening-hours {
    background: var(--secondary-bg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.opening-hours h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.opening-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.opening-hours ul li:last-child {
    border-bottom: none;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

input,
select {
    width: 100%;
    padding: 15px;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    cursor: pointer;
}

input[type="date"],
input[type="time"] {
    position: relative;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

input:hover,
select:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp {
    display: block;
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: #fff;
    text-align: center;
    font-family: var(--font-subheading);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid #25D366;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 18px;
}

/* ===================================
   GOOGLE MAP SECTION
   =================================== */
.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg-color);
}

.map-header {
    background: var(--secondary-bg);
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.map-header h2 {
    margin-bottom: 30px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.map-btn i {
    font-size: 18px;
}

.map-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.map-image-container a {
    display: block;
    position: relative;
}

.map-image {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(20%) brightness(90%);
    transition: all 0.3s ease;
}

.map-image:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.02);
}

/* Footer */
.site-footer {
    background: #000;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--primary-color);
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 18px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #000;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* ===================================
   LOADING SCREEN
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader {
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   MOBILE NAVIGATION OVERLAY
   =================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-nav-close:hover {
    color: var(--primary-color);
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav ul li {
    margin: 20px 0;
}

.mobile-nav ul li a {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-nav .btn {
    margin-top: 30px;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #fff;
    transform: translateY(-5px);
}

/* ===================================
   HEADER SCROLLED STATE
   =================================== */
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===================================
   FORM MESSAGE
   =================================== */
.form-message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    display: none;
    animation: fadeInUp 0.3s ease;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===================================
   ANIMATION ENHANCEMENTS
   =================================== */
.service-item,
.team-item,
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-item.animate-in,
.team-item.animate-in,
.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   PROMINENT SERVICE PACKAGE
   =================================== */
.service-item.prominent {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    position: relative;
}

.service-item.prominent::before {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-item.prominent:hover {
    transform: scale(1.08);
}

/* ===================================
   IMPROVED RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .service-item.prominent {
        transform: scale(1);
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item .stat-number {
        font-size: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .video-promo {
        height: 400px;
        background-attachment: scroll;
    }

    .video-modal iframe {
        height: 300px;
    }
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .site-header,
    .mobile-nav-overlay,
    .scroll-top,
    .loading-screen,
    footer {
        display: none;
    }
    
    .hero-section {
        page-break-after: always;
    }
}

/* ===================================
   FLOATING ACTION BUTTONS
   =================================== */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.phone-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 25px rgba(118, 75, 162, 0.5);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: scale(1.1) rotate(-15deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content i {
    color: var(--primary-color);
    font-size: 24px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: #000;
}

.btn-accept:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ===================================
   FOOTER ENHANCEMENTS
   =================================== */
.footer-links {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS FOR NEW FEATURES
   =================================== */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 80px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links span {
        display: none;
    }
}

/* ===================================
   COMPREHENSIVE RESPONSIVE DESIGN
   =================================== */

/* Extra Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 80px;
    }
}

/* Large Tablets & Small Laptops */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }
    
    .hero-content h1 {
        font-size: 55px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 35px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Typography */
    .hero-content h1 {
        font-size: 45px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    /* Header */
    .site-header .container {
        padding: 0 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Statistics */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 35px;
    }
    
    /* Featured Appointment */
    .featured-appointment-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .appointment-form-side,
    .appointment-info-side {
        padding: 30px 20px;
    }
    
    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-content h2 {
        font-size: 30px;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Video Promo */
    .video-promo {
        height: 400px;
        background-attachment: scroll;
    }
    
    .video-content h2 {
        font-size: 32px;
    }
    
    /* Contact */
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Footer */
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    /* Typography */
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title .subtitle {
        font-size: 12px;
    }
    
    /* Header */
    .logo-text {
        font-size: 18px;
    }
    
    .mobile-menu-toggle {
        font-size: 24px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    /* Featured Appointment */
    .phone-number {
        font-size: 20px;
    }
    
    .qr-code img {
        width: 120px;
        height: 120px;
    }
    
    .quick-appointment-form input,
    .quick-appointment-form select {
        padding: 12px;
        font-size: 14px;
    }
    
    .quick-appointment-form .btn-submit {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    /* Video Promo */
    .video-promo {
        height: 300px;
    }
    
    .video-content h2 {
        font-size: 24px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    /* Scroll to Top */
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Cookie Banner */
    .cookie-content p {
        font-size: 12px;
    }
    
    .cookie-content i {
        font-size: 20px;
    }
    
    .cookie-buttons button {
        padding: 8px 20px;
        font-size: 12px;
    }
}

/* Small Mobile Phones */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .phone-number {
        font-size: 18px;
    }
}