/* c:\Users\archi\Downloads\Jena-Enterprises\jena-automobiles\style.css */
/* --- CSS Variables: Dark Blue + Orange Theme --- */
:root {
    --primary: #0f2a4a;       /* Deep Navy Blue */
    --primary-light: #1a3c66;
    --secondary: #ff6600;     /* Energetic Orange */
    --secondary-hover: #e65c00;
    --dark: #1e293b;
    --text: #475569;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0f2a4a 0%, #1e40af 100%);
    --radius: 8px;
    --shadow: 0 10px 30px -5px rgba(0,0,0,0.1);
    --tech-grid: rgba(255, 255, 255, 0.05);
    --glass: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background: var(--light-bg); }

/* --- Header --- */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo i { color: var(--secondary); font-size: 2rem; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }

/* Cross Link Button */
.cross-link-btn {
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--primary) !important;
    font-size: 0.85rem !important;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cross-link-btn:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/* --- Hero Section --- */
.hero {
    background: url('assets/Vehicle-Maintenance-car-service-worker-repairing-vehicle.webp') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Fixed: Combined gradient and grid so both are visible */
    background: 
        linear-gradient(var(--tech-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--tech-grid) 1px, transparent 1px),
        linear-gradient(135deg, rgba(15, 42, 74, 0.95) 0%, rgba(15, 42, 74, 0.85) 100%);
    background-size: 40px 40px, 40px 40px, cover;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

.hero-features { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.feature-tag {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.feature-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.feature-tag i { color: var(--secondary); }

/* --- Buttons --- */
.btn {
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Mechanical bounce */
    position: relative;
    overflow: hidden;
}
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: var(--secondary-hover); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 102, 0, 0.4); }

.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--primary); }

.btn-text { color: var(--secondary); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-top: 20px; }

/* --- Sections --- */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 15px; 
    font-weight: 800; 
    position: relative;
    display: inline-block;
}
.section-title h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--secondary); margin: 10px auto 0; border-radius: 2px; }

.sub-heading { color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 10px; }

/* About Split Layout */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.about-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.about-image img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.about-image:hover img {
    transform: scale(1.05);
}

.check-list { margin: 25px 0; }
.check-list li { display: flex; gap: 10px; margin-bottom: 12px; font-weight: 500; color: var(--dark); }
.check-list i { color: var(--secondary); font-size: 1.2rem; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

.service-card-img {
    height: 200px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-body {
    padding: 25px;
    flex-grow: 1;
}

.service-card h3 { margin-bottom: 10px; color: var(--dark); font-size: 1.25rem; }
.service-card-link {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
}
.service-card-link::after {
    content: '\2192';
    font-size: 1rem;
}

/* Why Choose Us Grid */
.why-choose-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.why-choose-item { text-align: center; padding: 30px; }
.why-choose-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 15px; display: inline-block; }
.why-choose-item h3 { color: var(--dark); font-size: 1.2rem; margin-bottom: 10px; }

/* Stats Dark Section */
.dark-section { background: var(--primary); color: var(--white); text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat-item h3 { font-size: 3rem; font-weight: 800; color: var(--secondary); margin-bottom: 5px; }
.stat-item p { font-size: 1.1rem; opacity: 0.9; }

/* CTA */
.cta-section { background: var(--light-bg); text-align: center; padding: 80px 0; border-top: 1px solid #e2e8f0; }
.cta-section h2 { color: var(--primary); margin-bottom: 15px; }
.cta-section p { margin-bottom: 30px; color: var(--text); }

/* --- Footer --- */
footer { background: var(--dark); color: #94a3b8; padding: 70px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--secondary); padding-left: 5px; }
.copyright { text-align: center; border-top: 1px solid #334155; padding-top: 25px; font-size: 0.9rem; }

/* --- Mobile Responsive --- */
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation for Call Button */
.pulse-btn {
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* --- Page Header (Internal Pages) --- */
.page-header {
    background: linear-gradient(rgba(15, 42, 74, 0.85), rgba(15, 42, 74, 0.95)), url('assets/Vehicle-Maintenance-car-service-worker-repairing-vehicle.webp') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 30px;
}
.page-header h1 { font-size: 3rem; margin-bottom: 10px; font-weight: 800; }
.breadcrumb { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500; letter-spacing: 1px; }

/* --- Service Details Layout --- */
.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    scroll-margin-top: 120px;
}
.service-detail-item:last-child { margin-bottom: 0; }

/* Alternating Layout */
.service-detail-item:nth-child(even) { direction: rtl; }
.service-detail-item:nth-child(even) .service-text { direction: ltr; }

.service-img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.service-text h3 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; font-weight: 700; }
.service-text p { margin-bottom: 25px; font-size: 1.05rem; color: var(--text); }

.service-features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.service-features-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--dark); }
.service-features-list i { color: var(--secondary); font-size: 1.2rem; }

/* --- Mission & Values Grid --- */
.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.value-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.value-item:hover {
    transform: translateY(-10px);
}
.value-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}
.value-item h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* --- Team Grid --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.team-member-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}
.team-member-card:hover {
    transform: translateY(-10px);
}
.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--secondary);
    box-shadow: 0 0 0 5px rgba(255, 102, 0, 0.2);
}
.team-member-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.team-member-card p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 15px;
}
.social-links a {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0 8px;
}
.social-links a:hover {
    color: var(--secondary);
}

