/* ========================================
   LUXE HAIR STUDIO - STYLESHEET
   
   A modern, responsive hair salon website
   Built with pure CSS - no frameworks
   
   Table of Contents:
   1. Reset & Base Styles
   2. Navigation
   3. Hero Section & Carousel
   4. Store Hours Status
   5. Gallery Section
   6. Contact Section
   7. Animations & Effects
   8. Mobile Responsive Design
   ======================================== */

/* ========================================
   1. RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #000000 0%, #1a0a1a 50%, #000000 100%);
    overflow-x: hidden;
}

/* Disable automatic phone and email detection styling */
a[href^="tel:"],
a[href^="mailto:"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* Override browser auto-detection of phone numbers and emails */
p, div, span {
    -webkit-text-size-adjust: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Re-enable text selection for form inputs */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Specifically target phone and email text to prevent blue styling */
.info-details p,
.contact-info p {
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

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

/* ========================================
   2. NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-square {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff69b4, #ffb6c1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
    flex-shrink: 0;
}

.nav-logo h2 {
    margin: 0;
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: #ff69b4;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover {
    color: #ff69b4;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff69b4, #ffb6c1);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff69b4;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   3. HERO SECTION & CAROUSEL
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #2a0a2a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 20px;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 100px);
}

/* Background pattern removed - all images now in HTML only */

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    animation: fadeInLeft 1s ease;
    margin-right: 2rem;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #ff69b4;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(255, 105, 180, 0.4);
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #ffb6c1;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(135deg, #ff69b4, #ffb6c1, #ff1493);
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
    font-family: 'Dancing Script', cursive;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button:hover::before,
.cta-button:active::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover,
.cta-button:active {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.6);
    background: linear-gradient(135deg, #ffb6c1, #ff69b4, #ff1493);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Carousel */
.hero-carousel-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: rotate(-5deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: gentleHeroFloat 6s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
    transform: rotate(-5deg) scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.hero-carousel:hover .hero-slide.active {
    transform: rotate(0deg) scale(1.05);
}

@keyframes gentleHeroFloat {
    0%, 100% { transform: rotate(-5deg) scale(1) translateY(0px); }
    33% { transform: rotate(-3deg) scale(1) translateY(-8px); }
    66% { transform: rotate(-7deg) scale(1) translateY(-5px); }
}

/* Hero Carousel Dots */
.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 105, 180, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #ff69b4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
    transform: scale(1.3);
    border-color: #ff69b4;
}

.hero-dot:hover {
    border-color: #ff69b4;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

/* Mobile Responsive Hero Carousel */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        min-height: auto;
    }
    
    .hero-content {
        order: 2;
        margin-top: 2rem;
        margin-right: 0;
    }
    
    .hero-carousel-container {
        order: 1;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-carousel {
        height: 320px;
        max-width: 320px;
        width: 320px;
        aspect-ratio: 1/1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-carousel-dots {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel-container {
        max-width: 280px;
    }
    
    .hero-carousel {
        height: 280px;
        max-width: 280px;
        width: 280px;
        aspect-ratio: 1/1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .hero-carousel-dots {
        margin-top: 1rem;
    }
    
    .hero-dot {
        width: 12px;
        height: 12px;
    }
}

/* ========================================
   4. STORE HOURS STATUS WIDGET
   ======================================== */
.section-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #ff69b4;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
}

.section-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: #ffb6c1;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease;
}

.owner-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #ffb6c1;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.credentials {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.credential-icon {
    margin-right: 1rem;
    color: #ff69b4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.credential-icon svg {
    color: #ff69b4;
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
}

.about-image {
    animation: fadeInRight 1s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #2a0a2a 50%, #000000 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.5);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

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

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    backdrop-filter: blur(8px);
}

.service-content h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #ff69b4;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-content p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffb6c1;
    background: rgba(255, 105, 180, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

/* ========================================
   5. GALLERY SECTION
   ======================================== */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
    animation: gentleFloat 4s ease-in-out infinite;
    cursor: pointer;
    /* Improve touch handling */
    touch-action: manipulation;
}

.gallery-item:nth-child(even) {
    transform: rotate(2deg);
}

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

.gallery-item:nth-child(even) {
    animation: gentleFloatReverse 4s ease-in-out infinite;
}

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

.gallery-item:hover {
    transform: rotate(0deg) scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.6);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    /* Prevent touch zoom and selection during scroll */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #ff69b4;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ========================================
   6. CONTACT SECTION & FORMS
   ======================================== */

/* Contact Section */
.salon-interior {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #2a0a2a 50%, #000000 100%);
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.interior-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.interior-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.4);
}

.interior-item img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.interior-item:hover img {
    transform: scale(1.1);
}

.store-status {
    padding: 20px 0;
    background: transparent;
}

.status-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    max-width: 350px;
    margin: 0 auto;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.status-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.5);
}

.status-icon {
    display: none;
}

.bell-icon {
    animation: bellShake 1.5s infinite;
}

.clock-icon {
    animation: tickTock 2s infinite;
}

@keyframes bellShake {
    0%, 50%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-20deg); }
    20%, 40% { transform: rotate(20deg); }
}

