/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --secondary: #f8c300;
    --accent: #e63946;
    --light: #ffffff;
    --dark: #111111;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--secondary);
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--light);
    padding: 10px 0;
    font-size: 14px;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-contact a {
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-contact a:hover {
    color: var(--secondary);
}

.top-contact i {
    color: var(--secondary);
}

.social-top {
    display: flex;
    gap: 15px;
}

.social-top a {
    color: var(--light);
    font-size: 16px;
    transition: var(--transition);
}

.social-top a:hover {
    color: var(--secondary);
}

/* Header */
.header {
    background: var(--light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo i {
    font-size: 32px;
    color: var(--secondary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.logo-sub {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link.active {
    color: var(--secondary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}

.btn-book {
    background: var(--secondary);
    color: var(--dark) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    color: var(--light);
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(248, 195, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(248, 195, 0, 0.2);
    color: var(--secondary);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(248, 195, 0, 0.3);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.hero-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-text strong {
    color: var(--secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    min-width: 250px;
    box-shadow: var(--shadow);
}

.btn-call {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-whatsapp {
    background: linear-gradient(135deg, #075E54, #128C7E);
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.btn i {
    font-size: 24px;
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.btn-label {
    font-size: 12px;
    opacity: 0.9;
}

.btn-number {
    font-size: 18px;
    font-weight: 700;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature i {
    color: var(--secondary);
}

.feature span {
    font-size: 14px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-sub {
    color: var(--gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-img {
    height: 200px;
    background: linear-gradient(45deg, var(--dark), #333);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 60px;
    color: var(--secondary);
    z-index: 1;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark);
}

.service-list i {
    color: var(--secondary);
    font-size: 12px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--dark);
    color: var(--secondary);
}

/* Gallery */
.gallery {
    background: white;
}

.section-subtitle {
    font-size: 24px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Before/After */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ba-card {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ba-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.before, .after {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before {
    left: 0;
    width: 50%;
    z-index: 2;
}

.after {
    right: 0;
}

.before img, .after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 15px;
    padding: 8px 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    z-index: 3;
}

.before .ba-label {
    left: 15px;
    background: var(--accent);
}

.after .ba-label {
    right: 15px;
    background: #25D366;
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    z-index: 4;
    cursor: col-resize;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    cursor: col-resize;
}

.slider::-moz-range-thumb {
    width: 4px;
    height: 100%;
    background: var(--secondary);
    cursor: col-resize;
    border: none;
}

.ba-info {
    padding: 20px;
    background: white;
}

.ba-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.ba-info p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* Photo Grid */
.photo-grid-section {
    margin-bottom: 60px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.photo-overlay span {
    display: block;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.photo-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Facebook Section */
.facebook-section {
    background: linear-gradient(135deg, #1877f2, #0a5bc4);
    border-radius: 15px;
    padding: 40px;
    color: white;
    text-align: center;
}

.facebook-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.facebook-icon {
    font-size: 60px;
}

.facebook-text {
    max-width: 500px;
}

.facebook-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.facebook-text p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-facebook {
    background: white;
    color: #1877f2 !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Reviews */
.reviews {
    background: var(--light-gray);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
    margin-top: 5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 600;
    font-size: 18px;
}

.reviewer-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 14px;
}

.location i {
    color: var(--secondary);
    font-size: 12px;
}

.rating {
    text-align: right;
}

.rating i {
    color: var(--secondary);
    font-size: 14px;
}

.rating span {
    display: block;
    color: var(--gray);
    font-size: 12px;
    margin-top: 5px;
}

.review-content h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.review-content p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(248, 195, 0, 0.1);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--dark);
}

.review-service i {
    color: var(--secondary);
}

.review-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    font-size: 14px;
    font-weight: 600;
}

.review-platforms {
    text-align: center;
    margin-top: 50px;
}

.review-platforms h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.platform-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.platform-btn.google {
    background: #4285F4;
}

.platform-btn.facebook {
    background: #1877F2;
}

.platform-btn.whatsapp {
    background: #25D366;
}

.platform-btn i {
    font-size: 32px;
}

.platform-name {
    display: block;
    font-weight: 600;
    font-size: 18px;
}

.platform-rating {
    font-size: 14px;
    opacity: 0.9;
}

/* Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.area-card {
    background: var(--light);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-heavy);
}

.area-card i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.area-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.area-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.area-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.areas-note {
    text-align: center;
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.areas-note i {
    color: var(--secondary);
    margin-right: 10px;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-heavy);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-details a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 5px;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary);
}

.contact-details p {
    color: var(--gray);
    font-size: 14px;
    margin-top: 10px;
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(248, 195, 0, 0.1);
}

.btn-submit {
    background: var(--secondary);
    color: var(--dark);
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--dark);
    color: var(--secondary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--light);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    font-size: 15px;
}

.footer-contact p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact i {
    color: var(--secondary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 15px;
}

.footer-col a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-note {
    margin-top: 10px;
    color: var(--secondary);
}

/* Floating Buttons */
.float-btn {
    position: fixed;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float {
    bottom: 100px;
    background: #25D366;
}

.call-float {
    bottom: 30px;
    background: var(--secondary);
    color: var(--dark) !important;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--light);
        padding: 20px;
        box-shadow: var(--shadow-heavy);
        transition: var(--transition);
        gap: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-text {
        font-size: 18px;
    }
    
    .btn {
        min-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .float-btn {
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .whatsapp-float {
        bottom: 85px;
    }
    
    .call-float {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .facebook-content {
        flex-direction: column;
        text-align: center;
    }
    
    .float-btn span {
        display: none;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        padding: 0;
        justify-content: center;
    }
    
    .float-btn i {
        font-size: 22px;
    }
}