/* ------------------------------ */
/* GLOBAL */
/* ------------------------------ */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #dfe7f1, #f7f9fc);
    color: #1f1f1f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Smooth fade-up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------ */
/* NAVBAR */
/* ------------------------------ */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #4a5d7a;
}

/* ------------------------------ */
/* PRICING PAGE */
/* ------------------------------ */

.pricing-hero {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease-out;
}

.pricing-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.pricing-hero p {
    font-size: 1.1rem;
    color: #333;
}

.pricing-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    text-align: center;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.6s ease-out forwards;
}

/* Staggered animation */
.pricing-card:nth-child(1) { animation-delay: 0.15s; }
.pricing-card:nth-child(2) { animation-delay: 0.3s; }
.pricing-card:nth-child(3) { animation-delay: 0.45s; }

.pricing-card h2 {
    margin-top: 0;
    font-size: 1.6rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
    color: #2f3b52;
}

.desc {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card ul li {
    margin: 8px 0;
    font-size: 0.95rem;
}

.pricing-note {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1rem;
    color: #333;
    animation: fadeUp 0.5s ease-out;
}

/* ------------------------------ */
/* CONTACT PAGE */
/* ------------------------------ */

.contact-hero {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease-out;
}

.contact-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #333;
}

.contact-main {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.contact-info-box,
.contact-form-box {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.6s ease-out forwards;
}

.contact-info-box { animation-delay: 0.15s; }
.contact-form-box { animation-delay: 0.3s; }

.contact-info-box h2,
.contact-form-box h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.info-group {
    margin-bottom: 20px;
}

.info-group h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #2f3b52;
}

.info-group p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form select {
    height: 48px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input {
    flex: 1;
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

.form-label {
    margin: 10px 0 8px;
    font-size: 1rem;
    font-weight: bold;
    color: #2f3b52;
}

.contact-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4a5d7a, #2f3b52);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.contact-btn:active {
    transform: scale(0.95);
    filter: brightness(0.85);
}

/* ------------------------------ */
/* FOLLOW US SECTION */
/* ------------------------------ */

.follow-section {
    text-align: center;
    margin: 40px auto;
    animation: fadeUp 0.6s ease-out;
}

.follow-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-link img {
    width: 45px;
    height: 45px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.social-link img:hover {
    transform: scale(1.18);
    filter: brightness(1.2);
}

/* ------------------------------ */
/* MAP SECTION */
/* ------------------------------ */

.map-section {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: fadeUp 0.6s ease-out;
}

/* ------------------------------ */
/* FOOTER */
/* ------------------------------ */

.footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 30px 0 40px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.footer-divider {
    width: 80%;
    height: 1px;
    background: rgba(0,0,0,0.15);
    margin: 0 auto 20px;
}

.footer-tagline {
    font-size: 1rem;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.9rem;
    color: #555;
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 900px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-info-box,
    .contact-form-box {
        margin-bottom: 20px;
    }
}
/* ------------------------------ */
/* SERVICES PAGE */
/* ------------------------------ */

.services-hero {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease-out;
}

.services-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 1.15rem;
    color: #333;
}

/* SERVICES GRID */
.services-grid {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.15s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.45s; }
.service-card:nth-child(4) { animation-delay: 0.6s; }

.service-card img {
    width: 70px;
    margin-bottom: 15px;
}

.service-card h2 {
    margin: 10px 0;
    font-size: 1.4rem;
    color: #2f3b52;
}

.service-card p {
    font-size: 0.95rem;
    color: #444;
}

/* WHY CHOOSE US */
.why-us {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeUp 0.5s ease-out;
}

.why-us h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.why-grid {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.6s ease-out forwards;
}

.why-card:nth-child(1) { animation-delay: 0.15s; }
.why-card:nth-child(2) { animation-delay: 0.3s; }
.why-card:nth-child(3) { animation-delay: 0.45s; }
.why-card:nth-child(4) { animation-delay: 0.6s; }

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2f3b52;
}

