/* site.css */
:root {
    --bg-main: #F4F5F6;
    --text-primary: #111111;
    --text-secondary: #6B7280;
    --dark-bg: #1B1E22;
    --accent-green: #D6F7E1;
    --accent-green-text: #22C55E;
    --white: #FFFFFF;
    --border-light: #E5E7EB;
    --font-stack: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-stack); background-color: var(--bg-main); color: var(--text-primary); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Modern Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: #A0AEC0; border-radius: 10px; border: 2px solid var(--bg-main); }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

.navbar { position: sticky; top: 0; z-index: 1000; background-color: var(--bg-main); display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; border-bottom: 1px solid var(--border-light); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.5rem; }
.nav-links { display: flex; gap: 2.5rem; font-weight: 500; }
.nav-links a { position: relative; }
.nav-links a.active { color: var(--text-primary); font-weight: 700; }
.nav-links a:hover { color: var(--text-secondary); }
.btn-dark { display:inline-block; background-color: var(--text-primary); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 2rem; border: none; font-family: inherit; font-weight: 500; cursor: pointer; transition: 0.3s; }
.btn-dark:hover { background-color: #333; }

/* ... Rest of styles previously seen in site.css */
.hero { text-align: center; padding: 4rem 5% 2rem; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; background-color: var(--accent-green); color: var(--accent-green-text); padding: 0.5rem 1rem; border-radius: 2rem; font-weight: 500; font-size: 0.9rem; margin-bottom: 1.5rem; }
.badge-dot { width: 6px; height: 6px; background-color: var(--accent-green-text); border-radius: 50%; }
.hero h1 { font-size: 4rem; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem; }
.hero .text-gray { color: var(--text-secondary); font-style: italic; font-weight: 400; }
.hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto 4rem; }

.hero-carousel { max-width: 1200px; margin: 0 auto; overflow: hidden; padding: 2rem 0; position: relative; }
.hero-carousel .swiper-slide { width: 280px; transition: all 0.4s ease; }
.carousel-img { width: 100%; height: 350px; border-radius: 1.5rem; object-fit: cover; box-shadow: 0 20px 40px rgba(0,0,0,0.15); display: block; }
.hero-carousel .swiper-slide:not(.swiper-slide-active) .carousel-img { opacity: 0.5; }

.logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 4rem; padding: 3rem 5%; filter: grayscale(100%); opacity: 0.6; }
.logos img { height: 48px; }
.partner-logo { height: 48px; width: auto; object-fit: contain; }
.logo-item { margin: 0 0.5rem; }


.excellence { text-align: center; padding: 5rem 5%; }
.excellence h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.excellence .subtitle { color: var(--text-secondary); margin-bottom: 4rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.feature-card { background: var(--white); padding: 2.5rem; border-radius: 1.5rem; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.feature-card .icon-wrapper { width: 60px; height: 60px; background: var(--bg-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.5rem; }

.gallery { background-color: var(--dark-bg); color: var(--white); padding: 5rem 5%; border-radius: 2rem; margin: 0 2%; }
.gallery-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.85rem; margin-bottom: 1rem; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.gallery-item { border-radius: 1.5rem; overflow: hidden; background: #fff; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.large, .gallery-item.tall { height: 400px; }

.chat-section { padding: 6rem 5%; max-width: 900px; margin: 0 auto; text-align: center; }
.chat-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #E8EAED; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.85rem; margin-bottom: 1rem; }
.chat-form-container { background: var(--white); padding: 2.5rem; border-radius: 1.5rem; text-align: left; }
.chat-input-wrapper { display: flex; align-items: center; gap: 1rem; border: 1px solid var(--border-light); border-radius: 1rem; padding: 0.75rem 1rem; margin-bottom: 2rem; }
.chat-input-wrapper input { flex: 1; border: none; outline: none; font-family: inherit; font-size: 1rem; }
.send-btn { background: var(--text-primary); color: var(--white); width: 40px; height: 40px; border-radius: 0.75rem; border: none; cursor: pointer; }
.examples-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.example-card { background: var(--bg-main); padding: 1.5rem; border-radius: 1rem; }

.process { display: flex; align-items: center; gap: 4rem; padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
.process-img { flex: 1; }
.process-img img { width: 100%; border-radius: 2rem; }
.process-content { flex: 1; }
.process-steps li { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.step-num { width: 32px; height: 32px; background: var(--text-primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; flex-shrink: 0; }

.blog { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; text-align: center; }
.blog-badge { display: inline-flex; background: #E8EAED; padding: 0.5rem 1rem; border-radius: 2rem; margin-bottom: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; text-align: left;}
.blog-card { background: var(--white); border-radius: 1.5rem; overflow: hidden; }
.blog-img { height: 200px; background-size: cover; background-position: center; }
.blog-content { padding: 1.5rem; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-light); padding-top: 1rem; margin-top: 1rem;}
.author { display: flex; align-items: center; gap: 0.75rem; }
.author img { width: 32px; height: 32px; border-radius: 50%; }

.reviews { text-align: center; padding: 5rem 5%; background: var(--white); }
.reviews-track { display: flex; gap: 2rem; max-width: 1200px; margin: 2rem auto 0; overflow-x: auto;}
.review-card { min-width: 350px; text-align: left; background: var(--bg-main); padding: 2rem; border-radius: 1.5rem; }
.review-header { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.author-info { display: flex; align-items: center; gap: 1rem; }
.author-info img { width: 40px; height: 40px; border-radius: 50%; }

.cta { background: var(--dark-bg); color: var(--white); margin: 5rem 5%; border-radius: 2rem; padding: 4rem 5%; display: flex; justify-content: space-between; position: relative; overflow: hidden; }
.btn-light { background: var(--white); color: var(--text-primary); padding: 0.8rem 1.5rem; border-radius: 2rem; border: none; font-family: inherit; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; cursor: pointer; margin-top: 2rem; }
.cta-images { position: relative; width: 400px; height: 300px; }
.phone-dark { position: absolute; width: 200px; height: 400px; object-fit: cover; border-radius: 1.5rem; transform: rotate(-15deg); top: -50px; }
.phone-light { position: absolute; width: 200px; height: 400px; object-fit: cover; border-radius: 1.5rem; right: 50px; top: 0; }

footer { padding: 4rem 5% 2rem; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 3rem; margin-bottom: 3rem; }
.footer-links-grid { display: flex; gap: 4rem; }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem;}
.social-icons a { width: 36px; height: 36px; background: var(--text-primary); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* Basic Forms / Page specific generic layout styles */
.page-header { background: var(--dark-bg); color: var(--white); padding: 6rem 5% 4rem; text-align: center; border-radius: 0 0 2rem 2rem; margin-bottom: 4rem; }
.page-header h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-content { max-width: 1000px; margin: 0 auto 5rem; padding: 0 5%; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form input, .contact-form textarea { padding: 1rem; border-radius: 1rem; border: 1px solid var(--border-light); font-family: inherit; font-size: 1rem; }
.contact-form textarea { min-height: 150px; resize: vertical; }

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .process, .cta { flex-direction: column; text-align: center; }
    .cta-images { display: none; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .carousel-img { height: 200px; } .carousel-img.main { height: 250px; }
    .footer-top, .footer-links-grid { flex-direction: column; gap: 2rem; }
}
