/* ===== CSS Variables ===== */
:root {
    --primary: #E8681E;
    --primary-dark: #D55A15;
    --primary-light: #FF8F4C;
    --secondary: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --white: #ffffff;
    --off-white: #FFF8F0;
    --cream: #F5EDE0;
    --dark-bg: #1a0f0a;
    --dark-card: #2a1f1a;
    --border: #E0D5C7;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

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

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232,104,30,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,104,30,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.btn-enquire {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: var(--transition);
}

.btn-enquire:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(232,104,30,0.3);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,104,30,0.4);
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,104,30,0.4);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light .section-title,
.section-header.light .section-desc {
    color: var(--white);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag.dark {
    background: rgba(255,255,255,0.1);
    color: var(--primary-light);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), #c44d0e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(232,104,30,0.08);
}

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

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 100px 20px 60px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.95;
}

.hero-desc {
    font-size: 16px;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 14px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.15);
}

.stat-item i {
    font-size: 22px;
    color: #FFD700;
}

.stat-item div {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.7;
    font-size: 12px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.service-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    padding: 4px 0;
}

.service-features i {
    color: var(--primary);
    font-size: 14px;
}

/* ===== Darshan Section ===== */
.darshan {
    padding: 100px 0;
    background: var(--cream);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(232,104,30,0.05), rgba(232,104,30,0.1));
    border-bottom: 1px solid var(--border);
}

.pricing-header i {
    font-size: 28px;
    color: var(--primary);
}

.pricing-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-table-wrapper {
    padding: 24px 30px;
}

.route-pricing {
    margin-bottom: 24px;
}

.route-pricing:last-child { margin-bottom: 0; }

.route-pricing h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    text-align: left;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.pricing-table td {
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f0ebe3;
}

.pricing-table .price {
    color: var(--primary);
    font-weight: 700;
}

/* Pickup Accordion */
.pickup-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.pickup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(232,104,30,0.05), rgba(232,104,30,0.1));
    border-bottom: 1px solid var(--border);
}

.pickup-header i {
    font-size: 28px;
    color: var(--primary);
}

.pickup-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.pickup-header p {
    font-size: 14px;
    color: var(--text-light);
}

.accordion {
    padding: 0 30px 24px;
}

.accordion-item {
    border-bottom: 1px solid #f0ebe3;
}

.accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-route {
    display: flex;
    align-items: center;
    gap: 14px;
}

.route-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.accordion-route strong {
    display: block;
    font-size: 15px;
    color: var(--secondary);
}

.accordion-route span {
    font-size: 13px;
    color: var(--text-light);
}

.accordion-btn > i {
    color: var(--text-lighter);
    transition: var(--transition);
}

.accordion-btn.active > i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: 2000px;
}

.timing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.timing-table th {
    text-align: left;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    background: #faf7f2;
}

.timing-table td {
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #f5f0e8;
}

.timing-table td:first-child {
    color: var(--primary);
    font-weight: 600;
}

/* Places Visited */
.places-visited {
    margin-top: 30px;
}

.places-visited-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.places-visited-left,
.places-visited-right {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.places-visited-left h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 4px;
}

.places-visited-left h3 i {
    color: var(--primary);
}

.places-visited-left > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.places-list {
    counter-reset: places;
}

.places-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f5f0e8;
}

.places-list li span {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 16px;
}

.info-card h3 i {
    color: var(--primary);
}

.info-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
}

.info-card ul li i {
    color: var(--primary);
    margin-top: 3px;
}

.elephanta-card {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.elephanta-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.unesco-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(232,104,30,0.1), rgba(232,104,30,0.15));
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.elephanta-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.elephanta-pricing {
    display: flex;
    gap: 16px;
}

.elephanta-pricing > div {
    flex: 1;
    background: var(--off-white);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
}

.elephanta-pricing span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.elephanta-pricing strong {
    font-size: 22px;
    color: var(--primary);
}

/* ===== Car Hire Section ===== */
.car-hire {
    padding: 100px 0;
    background: var(--off-white);
}

.car-hire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.car-hire-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.car-hire-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(232,104,30,0.05), rgba(232,104,30,0.1));
    border-bottom: 1px solid var(--border);
}

.car-hire-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.car-hire-header h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}

.car-hire-header p {
    font-size: 13px;
    color: var(--text-light);
}

.tour-tags {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.tour-tags span {
    font-size: 11px;
    background: rgba(232,104,30,0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 10px;
}

.car-hire-content {
    padding: 24px 30px;
}

.car-hire-content > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.car-hire-content h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary);
}

.car-hire-content h4 i {
    color: var(--primary);
}

.car-hire-content ul {
    margin-bottom: 20px;
}

.car-hire-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
}

.car-hire-content ul li i {
    color: var(--primary);
    font-size: 6px;
    margin-top: 7px;
}

.tour-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.tour-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.tour-highlights i {
    color: var(--primary);
    font-size: 14px;
}

.guide-note {
    font-size: 12px;
    color: var(--text-lighter);
    margin-top: 12px;
}

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

/* ===== Tours Section ===== */
.tours {
    padding: 100px 0;
    background: var(--cream);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-location {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.tour-location i {
    color: var(--primary);
    margin-right: 4px;
}

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tour-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Why Choose Section ===== */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f0a 0%, #2a1a10 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,104,30,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(232,104,30,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 22px;
    color: var(--primary-light);
}

.feature-card h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Places Section ===== */
.places {
    padding: 100px 0;
    background: var(--off-white);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.place-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.place-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.place-card h4 {
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--secondary);
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--cream);
}

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

.about-left h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-left p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.about-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow);
}

.about-tags i {
    color: var(--primary);
    font-size: 12px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-stat:hover {
    transform: translateX(8px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.about-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
}

.about-stat .stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #FFB800;
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 100px 0;
    background: var(--cream);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-btn:hover {
    color: var(--primary);
}

.faq-btn i {
    color: var(--text-lighter);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-btn.active i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.open {
    max-height: 500px;
}

.faq-content p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-content strong {
    color: var(--secondary);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f0a 0%, #2a1a10 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.info-card-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.info-card-item:hover {
    background: rgba(255,255,255,0.08);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.info-card-item span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-card-item strong {
    font-size: 14px;
    color: var(--white);
}

.info-card-item strong a {
    color: var(--white);
    transition: var(--transition);
}

.info-card-item strong a:hover {
    color: var(--primary-light);
}

.instant-help {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.instant-help h3 {
    color: var(--primary-light);
    font-size: 18px;
    margin-bottom: 8px;
}

.instant-help p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-wrapper h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group label span {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
    font-family: var(--font);
    transition: var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.8fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-contact i {
    color: var(--primary);
    font-size: 13px;
    width: 16px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-social h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.sasbizz-link {
    color: var(--primary-light);
    font-weight: 600;
    transition: var(--transition);
}

.sasbizz-link:hover {
    color: var(--white);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232,104,30,0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 52px; }
    .section-title { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .places-visited-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .hamburger { display: flex; }
    .nav-right .phone-link { display: none; }
    .nav-right .btn-primary { display: none; }
    
    .hero-title { font-size: 40px; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; align-items: center; gap: 12px; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .car-hire-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    
    .about-left h2 { font-size: 32px; }
    .section-title { font-size: 30px; }
    
    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 26px; }
    .services-grid { grid-template-columns: 1fr; }
    .tours-grid { grid-template-columns: 1fr; }
    .places-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
    .tour-highlights { grid-template-columns: 1fr; }
}
