/* ==========================================================================
   HeadKing Salon - Premium Design System & Stylesheet
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-primary: #0C0C0E;
    --bg-secondary: #141418;
    --bg-tertiary: #1D1D22;
    --bg-glass: rgba(20, 20, 24, 0.85);

    --accent-gold: #D4AF37;
    --accent-gold-light: #E5C453;
    --accent-gold-dark: #AA841A;
    --accent-gold-rgb: 212, 175, 55;

    --text-primary: #F5F5F7;
    --text-secondary: #A2A2A8;
    --text-muted: #6E6E73;

    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #128C7E;

    --font-title: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --border-color: rgba(212, 175, 55, 0.15);
    --border-color-light: rgba(255, 255, 255, 0.05);

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.15);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-40 {
    padding-top: 40px;
}

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

.gold-text {
    color: var(--accent-gold);
}

.gold-dot {
    color: var(--accent-gold);
}

.gold-text-gradient {
    background: linear-gradient(135deg, #F5E0A3 0%, #D4AF37 50%, #AA841A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.align-center {
    align-items: center;
}

/* Section Header Styles */
.section-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bg-dark-alt {
    background-color: var(--bg-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #000;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: #000;
}

.btn-gold-outline {
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 16px 36px;
    border-radius: 30px;
}

.btn-gold-outline:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #000;
    transform: scale(1.03);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header Navigation Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.main-header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color-light);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Hero Section Grid & Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-color: #0C0C0E;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(0.38);
    opacity: 0.65;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 12, 14, 0.45) 0%, rgba(12, 12, 14, 0.88) 100%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-col {
    max-width: 620px;
}

/* Pill badge style */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 60px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
}

.gold-text-italic {
    color: var(--accent-gold);
    font-style: italic;
    font-family: var(--font-title);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 550px;
}

/* Hero actions side by side on desktop */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    max-width: 500px;
}

.hero-actions .btn {
    flex: 1;
    height: 52px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
}

.hero-actions .btn-primary {
    background-color: var(--accent-gold);
    color: #000;
    border: none;
}

.hero-actions .btn-primary:hover {
    background-color: var(--accent-gold-light);
    box-shadow: var(--shadow-gold);
}

.hero-actions .btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-actions .btn-secondary i {
    color: var(--whatsapp-green);
    font-size: 18px;
}

.hero-actions .btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Stats Row */
.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

.stat-number .gold-text {
    font-size: 24px;
    vertical-align: top;
    margin-left: 2px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-top: 6px;
}

/* Right Column Frames - Overlapping Arch */
.hero-media-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-frames-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 500px;
}

