/* SANGAM SHREE PREMIUM V3 - UPDATED */

:root {
    --navy: #1a3a52;
    --primary: #00bcf2;
    --charcoal: #2c3e50;
    --cream: #f8f6f0;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --dark: #1a1a1a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

/* TOP BAR */
.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left a,
.top-bar-left span {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: var(--primary);
}

.top-bar-left i {
    margin-right: 8px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s;
}

.top-bar-right a:hover {
    background: var(--primary);
    color: var(--navy);
}

/* HEADER */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav > a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
}

.main-nav > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.main-nav > a:hover {
    color: var(--primary);
}

.main-nav > a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown > a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.dropdown i {
    font-size: 11px;
    margin-left: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--primary);
}

.dropdown-menu i {
    color: var(--primary);
    width: 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--navy);
    transition: all 0.3s;
}

/* HERO */
.hero {
    height: 75vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
}

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

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-gold {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 188, 242, 0.3);
}

.btn-gold:hover {
    background: #0099cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 188, 242, 0.4);
}

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

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

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* HISTORY - REDUCED SPACING */
.history {
    padding: 70px 0;
    background: var(--cream);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 50%;
    text-align: right;
    padding-right: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-left: 50px;
    padding-right: 0;
}

.timeline-content {
    width: 50%;
    padding-left: 50px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(even) .timeline-content {
    padding-right: 50px;
    padding-left: 25px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

.timeline-item.active .timeline-content {
    background: var(--navy);
    color: var(--white);
}

.timeline-item.active .timeline-content h3 {
    color: var(--primary);
}

.timeline-item.active .timeline-content p {
    color: var(--white);
    opacity: 0.9;
}

/* STATS - REDUCED SPACING */
.stats {
    padding: 60px 0;
    background: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: rgba(0, 188, 242, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* MISSION - IMAGE 30% TALLER, REDUCED SPACING */
.mission {
    padding: 70px 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-image {
    position: relative;
}

.mission-image img {
    width: 100%;
    height: 520px; /* 30% taller from original ~400px */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-badge i {
    font-size: 1.5rem;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.3;
}

.lead {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 500;
}

.mission-content p {
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.8;
}

.mission-values {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.value-item h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.value-item p {
    color: var(--gray);
    margin: 0;
}

/* VERTICALS - REDUCED SPACING */
.verticals {
    padding: 70px 0;
    background: var(--cream);
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.vertical-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.vertical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vertical-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.vertical-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.vertical-card:hover .vertical-image img {
    transform: scale(1.1);
}

.vertical-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(26, 58, 82, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.vertical-overlay i {
    font-size: 3rem;
    color: var(--primary);
}

.vertical-content {
    padding: 30px;
}

.vertical-content h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.vertical-content p {
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.7;
}

.vertical-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.vertical-content ul li {
    color: var(--charcoal);
    font-size: 14px;
    padding-left: 25px;
    position: relative;
}

.vertical-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* VEHICLES - REDUCED SPACING */
.vehicles {
    padding: 70px 0;
    background: var(--navy);
    position: relative;
}

.vehicles-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1617704548623-340376564e68?w=1920&q=80');
    background-size: cover;
    opacity: 0.05;
}

.vehicles .section-header {
    position: relative;
    z-index: 2;
}

.vehicles .section-label {
    color: var(--primary);
}

.vehicles .section-header h2 {
    color: var(--white);
}

.vehicles .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.vehicles-carousel {
    display: flex;
    gap: 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.vehicle-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.vehicle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.vehicle-badge.premium {
    background: var(--navy);
    color: var(--primary);
}

.vehicle-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.vehicle-info {
    padding: 25px;
}

.vehicle-info h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.vehicle-desc {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 18px;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e0e0e0;
}

.spec {
    font-size: 13px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec i {
    color: var(--primary);
}

.vehicle-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 18px;
}

.btn-vehicle {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
    position: relative;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary);
    width: 40px;
    border-radius: 6px;
}

/* TESTIMONIALS - REDUCED SPACING */
.testimonials {
    padding: 70px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: var(--cream);
    padding: 35px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.rating {
    color: var(--primary);
    font-size: 14px;
}

/* TEAM - REDUCED SPACING */
.team {
    padding: 70px 0;
    background: var(--cream);
}

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

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 188, 242, 0.1));
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 22px 18px;
}

.team-info h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.team-position {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* BRANDS - REDUCED SPACING */
.brands {
    padding: 70px 0;
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.brand-card {
    background: var(--cream);
    padding: 40px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.brand-logo {
    margin-bottom: 25px;
}

.brand-logo img {
    max-width: 250px;
    margin: 0 auto;
}

.brand-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.brand-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* LOCATIONS - REDUCED SPACING */
.locations {
    padding: 70px 0;
    background: var(--cream);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.location-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.location-card:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-5px);
}

.location-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.3s;
}

.location-card:hover .location-icon {
    background: var(--white);
    color: var(--primary);
}

.location-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.location-card:hover h3 {
    color: var(--primary);
}

.location-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
    transition: color 0.3s;
}

.location-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: gap 0.3s;
}

.location-link:hover {
    gap: 12px;
}

/* CONTACT - REDUCED SPACING */
.contact {
    padding: 70px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--gray);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.btn-full {
    width: 100%;
}

/* FOOTER WITH GEOMETRIC PATTERN */
.footer {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Geometric Pattern Overlay */
.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 188, 242, 0.1) 0%, transparent 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(45deg);
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, rgba(0, 188, 242, 0.08) 0%, transparent 100%);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    z-index: 0;
}

/* Additional geometric shapes */
.footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: 70px 0 45px;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.95) 0%, rgba(44, 62, 80, 0.98) 100%);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 22px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 242, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 22px;
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* RESPONSIVE */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav > a,
    .main-nav .dropdown {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .main-nav .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        background: var(--cream);
    }
    
    .main-nav .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .stats-grid,
    .verticals-grid,
    .testimonials-grid,
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mission-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .timeline-year,
    .timeline-content {
        width: 100%;
        padding: 0;
        text-align: left !important;
    }
    
    .timeline-content {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: 500px;
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .stats-grid,
    .verticals-grid,
    .testimonials-grid,
    .brands-grid,
    .locations-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vehicle-card {
        min-width: 100%;
    }
    
    .top-bar {
        font-size: 0.85rem;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .top-bar-left a,
    .top-bar-left span {
        font-size: 0.8rem;
    }
    
    .top-bar-right {
        gap: 12px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Mission Section */
    .mission-image img {
        height: 300px;
    }
    
    /* Forms */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   INNER PAGES STYLES
======================================== */

/* PAGE HERO */
.page-hero {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 10px;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 70px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 25px;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* STORY SECTION */
.story-section {
    padding: 70px 0;
    background: var(--cream);
}

/* VISION MISSION */
.vision-mission {
    padding: 70px 0;
    background: var(--white);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--cream);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
}

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

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* VALUES */
.values-section {
    padding: 70px 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ACHIEVEMENTS */
.achievements {
    padding: 70px 0;
    background: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--cream);
    border-radius: 12px;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.achievement-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.achievement-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* WHY CHOOSE */
.why-choose {
    padding: 70px 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.why-item {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
}

.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.why-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* VEHICLES GRID */
.vehicles-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .vm-grid,
    .values-grid,
    .why-grid,
    .vehicles-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .vm-grid,
    .values-grid,
    .achievements-grid,
    .why-grid,
    .vehicles-grid-page {
        grid-template-columns: 1fr;
    }
}

/* Additional Inner Page Styles */
.vehicles-showcase {
    padding: 70px 0;
    background: var(--white);
}

.financing-section {
    padding: 70px 0;
    background: var(--cream);
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.financing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.financing-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.financing-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.test-drive {
    padding: 70px 0;
    background: var(--white);
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 12px 0;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.booking-form-wrapper {
    background: var(--cream);
    padding: 45px;
    border-radius: 12px;
}

.booking-form h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 25px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.why-buy {
    padding: 70px 0;
    background: var(--cream);
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.station-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.station-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.station-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.station-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.station-info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 25px;
}

.how-it-works {
    padding: 70px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 35px 25px;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.pricing-section {
    padding: 70px 0;
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.pricing-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
}

.pricing-card.featured {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.pricing-card.featured h3 {
    color: var(--primary);
}

.price {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.pricing-card.featured .price {
    color: var(--white);
}

.price-features {
    list-style: none;
    margin: 25px 0;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-card.featured .price-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 8px 0;
    color: var(--gray);
    padding-left: 25px;
    position: relative;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.packages-section {
    padding: 70px 0;
    background: var(--white);
}

.menu-section {
    padding: 70px 0;
    background: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu-category {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.menu-item-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

.menu-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.gallery-section {
    padding: 70px 0;
    background: var(--white);
}

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

.gallery-item {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .financing-grid,
    .steps-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stations-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .financing-grid,
    .steps-grid,
    .pricing-grid,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */

.contact-info-section {
    padding: 70px 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: gap 0.3s;
}

.contact-link:hover {
    gap: 12px;
}

.contact-main {
    padding: 70px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-section h2,
.contact-details-section h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.form-intro {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form-main {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.contact-details-section p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-detail-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 188, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.detail-info h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.detail-info p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-connect {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
}

.social-connect h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--cream);
    color: var(--navy);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.departments-section {
    padding: 70px 0;
    background: var(--white);
}

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

.department-card {
    background: var(--cream);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.department-card:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-5px);
}

.department-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: color 0.3s;
}

.department-card:hover i {
    color: var(--white);
}

.department-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
    transition: color 0.3s;
}

.department-card:hover h3 {
    color: var(--primary);
}

.department-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.department-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.department-card p strong {
    color: var(--navy);
    transition: color 0.3s;
}

.department-card:hover p strong {
    color: var(--primary);
}

.map-section {
    padding: 70px 0;
    background: var(--cream);
}

.map-wrapper {
    margin-bottom: 30px;
}

.map-info {
    display: flex;
    justify-content: space-around;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.map-info i {
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-section {
    padding: 70px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--cream);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item i {
    color: var(--primary);
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

.services-section {
    padding: 70px 0;
    background: var(--cream);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid,
    .departments-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        flex-direction: column;
        gap: 15px;
    }
}
