/* 
   EXTENSIONPORT SALON - Ultra-Luxury Theme 
   Color Palette: Black, Deep Charcoal, Subtle Gold, Warm Ivory, Champagne Blush 
*/

:root {
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --gold: #D4AF37;
    --gold-rgb: 212, 175, 55;
    --ivory: #F5F5F5;
    --blush: #E7DCD2;
    --glass-bg: rgba(13, 13, 13, 0.6);
    --glass-border: rgba(212, 175, 55, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    background-color: var(--black);
    color: var(--ivory);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* For custom cursor */
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-large {
    max-width: 1400px;
}

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

.dark-bg { background-color: var(--charcoal); }
.pure-black-bg { background-color: var(--black); }
.gold-text { color: var(--gold); }
.text-center { text-align: center; }

.title-separator {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 20px 0 30px;
}
.title-separator.center { margin: 20px auto 30px; }

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear, width 0.3s, height 0.3s, border-color 0.3s;
}

/* Hover effects for custom cursor */
.cursor.active {
    width: 12px;
    height: 12px;
    background-color: var(--ivory);
}
.cursor-follower.active {
    width: 60px;
    height: 60px;
    border-color: var(--ivory);
    background-color: rgba(245, 245, 245, 0.05);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.preloader-content {
    position: relative;
    text-align: center;
}

.preloader-logo {
    width: 250px;
    position: relative;
    z-index: 2;
    animation: fadeInScale 2s infinite alternate;
}

.gold-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, rgba(13,13,13,0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes fadeInScale {
    0% { opacity: 0.7; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    cursor: none; /* override default cursor */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

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

/* Header & Navigation */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

#header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 70px;
    transition: var(--transition);
}

#header.scrolled .header-logo {
    height: 55px;
}

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

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

.nav-links li a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ivory);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-btn {
    margin-left: 30px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2000;
}

.bar1, .bar2, .bar3 {
    width: 25px;
    height: 2px;
    background-color: var(--ivory);
    margin: 5px 0;
    transition: 0.4s;
}

.change .bar1 { transform: translate(0, 7px) rotate(-45deg); }
.change .bar2 { opacity: 0; }
.change .bar3 { transform: translate(0, -7px) rotate(45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--charcoal);
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

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

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

.mobile-links li {
    margin: 25px 0;
}

.mobile-links li a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--ivory);
    letter-spacing: 2px;
}

.mobile-links li a:hover {
    color: var(--gold);
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 115%; /* Extra height for parallax */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(13, 13, 13, 0.4) 0%, 
        rgba(13, 13, 13, 0.6) 80%, 
        rgba(13, 13, 13, 1) 100%
    );
    z-index: 2;
}

.particles-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-size: 5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--ivory);
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--blush);
    font-weight: 300;
}

.hero-action {
    display: flex;
    justify-content: center;
}

.hero-action i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--ivory);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background-color: var(--gold);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.premium-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: #ccc;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ivory);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-top: 5px;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-card {
    position: relative;
    overflow: hidden;
}

.image-reveal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--black);
    z-index: 2;
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.about-image-card:hover .about-img {
    filter: brightness(1);
    transform: scale(1.02);
}

.gold-frame {
    position: absolute;
    top: 20px; left: -20px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

/* Services Section */
.section-subtitle {
    color: var(--blush);
    font-weight: 300;
    margin-bottom: 60px;
}

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

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.5);
}

.glass-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--ivory);
}