@keyframes tickTock {
    0%, 100% { transform: rotate(-3deg) scale(1); }
    50% { transform: rotate(3deg) scale(1.05); }
}

.status-content {
    flex: 1;
    text-align: center;
}

.status-content h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

@keyframes glow {
    from { 
        text-shadow: 0 2px 4px rgba(255, 105, 180, 0.3);
        transform: scale(1);
    }
    to { 
        text-shadow: 0 2px 20px rgba(255, 105, 180, 0.8), 0 0 30px rgba(255, 105, 180, 0.5);
        transform: scale(1.02);
    }
}

.status-content p {
    color: #e0e0e0;
    margin-bottom: 0.1rem;
    font-size: 0.85rem;
}

/* Status-specific colors */
.status-open {
    color: #4CAF50 !important;
    background: none !important;
    background-color: transparent !important;
}

.status-closed {
    color: #f44336 !important;
    background: none !important;
    background-color: transparent !important;
}

.status-closing-soon {
    color: #FF9800 !important;
    animation: pulse 2s infinite;
    background: none !important;
    background-color: transparent !important;
}

.status-opening-soon {
    color: #2196F3 !important;
    background: none !important;
    background-color: transparent !important;
}

.status-holiday, .status-vacation {
    color: #9C27B0 !important;
    background: none !important;
    background-color: transparent !important;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Countdown Timer Styles */
.countdown-timer {
    margin-top: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 20, 147, 0.15));
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.4);
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    animation: timerPulse 3s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.countdown-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff69b4;
    text-shadow: 0 2px 10px rgba(255, 105, 180, 0.6);
}

.bell-icon {
    color: #ff69b4;
    filter: drop-shadow(0 2px 10px rgba(255, 105, 180, 0.6));
    width: 18px;
    height: 18px;
}

.shake-bell {
    animation: shake-bell 1.5s infinite;
}

@keyframes shake-bell {
    0%, 50%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

.shake-phone {
    animation: shake-phone 1.2s infinite;
}

@keyframes shake-phone {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-8deg); }
    20%, 40%, 60%, 80% { transform: rotate(8deg); }
}

@keyframes timerPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
    }
}

.timer-display {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #ff69b4;
    text-shadow: 0 3px 15px rgba(255, 105, 180, 0.6);
    margin-bottom: 0.5rem;
    animation: numberBounce 1s infinite;
}

@keyframes numberBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.timer-label {
    font-size: 0.8rem;
    color: #ffb6c1;
    margin: 0;
    font-style: italic;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: labelGlow 2s ease-in-out infinite alternate;
}

@keyframes labelGlow {
    from { opacity: 0.8; }
    to { opacity: 1; text-shadow: 0 2px 10px rgba(255, 182, 193, 0.8); }
}

.timer-display span {
    display: inline-block;
    min-width: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 105, 180, 0.1));
    border-radius: 8px;
    padding: 0.2rem 0.3rem;
    margin: 0 0.1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.3);
    animation: digitFlip 0.6s ease-in-out;
}

@keyframes digitFlip {
    0% { transform: rotateY(-180deg); opacity: 0; }
    50% { transform: rotateY(-90deg); opacity: 0.5; }
    100% { transform: rotateY(0deg); opacity: 1; }
}



/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 105, 180, 0.1);
    border-color: rgba(255, 105, 180, 0.4);
    transform: translateX(10px);
}

.info-icon {
    min-width: 30px;
    color: #ff69b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    color: #ff69b4;
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
    transition: all 0.3s ease;
}

.info-item:hover .info-icon svg {
    transform: scale(1.1);
    color: #ffb6c1;
}

.info-details h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: #ff69b4;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-details p {
    color: #e0e0e0 !important;
    line-height: 1.6;
    text-decoration: none !important;
    border: none !important;
    background: none !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-color: transparent !important;
    -webkit-text-decoration-line: none !important;
    -webkit-text-decoration-style: none !important;
}

/* Additional phone/email detection override */
.info-details p,
.info-details p *,
.contact-info p,
.contact-info p *,
.contact p,
.contact p * {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
    background: transparent !important;
    -webkit-user-modify: read-only !important;
}

/* Style contact links to look like normal text but remain functional */
.contact-link {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: color 0.3s ease;
}

.contact-link:hover,
.contact-link:focus {
    color: #ff69b4 !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent !important;
}

.contact-link:visited {
    color: #e0e0e0 !important;
    text-decoration: none !important;
}

.contact-link:active {
    color: #ff69b4 !important;
    text-decoration: none !important;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* Enhanced select styling to prevent native browser styling */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23ff69b4' d='m2 0-2 2h4zm0 5 2-2h-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
}

