@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500;700&display=swap');

:root {
    --primary-color: #0A2540;
    --primary-hover: #11365a;
    --accent-color: #F59E0B;
    --accent-hover: #D97706;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1EBE55;
    
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    
    --border-color: #E2E8F0;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--accent-color);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--bg-white);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.logo p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Solid color overlay, no gradients */
    background-color: rgba(10, 37, 64, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero h2 {
    font-size: 4rem;
    color: var(--bg-white);
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #E2E8F0;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin: 0;
}

.experience-badge p {
    font-weight: 600;
    margin: 0;
}

.about-content p {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-box i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.stat-box h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.stat-box p {
    margin: 0;
    font-size: 0.9rem;
}

/* Courses Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.course-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.course-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.course-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.course-card.popular .card-icon {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.course-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 50px;
}

.course-features {
    margin-bottom: 30px;
}

.course-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 500;
}

.course-features li i {
    color: var(--accent-color);
}

.special-batches p {
    color: var(--text-muted);
}

.special-batches a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.f-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.feature-box:hover .f-icon {
    background-color: var(--accent-color);
    transform: rotateY(180deg);
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
}

/* Vehicle Showcase */
.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vehicle-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.v-img {
    height: 300px;
    overflow: hidden;
}

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

.vehicle-card:hover .v-img img {
    transform: scale(1.05);
}

.v-info {
    padding: 30px;
}

.v-info h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.v-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.v-tags span {
    background-color: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Testimonials */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--text-main);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.r-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.reviewer h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Team Section */
.team-grid-big {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.team-card-big {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card-big:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.t-img-big {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.t-img-big img {
    width: 220px;
    height: 280px; /* Portrait orientation */
    object-fit: cover;
    object-position: top center;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    background-color: var(--bg-white);
}

.t-info-big {
    padding: 24px;
}

.t-info-big h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.designation {
    color: var(--accent-color);
    font-weight: 600;
}

.team-grid-small {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.team-card-small {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 20px;
}

.team-card-small:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.t-img-small {
    height: 100px;
    width: 100px;
    background-color: var(--bg-light);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.t-img-small img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.t-info-small h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.t-info-small .designation {
    font-size: 0.85rem;
}

.mt-5 {
    margin-top: 50px;
}

.mt-3 {
    margin-top: 16px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.g-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 37, 64, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .g-overlay {
    opacity: 1;
}

.g-overlay span {
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .g-overlay span {
    transform: translateY(0);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    background-color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    background-color: var(--bg-white);
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 24px;
    max-height: 500px;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent-color);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.c-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.c-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-item h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.c-item p {
    color: var(--text-muted);
    margin: 0;
}

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

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer .logo i {
    color: var(--bg-white);
}

.footer .logo h2 {
    color: var(--bg-white);
    margin: 0;
    font-size: 1.5rem;
}

.footer .logo p {
    color: #E2E8F0;
}

.footer-desc {
    color: #94A3B8;
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--bg-white);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer h3 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94A3B8;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background-color: #051626;
    padding: 24px 0;
    color: #94A3B8;
    font-size: 0.9rem;
}

.dev-credits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dev-credits span {
    font-size: 0.85rem;
    color: #94A3B8;
}

.zeony-logo {
    height: 24px;
    width: auto;
    display: block;
    background-color: #F8FAFC;
}

/* What We Do Section */
.what-we-do-list {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.what-we-do-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.what-we-do-list li i {
    margin-top: 6px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.nested-list {
    margin-top: 8px;
    margin-left: 28px;
    margin-bottom: 16px;
}

.nested-list li {
    margin-bottom: 8px;
    display: block;
}

.hidden-item { 
    display: none !important; 
}

.show-all-btn {
    display: inline-block;
    margin-top: 24px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    min-width: 30px;
}

/* Branches Section */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.branch-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.branch-card h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.branch-card p {
    color: var(--text-muted);
}

/* Mobile Menu & Misc */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

.hero-names {
    color: var(--bg-white);
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h2 { font-size: 3rem; }
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .cards-grid { grid-template-columns: 1fr; }
    .course-card.popular { transform: none; }
    .course-card.popular:hover { transform: translateY(-5px); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .mobile-menu-btn { display: block; }
    .nav-contact { display: none; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 16px;
    }
    .nav-links.active { display: flex; }
    
    .services-grid { grid-template-columns: 1fr 1fr; }
    .branches-grid { grid-template-columns: 1fr 1fr; }
    .team-grid-small { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero h2 { font-size: 2.5rem; }
    .hero-names { font-size: 1.3rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .team-grid-big { grid-template-columns: 1fr; }
    .team-grid-small { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .branches-grid { grid-template-columns: 1fr; }
}
