* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== COLOR PALETTE ===== */
:root {
    --cream: #FFFDEE;
    --lime-light: #E2FBCE;
    --lime: #E3EF26;
    --teal: #076653;
    --teal-dark: #0C342C;
    --teal-darkest: #06231D;

    --text-dark: #0C342C;
    --text-medium: #3f5750;
    --text-light: #6b8079;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-cream: var(--cream);

    --shadow-sm: 0 2px 10px rgba(6, 35, 29, 0.08);
    --shadow-md: 0 8px 30px rgba(6, 35, 29, 0.1);
    --shadow-lg: 0 20px 50px rgba(6, 35, 29, 0.16);
    --shadow-teal: 0 15px 40px rgba(7, 102, 83, 0.28);

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Google-colored stars */
.google-stars span {
    display: inline-block;
    font-size: inherit;
}
.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

/* Custom social icon image (X logo) */
.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 50%;
}

/* Showroom case-study extras */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-tag {
    background: var(--lime-light);
    color: var(--teal-darkest);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
}

.showroom-item.case-study .client-badge {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.visit-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.7rem 1.3rem;
    background: var(--teal-darkest);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.visit-site-btn:hover {
    background: var(--teal);
    gap: 0.7rem;
}

.visit-site-btn i {
    font-size: 0.75rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--teal-darkest);
    z-index: 1000;
    padding: 1.1rem 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 40px rgba(0,0,0,0.25);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 55px;
    height: 55px;
    margin-right: 15px;
}

.logo span {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.9;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--lime);
    opacity: 1;
}

.nav-cta-btn {
    background: var(--lime);
    color: var(--teal-darkest) !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 8px;
    font-weight: 800 !important;
}

.nav-cta-btn:hover {
    background: #f0f57a;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: var(--lime);
    margin: 4px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6,35,29,0.85);
    backdrop-filter: blur(5px);
    z-index: 999;
}

.mobile-overlay.active { display: block; }

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--lime-light) 100%);
}

.hero-blob {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    max-width: 800px;
    max-height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--lime) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(10px);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-kicker {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    background: var(--teal-darkest);
    color: var(--lime);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--teal-darkest);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--teal);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 12px;
    background: var(--lime);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--teal-darkest);
    color: var(--text-white);
    box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--teal-darkest);
    border-color: var(--teal-darkest);
}