.service-desc {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.service-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Gallery Section */
.gallery-masonry {
    column-count: 3;
    column-gap: 30px; /* More breathing room */
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    cursor: none;
    border-radius: 4px;
    border: 3px solid var(--gold); /* Ultra luxury golden border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.2); /* Deep shadow with subtle inner glow */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Elegant inner gold frame that scales in on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border: 1px solid var(--gold);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
}

.gallery-item:hover::after {
    opacity: 0.8;
    transform: scale(1);
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    /* Cinematic easing */
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 1.2s ease;
    filter: brightness(0.7) contrast(1.1) grayscale(20%); /* Moody default state */
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08); /* Slower, deeper zoom */
    filter: brightness(1.1) contrast(1.0) grayscale(0%); /* Pop full color */
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

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

.zoom-icon {
    color: var(--black);
    background-color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transform: translateY(30px) scale(0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gallery-item:hover .zoom-icon {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 2.5rem;
    color: var(--ivory);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Testimonials */
.relative { position: relative; }
.z-index-2 { position: relative; z-index: 2; }

.particles-bg-subtle {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(212,175,55,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

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

.testimonial-slider {
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0; left: 0; width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--ivory);
    margin-bottom: 30px;
    line-height: 1.8;
}

.author-name {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.author-stars {
    color: var(--gold);
    font-size: 0.8rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-arrow {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--ivory);
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: none;
    transition: var(--transition);
}

.slider-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--gold);
    transform: scale(1.3);
}

/* Booking & Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-col .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.contact-info-col .title-separator {
    margin: 20px 0 30px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 40px; height: 40px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-text p, .contact-text a {
    color: #bbb;
    font-weight: 300;
}

.contact-text a:hover {
    color: var(--gold);
}

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

.social-btn {
    width: 45px; height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ivory);
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--black);
    background-color: var(--gold);
}

.glass-form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--gold);
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.08);
}

.luxury-form select option {
    background-color: var(--charcoal);
    color: var(--ivory);
}

/* Map */
.map-section {
    line-height: 0; /* Remove gap below iframe */
}

/* Professional Footer Revamp */
.footer {
    padding: 100px 0 30px;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

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

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 25px;
}

.footer-desc {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 320px;
    font-weight: 300;
}

.footer-links h4 {
    font-family: var(--font-heading);
    color: var(--ivory);
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    color: #a0a0a0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
}

.footer-links ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--gold);
    margin-right: 0;
    transition: all 0.4s ease;
}

.footer-links ul li a:hover {
    color: var(--ivory);
}

.footer-links ul li a:hover::before {
    width: 20px;
    margin-right: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    font-size: 0.85rem;
    color: #777;
    letter-spacing: 1px;
}

/* Floating WA Button */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: waPulse 2s infinite;
    cursor: none;
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--charcoal);
    color: var(--ivory);
    padding: 8px 15px;
    font-size: 0.85rem;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.1);
}

.floating-wa-btn:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

/* Responsiveness */
/* Laptop / Large Tablet Breakpoint */
@media (max-width: 1024px) {
    .about-container, .contact-layout {
        gap: 40px;
    }
    .hero-title { font-size: 4rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { column-count: 2; column-gap: 20px; }
    
    .footer-container { gap: 30px; }
    .footer-links h4 { font-size: 1.1rem; }
    .footer-desc { font-size: 0.85rem; }
}

/* Tablet Portrait / Large Mobile Breakpoint */
@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .hamburger { display: block; }
    
    /* Hero Adjustments */
    .hero-title { font-size: 3rem; letter-spacing: 3px; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 30px; }
    .hero-action { flex-direction: column; align-items: center; gap: 15px; }
    
    /* About Section */
    .about-container { grid-template-columns: 1fr; }
    .about-image-wrapper { order: -1; } /* Image on top */
    .about-img { height: 400px; }
    .about-stats { flex-direction: column; gap: 20px; text-align: center; }
    
    /* Services & Gallery grid */
    .services-grid { grid-template-columns: 1fr; }
    .gallery-masonry { column-count: 1; }
    .gallery-item { margin-bottom: 20px; }
    
    /* Testimonials tightening */
    .testimonial-text { font-size: 1.1rem; }
    
    /* Contact and Footer layout handling */
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .form-group.half { width: 100%; margin-bottom: 20px; }
    
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand { padding-right: 0; margin: 0 auto; display: flex; flex-direction: column; align-items: center;}
    .footer-links h4::after { left: 50%; transform: translateX(-50%); }
    
    /* WhatsApp Button adjust */
    .floating-wa-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
    .wa-tooltip { display: none; } /* Hide tooltip on touch */
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    
    .btn-large { padding: 12px 25px; font-size: 0.85rem; }
    
    .about-img { height: 300px; }
    
    .glass-card { padding: 25px 20px; }
    
    .glass-form-container { padding: 25px 15px; }
    .form-title { font-size: 1.4rem; }
}
