/* Google Fonts */
:root {
    --primary-color: #fab11e; /* Taxi Yellow */
    --primary-hover: #e09e17;
    --dark-bg: #11141a;
    --card-bg: #1a1e27;
    --text-color: #cbd5e1;
    --heading-color: #ffffff;
    --white: #ffffff;
    --whatsapp: #25D366;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: 'Outfit', sans-serif; }
body { background-color: var(--dark-bg); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }

/* Utilities */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-padding { padding: 5rem 0; }
.bg-light { background-color: #161a22; }

h1, h2, h3, h4, h5, h6 { color: var(--heading-color); font-weight: 700; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-title .line { display: block; width: 60px; height: 4px; background: var(--primary-color); margin-bottom: 2rem; border-radius: 2px; }

/* Buttons */
.btn {
    display: inline-block; padding: 12px 28px; border-radius: 8px; font-weight: 600;
    text-decoration: none; transition: var(--transition); border: none; cursor: pointer; font-size: 1rem;
}
.btn i { margin-right: 8px; }
.btn-primary { background-color: var(--primary-color); color: #111; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(250, 177, 30, 0.3); }
.btn-whatsapp { background-color: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background-color: #1ebe57; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.btn-large { padding: 15px 35px; font-size: 1.1rem; margin: 10px; }

/* Header */
.header {
    background-color: rgba(17, 20, 26, 0.95); backdrop-filter: blur(10px);
    position: fixed; width: 100%; top: 0; z-index: 1000; padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); border-bottom: 2px solid var(--primary-color);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.8rem; font-weight: 800; color: var(--white); text-decoration: none; }
.logo span { color: var(--primary-color); }

.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links li a { color: var(--text-color); text-decoration: none; font-weight: 500; transition: var(--transition); font-size: 1rem; }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-color); }
.mobile-toggle { display: none; cursor: pointer; font-size: 1.5rem; color: var(--white); }

/* Hero Section */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(17, 20, 26, 0.8), rgba(17, 20, 26, 0.6)); }
.hero-content { position: relative; z-index: 10; animation: fadeInDown 1s ease; }
.hero h1 { font-size: 4.5rem; color: var(--primary-color); margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); }
.hero p { font-size: 1.5rem; color: var(--white); margin-bottom: 40px; text-shadow: 1px 1px 5px rgba(0,0,0,0.8); }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.about-img img { width: 100%; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); object-fit: cover;}
.about-text p { margin-bottom: 15px; font-size: 1.05rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.feature { display: flex; align-items: center; gap: 10px; }
.feature i { color: var(--primary-color); font-size: 1.2rem; }
.feature span { font-weight: 600; color: var(--heading-color); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.service-card {
    background: var(--card-bg); padding: 40px 30px; border-radius: 15px; text-align: center;
    transition: var(--transition); border: 1px solid rgba(255,255,255,0.05);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(250, 177, 30, 0.4); }
.service-card .icon-wrapper {
    width: 80px; height: 80px; background: rgba(250, 177, 30, 0.1); color: var(--primary-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem;
    margin: 0 auto 20px; transition: var(--transition);
}
.service-card:hover .icon-wrapper { background: var(--primary-color); color: #111; }
.service-card h3 { margin-bottom: 15px; font-size: 1.4rem; }

/* Service Areas */
.areas-desc { max-width: 700px; margin: 0 auto 40px; }
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.area-item {
    background: var(--card-bg); padding: 12px 25px; border-radius: 30px; font-weight: 500;
    font-size: 1rem; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); color: var(--text-color);
}
.area-item:hover { background: var(--primary-color); color: #111; border-color: var(--primary-color); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { background: var(--card-bg); padding: 30px; border-radius: 12px; text-align: left; border: 1px solid rgba(255,255,255,0.05); }
.review-card .stars { color: var(--primary-color); margin-bottom: 15px; font-size: 1.1rem; }
.review-card p { font-style: italic; margin-bottom: 20px; font-size: 1rem; color: #cbd5e1; }
.review-card h5 { font-size: 1.1rem; color: var(--white); }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
    align-items: start;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}
.gallery-grid img:hover {
    transform: scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Lightbox */
.lightbox {
    display: none; 
    position: fixed; 
    z-index: 1001; 
    padding-top: 60px; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}
.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}
@keyframes zoomIn {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

/* Footer */
.footer { background-color: #0b0d11; padding: 30px 0; text-align: center; border-top: 2px solid var(--primary-color); }
.footer-bottom p { color: #64748b; margin-bottom: 10px; }
.creator { font-size: 0.9rem; }
.creator a { color: var(--white); text-decoration: none; font-weight: 600; }
.creator a:hover { color: var(--primary-color); }

/* Sticky Buttons */
.sticky-buttons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 999; }
.sticky-wa, .sticky-phone {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 30px; color: var(--white); text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); transition: var(--transition);
}
.sticky-wa { background-color: var(--whatsapp); }
.sticky-phone { background-color: var(--primary-color); color: #111;}
.pulse-wa { animation: pulse-wa 2s infinite; }
.pulse-phone { animation: pulse-phone 2s infinite; animation-delay: 1s; }

@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@keyframes pulse-phone { 0% { box-shadow: 0 0 0 0 rgba(250, 177, 30, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(250, 177, 30, 0); } 100% { box-shadow: 0 0 0 0 rgba(250, 177, 30, 0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translate3d(0, -30px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }

/* Responsive */
@media screen and (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3.5rem; }
}
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute; right: -100%; top: 60px; flex-direction: column;
        background-color: rgba(17, 20, 26, 0.98); box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        width: 100%; text-align: center; transition: 0.3s; padding: 20px 0; gap: 0;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 15px 0; }
    .mobile-toggle { display: block; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-large { width: 100%; }
    .contact-buttons { display: flex; flex-direction: column; }
    .section-padding { padding: 4rem 0; }
}
@media screen and (max-width: 480px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.2rem; }
    .sticky-buttons { bottom: 20px; right: 20px; }
    .sticky-wa, .sticky-phone { width: 50px; height: 50px; font-size: 24px; }
}