.why-card p {
    font-size: 0.95rem;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* ------------------------------ */
/* HOME PAGE HERO */
/* ------------------------------ */

.home-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 520px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.45));
}

.hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    animation: fadeUp 0.7s ease-out;
}

.hero-inner h1 {
    font-size: 3.2rem;
    margin-bottom: 10px;
}

.hero-sub {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.hero-sub-small {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #4a5d7a, #2f3b52);
    color: white;
}

.hero-btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box h2 {
    margin: 0;
    font-size: 1.8rem;
}

.stat-box p {
    margin: 4px 0 0;
    font-size: 0.95rem;
}

/* ------------------------------ */
/* FIXED FULL-WIDTH SLIDESHOW (4 IMAGES) */
/* ------------------------------ */

.slideshow-section {
    text-align: center;
    margin: 70px auto;
}

.slideshow-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

/* ⭐ Full-width, centered, tall container */
.slideshow-container {
    width: 100%;
    max-width: 2000px;   /* adjust for width */
    height: 1000px;       /* adjust for height */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ⭐ Each slide fills the container */
.slideshow-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeShow 24s infinite;
}

/* ⭐ Correct staggered delays for 4 images */
.slideshow-slide:nth-child(1) { animation-delay: 0s; }
.slideshow-slide:nth-child(2) { animation-delay: 6s; }
.slideshow-slide:nth-child(3) { animation-delay: 12s; }
.slideshow-slide:nth-child(4) { animation-delay: 18s; }

/* ⭐ Smooth fade animation */
@keyframes fadeShow {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    25%  { opacity: 1; }
    35%  { opacity: 0; }
    100% { opacity: 0; }
}
.slideshow-section {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.slideshow-container {
    width: 100% !important;

}


/* ------------------------------ */
/* STORY SECTION */
/* ------------------------------ */

.story-section {
    width: 90%;
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    animation: fadeUp 0.6s ease-out;
}

.story-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

.story-box {
    background: rgba(255,255,255,0.95);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    border-left: 6px solid #4a5d7a;
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 600px) {
    .hero-inner h1 {
        font-size: 2.3rem;
    }

    .slideshow-container {
        height: 300px;
    }
}
.reviews-section {
    padding: 60px 20px;
    background: #f7f7f7;
    text-align: center;
}

.reviews-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #111;
}

.reviews-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.review-card {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
}

.stars {
    color: #f4b400;
    font-size: 20px;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.reviewer {
    font-size: 14px;
    color: #666;
    font-style: italic;
}
.tint-types {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.tint-types h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111;
}

.tint-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #444;
    font-size: 16px;
}

.tint-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.tint-card {
    background: #f7f7f7;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.tint-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.tint-card p {
    color: #555;
    margin-bottom: 10px;
}

.tint-why {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.tint-percent-title {
    font-size: 26px;
    margin-top: 20px;
    color: #111;
}

.tint-percent-intro {
    color: #444;
    margin-bottom: 20px;
}

.tint-percent-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.tint-percent-list li {
    background: #f7f7f7;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #333;
    font-size: 15px;
}
.tint-visualizer {
    padding: 60px 20px;
    text-align: center;
}

.tint-preview {
    width: 300px;
    height: 180px;
    margin: 0 auto 20px;
    background: url('car-window.png') center/cover no-repeat;
    position: relative;
}

.window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.35;
    border-radius: 8px;
    transition: opacity 0.2s ease;
}
.why-tint {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.why-tint h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111;
}

.why-intro {
    max-width: 750px;
    margin: 0 auto 40px;
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.why-card {
    background: #f7f7f7;
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.why-card h3 {
    margin-bottom: 10px;
    color: #222;
    font-size: 18px;
}

.why-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}
/* What's Included Section */
.included-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.included-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111;
}

.included-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #444;
    font-size: 16px;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.included-card {
    background: #f7f7f7;
    padding: 20px;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.included-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.included-card p {
    color: #555;
    font-size: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #111;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 25px;
}

.faq-item h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 8px;
}

.faq-item p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}
