* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* ====================== NAVBAR ====================== */
.nav-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-section h3{
    font-family: Georgia, serif;
}

.nav-section img {
    height: 60px;
    width: auto;
}

navbar {
    display: flex;
    gap: 35px;
}

navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

navbar a:hover {
    color: #fbbf24;
}

navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fbbf24;
    transition: width 0.3s ease;
}

navbar a:hover::after {
    width: 100%;
}

navbar a.contact {
    color: #fbbf24;
}


/* ====================== CONTACT PAGE ====================== */
.contact-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2e9 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #4ade80;
    outline: none;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

/* Contact Info Box */
.contact-info {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-info h3 {
    color: #1e2937;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #475569;
}

.contact-info strong {
    color: #166534;
}

/* ====================== WRITE REVIEW SECTION ====================== */
.write-review-section {
    padding: 80px 5%;
    background: #f1f5f9;
    margin-top: 40px;
}

.write-review-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.write-review-section h2 {
    font-size: 2.2rem;
    color: #1e2937;
    margin-bottom: 10px;
}

.write-review-section p {
    color: #64748b;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.review-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.05rem;
}

.review-form textarea {
    resize: vertical;
    min-height: 140px;
}

.review-form button {
    width: 100%;
    padding: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .write-review-section {
        padding: 60px 5%;
    }
    
    .review-form {
        padding: 30px;
    }
}


/* ====================== FOOTER ====================== */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fbbf24;
    padding-left: 5px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ====================== FLOATING WHATSAPP ====================== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}


/* ====================== HAMBURGER MENU ====================== */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-left img {
    height: 55px;
    width: auto;
}

.nav-left h3 {
    color: #4ade80;
    font-size: 1.35rem;
    margin: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.3s;
}


/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ====================== RESPONSIVE DESIGN ====================== */

/* Tablet */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form,
    .contact-info {
        padding: 35px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    
    /* Navbar */
    .nav-section {
        padding: 12px 5%;
        flex-direction: column;
        gap: 12px;
        height: auto;
    }
    
    .nav-left h3 {
        font-size: 1.2rem;
    }
    
    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }
    
    navbar {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 50px;
        gap: 28px;
        transition: all 0.4s ease;
        z-index: 999;
    }
    
    navbar.active {
        left: 0;
    }
    
    navbar a {
        font-size: 1.3rem;
    }

    /* Contact Hero / Section */
    .contact-section {
        padding: 70px 5%;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    /* Form & Info */
    .contact-form {
        padding: 30px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form button {
        padding: 15px;
        font-size: 1.15rem;
    }
    
    /* Footer */
    .footer {
        padding: 60px 5% 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
}

/* Small Mobile Phones */
@media (max-width: 576px) {
    
    .contact-section {
        padding: 60px 5%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 13px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}