/* =============================================
   ALISHA DENTAL CLINIC - MAIN STYLESHEET
   ============================================= */

/* CSS Variables */
:root {
    --primary: #00897B;
    --primary-dark: #00695C;
    --primary-light: #4DD0E1;
    --secondary: #26A69A;
    --background: #FFFFFF;
    --light-background: #F5F9FA;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --accent: #26A69A;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}
body {
    font-family: var(--font-body);
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    width: auto !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(5px, 3vw, 15px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader i {
    font-size: 60px;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* =============================================
   NAVIGATION
   ============================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
    overflow: hidden;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px clamp(5px, 3vw, 15px);
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: clamp(6px, 2vw, 12px);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 700;
    color: var(--primary);
}

.logo i { font-size: clamp(1.4rem, 5vw, 2rem); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80vw;
    max-width: 350px;
    height: 100vh;
    max-height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 100px 30px 30px;
    transition: right 0.4s ease;
    overflow: hidden;
}

.mobile-menu.active { right: 0; }

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 12px);
    padding: clamp(12px, 4vw, 16px) clamp(24px, 6vw, 32px);
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 3vw, 1rem);
    font-weight: 600;
    min-height: 48px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 137, 123, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.9) 0%, rgba(0, 105, 92, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero-content {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 25px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =============================================
   SECTION STYLES
   ============================================= */

.section { padding: clamp(60px, 10vw, 100px) 0; background: var(--background); }
.section:nth-child(even) { background: var(--light-background); }

.section-header { text-align: center; margin-bottom: 60px; }

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image { position: relative; }

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(15px, 4vw, 30px);
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow: hidden;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-image img {
    width: 100% !important;
    height: 100%;
    object-fit: cover !important;
    transition: var(--transition);
}

.service-card:hover .service-image img { transform: scale(1.1); }

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 137, 123, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay { opacity: 1; }
.service-overlay i { font-size: 2.5rem; color: var(--white); }

.service-content { padding: 25px; text-align: center; }

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 137, 123, 0.3);
}

.service-icon i { font-size: 1.5rem; color: var(--white); }

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover { gap: 12px; color: var(--primary-dark); }

/* =============================================
   GALLERY SECTION
   ============================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(12px, 3vw, 20px);
    justify-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    max-height: 250px;
}

@media (max-width: 480px) {
    .gallery-item {
        aspect-ratio: 1 / 1;
        max-height: 220px;
    }
}

.gallery-item img {
    width: 100% !important;
    height: 100%;
    object-fit: cover !important;
    transition: var(--transition);
}

@media (max-width: 480px) {
    .gallery-item img {
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 137, 123, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
    transform: scale(0);
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* =============================================
   REVIEWS SECTION
   ============================================= */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-info { flex: 1; }