/* Ensure consistent styling across browsers */
.form-group select::-ms-expand {
    display: none;
}

/* Style the options */
.form-group select option {
    background: #2a1a2e;
    color: #fff;
    padding: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

/* iOS Safari specific fixes */
.form-group input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff69b4'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
    box-sizing: border-box;
    max-width: 100%;
    min-height: auto;
    height: auto;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 1rem;
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

/* Prevent date input from expanding */
.form-group input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
    margin: 0;
}

.form-group input[type="date"]::-webkit-datetime-edit-text {
    color: #fff;
    padding: 0;
}

.form-group input[type="date"]::-webkit-datetime-edit-month-field,
.form-group input[type="date"]::-webkit-datetime-edit-day-field,
.form-group input[type="date"]::-webkit-datetime-edit-year-field {
    color: #fff;
    background: transparent;
}

/* Additional mobile-specific styling */
@media (max-width: 768px) {
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 105, 180, 0.3) !important;
        color: #fff !important;
        border-radius: 10px !important;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23ff69b4' d='m2 0-2 2h4zm0 5 2-2h-4z'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 1rem center !important;
        background-size: 1rem !important;
    }
    
    .form-group input[type="date"] {
        font-size: 16px;
        -webkit-appearance: none !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 105, 180, 0.3) !important;
        color: #fff !important;
        border-radius: 10px !important;
        height: 54px !important;
        line-height: normal !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    /* Force override for WebKit browsers */
    .form-group select::-webkit-appearance,
    .form-group input[type="date"]::-webkit-appearance {
        -webkit-appearance: none !important;
    }
}

/* Specific iOS Safari targeting */
@supports (-webkit-touch-callout: none) {
    .form-group select,
    .form-group input[type="date"] {
        -webkit-appearance: none !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 105, 180, 0.3) !important;
        color: #fff !important;
        border-radius: 10px !important;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23ff69b4' d='m2 0-2 2h4zm0 5 2-2h-4z'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 1rem center !important;
        background-size: 1rem !important;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ff69b4, #ffb6c1, #ff1493);
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    font-family: 'Dancing Script', cursive;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.submit-button:hover::before,
.submit-button:active::before {
    width: 400px;
    height: 400px;
}

.submit-button:hover,
.submit-button:active {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.6);
    background: linear-gradient(135deg, #ffb6c1, #ff69b4, #ff1493);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #ff69b4;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: #ffb6c1;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.social-link svg {
    color: #ff69b4;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 105, 180, 0.3);
    transform: translateY(-2px);
    color: #ffb6c1;
}

.social-link:hover svg {
    color: #ffb6c1;
    transform: scale(1.1);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff69b4;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
    color: #ccc;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    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);
    }
}

/* ========================================
   8. MOBILE RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        min-height: auto;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        margin-right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        height: 350px;
    }
    
    .service-content {
        padding: 1.5rem 1rem 1rem;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .price {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .interior-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        min-height: 52px;
    }
    
    /* Mobile button improvements */
    .cta-button {
        padding: 20px 45px;
        font-size: 1.3rem;
        min-height: 56px;
        min-width: 200px;
    }
    
    .submit-button {
        padding: 1.5rem;
        font-size: 1.3rem;
        min-height: 56px;
    }
    
    /* Larger touch targets for mobile */
    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .social-link {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Back to top button mobile sizing */
    .back-to-top {
        width: 56px !important;
        height: 56px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    
    /* Store status mobile responsiveness */
    .status-widget {
        flex-direction: row;
        text-align: center;
        gap: 0.6rem;
        padding: 0.6rem 1rem;
    }
    
    .status-icon {
        width: 50px;
        height: 50px;
    }
    
    .status-content h3 {
        font-size: 1.5rem;
    }
    
    .status-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.6rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .social-links {
        max-width: 250px;
    }
    
    .social-link {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

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

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

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Girly sparkle effects for all interactive elements */
button, .nav-link, .social-link, .footer-links a, .service-card, .gallery-item {
    position: relative;
    overflow: hidden;
}

/* Sparkle animation keyframes */
@keyframes sparkle {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(180deg); opacity: 1; }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

/* Add sparkle effect after pseudo-element */
.cta-button::after, .submit-button::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 0.8rem;
    opacity: 0;
    animation: sparkle 2s infinite;
    animation-delay: 1s;
}

/* Enhanced girly button hover effects */
button::before, .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 182, 193, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

button:hover::before, .nav-link:hover::before,
button:active::before, .nav-link:active::before {
    width: 200%;
    height: 200%;
}

/* Additional girly glow effect */
.cta-button:hover, .submit-button:hover,
.cta-button:active, .submit-button:active {
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 20px 50px rgba(255, 105, 180, 0.6), 0 0 30px rgba(255, 105, 180, 0.3);
    }
    to {
        box-shadow: 0 25px 60px rgba(255, 105, 180, 0.8), 0 0 40px rgba(255, 105, 180, 0.5);
    }
}