.hero-frame {
    position: absolute;
    border: 2px solid var(--accent-gold);
    background-color: var(--bg-secondary);
    padding: 8px;
    overflow: visible;
    box-shadow: var(--shadow-md);
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arch styles (rounded top) */
.hero-frame.frame-1 {
    width: 63%;
    height: 75%;
    top: 0;
    left: -10px;
    border-radius: 130px 130px 0 0;
    z-index: 3;
}

.hero-frame.frame-1 img {
    border-radius: 122px 122px 0 0;
}

.hero-frame.frame-2 {
    width: 60%;
    height: 70%;
    bottom: 0;
    right: -10px;
    border-radius: 120px 120px 0 0;
    z-index: 2;
}

.hero-frame.frame-2 img {
    border-radius: 112px 112px 0 0;
}

/* Floating Badges */
.frame-badge {
    position: absolute;
    background-color: rgba(20, 20, 24, 0.95);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 4;
    min-width: 170px;
}

.frame-badge i {
    color: var(--accent-gold);
    font-size: 16px;
}

.badge-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-title {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
    line-height: 1.2;
}

.badge-desc {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.badge-top-left {
    top: 40px;
    left: -50px;
}

.badge-bottom-right {
    bottom: 30px;
    right: -30px;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-bottom-curve svg {
    width: 100%;
    height: 60px;
}

/* About Section */
.about-images-grid {
    position: relative;
    height: 520px;
}

.main-image-wrapper {
    position: absolute;
    width: 65%;
    height: 80%;
    top: 0;
    left: 0;
    border: 1px solid var(--border-color);
    padding: 10px;
    background-color: var(--bg-secondary);
}

.main-image-wrapper img,
.side-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.side-image-wrapper {
    position: absolute;
    width: 55%;
    height: 65%;
    bottom: 0;
    right: 0;
    border: 1px solid var(--border-color);
    padding: 10px;
    background-color: var(--bg-secondary);
    z-index: 2;
}

.experience-badge {
    position: absolute;
    left: 40px;
    bottom: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #000;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.experience-badge .years {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 30px;
}

.about-text-lead {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-text-body {
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 18px;
}

.feature-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.feature-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Highlight Bar */
.highlight-bar {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
    padding: 40px 0;
}

.highlight-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-item i {
    font-size: 32px;
    color: var(--accent-gold);
}

.highlight-item h4 {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.highlight-item p {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Services Section */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.services-tab-content {
    display: none;
}

.services-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-md);
}

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

.service-img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

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

.service-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.service-header h3 {
    font-family: var(--font-title);
    font-size: 19px;
    font-weight: 600;
}

.service-price {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    border: 1px solid var(--border-color);
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.service-info p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.5;
}

.book-service-btn {
    display: block;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.book-service-btn:hover {
    background-color: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

/* Gallery Section */
.gallery-front-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item-front {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--border-color-light);
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(12, 12, 14, 0.9) 0%, rgba(12, 12, 14, 0.2) 60%, rgba(12, 12, 14, 0) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-hover-overlay i {
    font-size: 24px;
    color: var(--accent-gold);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-hover-overlay span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item-front:hover .gallery-thumb {
    transform: scale(1.05);
}

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

.gallery-item-front:hover .gallery-hover-overlay i,
.gallery-item-front:hover .gallery-hover-overlay span {
    transform: translateY(0);
}

/* Review / Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    padding: 36px;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 30px;
    font-family: var(--font-title);
    font-size: 120px;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    pointer-events: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-gold);
}

.review-header h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 11px;
}

.google-icon {
    margin-left: auto;
    color: var(--text-muted);
}

.review-text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-date {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.rating-overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.rating-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.stars-row {
    color: var(--accent-gold);
    font-size: 20px;
    display: flex;
    gap: 4px;
}

.reviews-total {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Booking Form Section */
.booking-section {
    background-image: linear-gradient(to right, rgba(12, 12, 14, 0.95), rgba(12, 12, 14, 0.9)), url('images/salon_1.jpg');
    background-size: cover;
    background-position: center;
}

.booking-info-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-detail-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.booking-form-wrapper {
    background-color: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-family: var(--font-title);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color-light);
    padding-bottom: 16px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.required {
    color: var(--accent-gold);
}

.input-wrapper {
    position: relative;
    border-bottom: 1px solid var(--text-muted);
    transition: var(--transition-fast);
}

.input-wrapper i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition-fast);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 12px 12px 28px;
    color: var(--text-primary);
    font-size: 15px;
    background: transparent;
    border: none;
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
}

.input-wrapper select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.input-wrapper textarea {
    resize: none;
    height: 80px;
}

.input-wrapper.text-area-wrapper i {
    top: 20px;
}

.input-wrapper:focus-within {
    border-bottom-color: var(--accent-gold);
}

.input-wrapper:focus-within i {
    color: var(--accent-gold);
}

/* Maps section */
.map-btn-container {
    margin-top: 20px;
}

/* Footer Section */
.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color-light);
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14.5px;
    margin-bottom: 30px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
}

.social-links a:hover {
    color: #000;
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-hours h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 14.5px;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-hours ul {
    list-style: none;
}

.footer-hours ul li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color-light);
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Floating WhatsApp Widget */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-whatsapp-widget:hover {
    background-color: var(--whatsapp-green-hover);
    transform: scale(1.1) rotate(10deg);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--whatsapp-green);
    top: 0;
    left: 0;
    animation: pulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Fullscreen Gallery Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.open {
    display: flex;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 8, 0.95);
    backdrop-filter: blur(8px);
}

.gallery-modal-content {
    position: relative;
    width: 90%;
    max-width: 1300px;
    height: 85vh;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 38px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-modal-close:hover {
    color: var(--accent-gold);
}

.gallery-modal-header {
    margin-bottom: 30px;
}

.gallery-modal-header h2 {
    font-family: var(--font-title);
    font-size: 32px;
    margin-bottom: 8px;
}

.gallery-modal-header p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.gallery-filter-buttons .filter-btn {
    padding: 8px 18px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-filter-buttons .filter-btn:hover,
.gallery-filter-buttons .filter-btn.active {
    background-color: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.gallery-modal-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar for Modal Grid */
.gallery-modal-grid::-webkit-scrollbar {
    width: 6px;
}

.gallery-modal-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}

.gallery-modal-grid::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.gallery-modal-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

.grid-item-modal {
    position: relative;
    height: 180px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color-light);
    animation: fadeIn 0.4s ease forwards;
}

.grid-item-modal img {
    width: 100%;
    height: 100%;
}

.grid-item-modal .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 12, 14, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.grid-item-modal:hover .overlay {
    opacity: 1;
}

.grid-item-modal .overlay i {
    font-size: 20px;
    color: var(--accent-gold);
}

/* Lightbox Slideshow Modal */
.lightbox-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-slider.open {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    background: none;
    border: none;
    color: #fff;
    font-size: 44px;
    cursor: pointer;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-image-container {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lightbox-caption {
    margin-top: 15px;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content-col {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        width: 100%;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }

    .hero-stats {
        justify-content: center;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }

    .hero-media-col {
        width: 100%;
        margin-top: 20px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images-grid {
        width: 100%;
        max-width: 480px;
        height: 420px;
        margin: 0 auto;
        position: relative;
    }

    .experience-badge {
        left: 20px;
        bottom: 20px;
        padding: 12px 18px;
        z-index: 5;
    }

    .experience-badge .years {
        font-size: 18px;
    }

    .about-content {
        padding-left: 0;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-front-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-front:last-child {
        grid-column: span 2;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .main-header.scrolled .nav-menu {
        background-color: var(--bg-secondary);
    }

    .header-actions .btn {
        display: none;
        /* Hide button on mobile, toggle menu handles CTAs */
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-actions {
        width: 100%;
        max-width: 100%;
        gap: 12px;
        margin-bottom: 36px;
    }

    .hero-actions .btn {
        height: 48px;
        font-size: 13px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 10px;
    }

    .hero-frames-container {
        height: 380px;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-frame.frame-1 {
        border-radius: 90px 90px 0 0;
        z-index: 3;
    }

    .hero-frame.frame-1 img {
        border-radius: 82px 82px 0 0;
    }

    .hero-frame.frame-2 {
        border-radius: 80px 80px 0 0;
    }

    .hero-frame.frame-2 img {
        border-radius: 72px 72px 0 0;
    }

    .badge-top-left {
        left: -30px;
        top: 20px;
        min-width: 150px;
        padding: 6px 12px;
    }

    .badge-bottom-right {
        right: -20px;
        bottom: 20px;
        min-width: 150px;
        padding: 6px 12px;
    }

    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .services-grid,
    .reviews-grid,
    .gallery-front-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-front,
    .gallery-item-front:last-child {
        grid-column: auto;
        height: 320px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form-wrapper {
        padding: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .gallery-modal-content {
        padding: 24px 15px;
        height: 90vh;
    }

    .gallery-filter-buttons {
        flex-wrap: wrap;
    }
}

/* Custom Scroll Animations */
[data-fade] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    /* Avoid blocking clicks while invisible */
}

[data-fade].appear {
    opacity: 1;
    transform: translate(0, 0) !important;
    pointer-events: auto;
}

[data-fade="up"] {
    transform: translateY(35px);
}

[data-fade="left"] {
    transform: translateX(-40px);
}

[data-fade="right"] {
    transform: translateX(40px);
}