.review-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-rating { display: flex; gap: 3px; }
.review-rating i { font-size: 0.85rem; color: #FFC107; }
.review-google { margin-left: auto; }
.review-google i { font-size: 1.5rem; color: #4285F4; }

.review-body { margin-bottom: 15px; }
.review-body p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
}

.review-date { font-size: 0.85rem; color: #999; }

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info { display: flex; flex-direction: column; gap: 25px; }

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i { font-size: 1.3rem; color: var(--white); }

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-details a {
    color: var(--primary);
    font-weight: 500;
}

.contact-details a:hover { color: var(--primary-dark); }

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe { display: block; }

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-header { margin-bottom: 30px; }
.form-header h3 { font-size: 1.5rem; margin-bottom: 10px; }
.form-header p { color: var(--text-secondary); }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group label i { color: var(--primary); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 16px; /* Prevent zoom on iOS */
    color: var(--text-primary);
    background: var(--light-background);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: var(--transition);
}

@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 16px;
        min-height: 48px;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237F8C8D' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i { font-size: 1.8rem; }

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul li { margin-bottom: 12px; }

.footer-links ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover { color: var(--white); padding-left: 5px; }
.footer-links ul li a i { font-size: 0.7rem; color: var(--primary-light); }

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact ul li i {
    font-size: 1rem;
    color: var(--primary-light);
    margin-top: 5px;
}

.footer-contact ul li span, .footer-contact ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact ul li a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p:last-child { margin-top: 8px; }
.footer-bottom i { color: #e74c3c; }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 137, 123, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Scroll Reveal Animations */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Large Desktop */
@media (max-width: 1300px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

/* Laptop */
@media (max-width: 1200px) {
    .container { max-width: 1000px; padding: 0 15px; }
}

/* Tablet */
@media (max-width: 992px) {
    .container { max-width: 750px; }
    .section { padding: 80px 0; }
    .section-title { font-size: 2rem; }
    .nav-menu, .nav-btn { display: none; }
    .hamburger { display: flex; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
    .about-image-accent { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 768px) {
    .container { max-width: 100%; padding: 0 clamp(5px, 2vw, 10px); }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-tagline { font-size: 1.1rem; }
    .hero-description { font-size: 1rem; }
    
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    
    .about-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
.gallery-grid { 
    grid-template-columns: 1fr; 
    justify-items: center; 
    padding: 0 clamp(5px, 2vw, 10px);
    max-width: 100%;
    overflow-x: hidden;
}
    .gallery-item { height: 220px; }
    .reviews-grid { grid-template-columns: 1fr; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-info { order: 2; }
    .contact-form-wrapper { padding: 25px 20px; order: 1; }
    .contact-card { flex-direction: row; text-align: left; align-items: center; }
    .contact-icon { width: 45px; height: 45px; min-width: 45px; }
    .contact-icon i { font-size: 1.1rem; }
    .contact-details h4 { font-size: 1rem; }
    .contact-details p { font-size: 0.85rem; }
    .contact-buttons { flex-direction: column; gap: 10px; }
    .contact-buttons .btn { width: 100%; justify-content: center; }
    .map-container { margin-top: 10px; }
    .map-container iframe { height: 180px; }
    
    .form-header h3 { font-size: 1.3rem; text-align: center; }
    .form-header p { font-size: 0.9rem; text-align: center; }
    .form-group { margin-bottom: 15px; }
    .form-group label { font-size: 0.85rem; }
    .form-group input, .form-group select, .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-about { grid-column: auto; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-links ul li a { justify-content: center; }
    .footer-contact ul li { justify-content: center; text-align: center; }
    .footer-contact ul li span, .footer-contact ul li a { text-align: center; }
    .scroll-indicator { display: none; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-description { font-size: 0.9rem; line-height: 1.6; }
    .btn { padding: 10px 18px; font-size: 0.85rem; }
    
    .feature-item { flex-direction: row; text-align: left; }
    .feature-icon { margin: 0; }
    
    .contact-card { flex-direction: column; text-align: center; }
    .contact-buttons { flex-direction: column; }
    .contact-buttons .btn { width: 100%; }
    .logo span { font-size: 1.1rem; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.75rem; }
    .service-content h3 { font-size: 1.1rem; }
    .service-content p { font-size: 0.85rem; }
    .review-card { padding: 20px 15px; }
    .review-header { flex-wrap: wrap; }
    .review-avatar { width: 50px; height: 50px; }
    
    .footer-grid { gap: 30px; }
    .footer-links ul li a { font-size: 0.85rem; }
    .footer-contact ul li { font-size: 0.85rem; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.whatsapp-float span {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.whatsapp-float i {
    font-size: 28px;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.success-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 20px;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    box-shadow: var(--shadow-hover);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title { font-size: 1.5rem; }
    .container { padding: 0 10px; }
    .btn { padding: 8px 14px; font-size: 0.8rem; }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin: -40px auto 15px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-content { padding: 40px 20px; }
    .section { padding: 40px 0; }
    .contact-form-wrapper { padding: 20px; }
    .form-group textarea { min-height: 80px; }
}

/* Print styles */
@media print {
    .navbar, .back-to-top, .whatsapp-float { display: none; }
    body { font-size: 12pt; }
}


/* Force Mobile Responsiveness */
@media (max-width: 992px) {
    .hamburger { display: flex !important; z-index: 1001; }
    .mobile-menu { display: block; }
}

@media (max-width: 320px) {
    .logo { font-size: 1.2rem; }
    .logo i { font-size: 1.4rem; }
    .hamburger { padding: 3px; }
    .bar { width: 22px; height: 2px; }
}