.btn-outline:hover {
    background: var(--teal-darkest);
    color: var(--text-white);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-trust-stars {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.hero-trust-text {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.hero-trust-text strong {
    color: var(--teal-darkest);
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3.4;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-visual:hover .hero-image-frame img {
    transform: scale(1.04);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    left: auto;
    background: var(--bg-white);
    padding: 1rem 1.4rem;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.floating-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1.2;
}

.floating-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--teal-darkest);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-floating-card { right: 10px; }
    .hero-title { font-size: 2.6rem; }
}

@media (max-width: 600px) {
    .hero { padding: 140px 0 80px; }
    .hero-title { font-size: 2.1rem; }
    .hero-floating-card { padding: 0.8rem 1.1rem; }
    .floating-value { font-size: 1.15rem; }
    .floating-label { font-size: 0.6rem; }
    .btn { width: 100%; justify-content: center; }
}

/* ===== REST OF SITE ===== */
.stats-section { padding: 70px 0; background: var(--bg-white); border-bottom: 1px solid rgba(7,102,83,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.stat-number { font-size: 3rem; font-weight: 800; font-family: 'Poppins', sans-serif; color: var(--teal); }
.stat-label { font-size: 1.05rem; color: var(--text-medium); font-weight: 600; }

.trust-section { padding: 60px 0; background: var(--lime-light); text-align: center; }
.trust-content { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.rating-display { display: flex; align-items: center; gap: 1rem; }
.stars { font-size: 1.6rem; letter-spacing: 3px; }
.rating-text { font-weight: 700; color: var(--teal-darkest); }
.trust-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.trust-badge { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; color: var(--teal); padding: 0.8rem 1.6rem; background: var(--bg-white); border-radius: 50px; box-shadow: var(--shadow-sm); }
.trust-badge i { color: var(--teal); }

.section-title { text-align: center; font-size: 2.8rem; font-weight: 800; color: var(--teal-darkest); margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }
.section-subtitle { text-align: center; font-size: 1.15rem; color: var(--text-medium); margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }

.google-reviews, .testimonials { padding: 100px 0; background: var(--bg-white); }
.reviews-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.review-card, .testimonial-card { background: var(--bg-white); border-radius: 16px; padding: 2.2rem; box-shadow: var(--shadow-md); border: 2px solid transparent; transition: var(--transition); }
.review-card:hover, .testimonial-card:hover { transform: translateY(-10px); border-color: var(--teal); box-shadow: var(--shadow-teal); }
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.company-avatar { width: 50px; height: 50px; background: var(--teal); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.company-info h4 a { color: var(--text-dark); text-decoration: none; }
.review-date { font-size: 0.85rem; color: var(--text-light); }
.review-stars, .testimonial-rating { margin-bottom: 1rem; letter-spacing: 2px; }
.review-text, .testimonial-text { color: var(--text-medium); line-height: 1.8; }
.testimonial-text { font-style: italic; font-size: 1.1rem; }
.testimonial-author { font-weight: 700; color: var(--teal-darkest); margin-top: 1rem; }

.services { padding: 100px 0; background: var(--lime-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2.5rem; }
.service-card { background: var(--bg-white); padding: 3rem; border-radius: 16px; box-shadow: var(--shadow-md); border: 2px solid transparent; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--teal); transform: scaleX(0); transition: var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); border-color: var(--teal); box-shadow: var(--shadow-teal); }
.service-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: var(--lime-light); color: var(--teal); border-radius: 12px; font-size: 1.6rem; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--teal-darkest); margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }
.service-card p { color: var(--text-medium); }

.portfolio { padding: 100px 0; background: var(--bg-white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2.5rem; }
.portfolio-item { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); border: 2px solid transparent; transition: var(--transition); cursor: pointer; }
.portfolio-item:hover { transform: translateY(-10px); border-color: var(--teal); box-shadow: var(--shadow-teal); }
.portfolio-item img { width: 100%; height: 260px; object-fit: cover; transition: var(--transition); }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-content { padding: 2rem; }
.portfolio-content h4 { font-size: 1.4rem; color: var(--teal-darkest); margin-bottom: 0.8rem; font-family: 'Poppins', sans-serif; }
.portfolio-content p { color: var(--text-medium); margin-bottom: 1.5rem; }
.view-showroom-btn { background: var(--teal-darkest); color: white; border: none; padding: 12px 28px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.view-showroom-btn:hover { background: var(--teal); }

.modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(6,35,29,0.95); backdrop-filter: blur(10px); }
.modal-content { background: var(--bg-white); margin: 2% auto; border-radius: 16px; width: 95%; max-width: 1300px; max-height: 90vh; overflow-y: auto; }
.modal-header { background: var(--teal-darkest); color: white; padding: 2.5rem; border-radius: 16px 16px 0 0; position: relative; }
.close { position: absolute; right: 2rem; top: 2rem; font-size: 1.8rem; color: white; cursor: pointer; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.15); }
.close:hover { background: rgba(255,255,255,0.3); }
.showroom-gallery { padding: 3rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; background: var(--cream); }
.showroom-item { background: white; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.showroom-item img { width: 100%; height: 220px; object-fit: cover; }
.showroom-item-content { padding: 2rem; }
.client-badge { display: inline-block; background: var(--teal); color: white; padding: 0.5rem 1.2rem; border-radius: 30px; font-size: 0.85rem; font-weight: 700; margin-top: 1rem; }

.process { padding: 100px 0; background: var(--lime-light); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2.5rem; }
.process-step { text-align: center; padding: 2.5rem; background: white; border-radius: 16px; box-shadow: var(--shadow-md); border: 2px solid transparent; transition: var(--transition); }
.process-step:hover { transform: translateY(-10px); border-color: var(--teal); }
.step-number { width: 80px; height: 80px; background: var(--teal-darkest); color: var(--lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; margin: 0 auto 1.5rem; }
.process-step h4 { color: var(--teal-darkest); margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }
.process-step p { color: var(--text-medium); }

.contact { padding: 100px 0; background: var(--cream); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.what-happens-next, .project-card { background: white; padding: 2rem; border-radius: 16px; box-shadow: var(--shadow-md); }
.project-card { background: var(--teal-darkest); color: white; }
.project-card h3 { margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }
.project-card p { opacity: 0.85; margin-bottom: 1.5rem; }
.project-btn { display: block; text-align: center; background: var(--lime); color: var(--teal-darkest); padding: 1rem; border-radius: 8px; font-weight: 800; text-decoration: none; }
.next-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.next-step { display: flex; align-items: center; gap: 0.8rem; }
.next-step i { color: var(--teal); width: 20px; }
.contact-item { display: flex; align-items: flex-start; padding: 1.8rem; background: white; border-radius: 16px; box-shadow: var(--shadow-md); transition: var(--transition); }
.contact-item:hover { transform: translateX(8px); }
.contact-item .icon { width: 50px; height: 50px; background: var(--teal-darkest); color: var(--lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 1.5rem; flex-shrink: 0; font-size: 1.2rem; }
.contact-item h4 { color: var(--teal-darkest); margin-bottom: 0.4rem; }
.contact-item p { color: var(--text-medium); }
.contact-form { background: white; padding: 3rem; border-radius: 16px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.6rem; font-weight: 700; color: var(--teal-darkest); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; border: 2px solid rgba(7,102,83,0.15); border-radius: 8px; font-family: inherit; background: var(--cream); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--teal); }
.submit-btn { width: 100%; padding: 1.1rem; background: var(--teal-darkest); color: white; border: none; border-radius: 8px; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: var(--transition); }
.submit-btn:hover { background: var(--teal); }
.form-success-message { background: var(--lime-light); color: var(--teal-darkest); padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; display: none; font-weight: 600; }
.form-success-message.show { display: block; }
.appointment-notice { background: var(--lime-light); border: 2px solid var(--teal); border-radius: 16px; padding: 2.5rem; margin: 3rem 0; text-align: center; }
.appointment-notice i { font-size: 2.5rem; color: var(--teal); margin-bottom: 1rem; }
.appointment-notice h3 { color: var(--teal-darkest); margin-bottom: 0.8rem; }

.footer { background: var(--teal-darkest); color: white; padding: 4rem 0 0; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; margin-bottom: 1rem; }
.footer-logo img { width: 45px; height: 45px; }
.footer-logo span { font-size: 1.3rem; font-weight: 800; color: white; }
.footer-tagline { color: rgba(255,255,255,0.7); max-width: 400px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: var(--transition); }
.social-icon:hover { background: var(--teal); }
.footer-section h4 { color: var(--lime); margin-bottom: 1.2rem; font-family: 'Poppins', sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-links a:hover { color: var(--lime); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.footer-contact-item i { color: var(--lime); margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.back-to-top { position: fixed; bottom: 30px; right: 30px; background: var(--teal-darkest); color: var(--lime); width: 55px; height: 55px; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer; z-index: 999; border: none; box-shadow: var(--shadow-teal); }
.back-to-top.show { display: flex; }

.fade-in { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 968px) {
    .contact-content { grid-template-columns: 1fr; gap: 3rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-links { display: none; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: var(--teal-darkest); flex-direction: column; padding: 7rem 2rem 2rem; z-index: 1000; gap: 1.3rem; transform: translateX(100%); transition: transform 0.4s ease; }
    .nav-links.active { display: flex; transform: translateX(0); }
    .container { padding: 0 1.5rem; }
    .nav-container { padding: 0 1.5rem; }
    .services-grid, .portfolio-grid, .testimonial-grid, .reviews-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem; }
}