/* --- Gallery Page --- */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: inline-block; /* Essential for masonry */
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
}

.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

/* --- Contact Page --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info h2 { color: var(--secondary); margin-bottom: 15px; font-size: 2rem; }
.contact-info p { margin-bottom: 30px; opacity: 0.9; }

.contact-detail { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-detail .icon {
    font-size: 1.5rem;
    color: var(--secondary);
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-detail h4 { font-size: 1.1rem; margin-bottom: 5px; }
.contact-detail p { margin-bottom: 0; font-size: 0.95rem; }

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-box h2 { color: var(--primary); margin-bottom: 25px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dark); }
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}
.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
}
.testimonial-card p { font-style: italic; margin-bottom: 20px; color: var(--dark); }
.testimonial-card h4 { color: var(--primary); font-weight: 700; }

/* --- FAQ Section --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); margin-bottom: 15px; border-radius: var(--radius); box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: 0.3s;
}
.faq-question h3 { font-size: 1.1rem; color: var(--primary); margin: 0; }
.faq-question i { font-size: 1.2rem; color: var(--secondary); transition: 0.3s; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8fafc;
}
.faq-answer p { margin-bottom: 20px; color: var(--text); }

.faq-item.active .faq-question { background: #f1f5f9; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 1200px; padding: 20px 20px 0; }

/* --- FAQ Page Specific --- */
.faq-category-title {
    margin: 40px 0 20px;
    color: var(--secondary);
    font-size: 1.5rem;
    display: flex; align-items: center; gap: 10px;
}

/* --- Blog Page --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.blog-card:hover { transform: translateY(-10px); }
.blog-img img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 25px; }
.blog-content h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
.blog-content p { font-size: 0.95rem; color: var(--text); margin-bottom: 20px; }
.read-more { color: var(--secondary); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.read-more:hover { gap: 8px; }

/* --- Brands Grid --- */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.brand-item {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-weight: 500;
    color: var(--dark);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.brand-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Related Services --- */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.related-service-item {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.3s;
}
.related-service-item:hover {
    transform: translateY(-10px);
    background: var(--primary);
    color: var(--white);
}
.related-service-item i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 15px; }

/* --- Custom Notification Popup --- */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-left: 5px solid var(--secondary);
    max-width: 350px;
}
.notification-popup.active { transform: translateX(0); }
.notification-popup.success { border-left-color: #22c55e; }
.notification-popup.error { border-left-color: #ef4444; }

.notification-icon { font-size: 1.5rem; }
.notification-popup.success .notification-icon { color: #22c55e; }
.notification-popup.error .notification-icon { color: #ef4444; }

/* --- Spinner Animation --- */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Back To Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px; /* Positioned to the left of WhatsApp button */
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0; pointer-events: none; transition: 0.3s;
    z-index: 998;
}
.back-to-top.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--secondary); transform: translateY(-5px); }

/* --- Booking Modal --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}
.modal-content {
    background-color: var(--white);
    margin: 10% auto; 
    padding: 40px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.3s;
}
.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}
.close-modal:hover { color: var(--secondary); }
.modal h2 { color: var(--primary); margin-bottom: 10px; }
.modal p { margin-bottom: 20px; font-size: 0.9rem; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { transform: translateY(-50px); } to { transform: translateY(0); } }

/* --- Floating Buttons --- */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    font-size: 2rem;
    transition: transform 0.3s ease;
}
.float-wa:hover { transform: scale(1.1); }

.float-call {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--secondary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
    z-index: 999;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}
.float-call:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .mission-values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
    .why-choose-us-grid { grid-template-columns: 1fr 1fr; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none; /* Toggled via JS */
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }

    /* Service Details Mobile */
    .service-detail-item {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
        gap: 30px;
        margin-bottom: 60px;
    }
    .service-features-list { grid-template-columns: 1fr; }

    /* Gallery Mobile */
    .gallery-grid {
        column-count: 2;
    }

    /* Contact Mobile */
    .contact-wrapper { grid-template-columns: 1fr; }

    /* Floating Buttons Mobile */
    .float-call { bottom: 90px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
    .float-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.6rem; }
    .back-to-top { bottom: 20px; right: 80px; width: 45px; height: 45px; font-size: 1.2rem; }
}

@media (max-width: 560px) {
    .mission-values-grid, .team-grid { grid-template-columns: 1fr; }
    .why-choose-us-grid { grid-template-columns: 1fr; }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .gallery-grid {
        column-count: 1;
    }
}

