/* ========================================
   DWARKA CABS - Main Stylesheet
   Color: Red (#C8102E) + White
======================================== */

:root {
    --red: #C8102E;
    --red-dark: #9e0b22;
    --red-light: #e63946;
    --white: #ffffff;
    --off-white: #f9f5f5;
    --gray-light: #f4f4f4;
    --gray: #888;
    --dark: #1a1a1a;
    --text: #333;
    --shadow: 0 4px 24px rgba(200,16,46,0.10);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ---- Top Bar ---- */
.top-bar {
    background: var(--red);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}
.top-bar-left span,
.top-bar-right a {
    color: var(--white);
    opacity: 0.92;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.top-bar-right a:hover { opacity: 1; text-decoration: underline; }

/* ---- Header ---- */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 3px 10px rgba(200,16,46,0.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 1px;
}
.logo-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    gap: 4px;
}
.main-nav ul li a {
    padding: 8px 18px;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--red);
    transition: transform 0.3s ease;
    border-radius: 2px;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--red);
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-call {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(200,16,46,0.3);
    transition: var(--transition) !important;
}
.btn-call:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200,16,46,0.4) !important;
}
.btn-call::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 16px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul li a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    border-radius: 8px;
    color: var(--dark);
    transition: var(--transition);
}
.mobile-nav ul li a:hover { background: var(--off-white); color: var(--red); }

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(200,16,46,0.35);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,16,46,0.45);
    color: var(--white);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}
.btn-red-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--red);
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--red);
    transition: var(--transition);
    cursor: pointer;
}
.btn-red-outline:hover {
    background: var(--red);
    color: var(--white);
}

/* ---- Section Titles ---- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-tag {
    display: inline-block;
    background: rgba(200,16,46,0.08);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid rgba(200,16,46,0.15);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-desc {
    font-size: 16px;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 16px auto 0;
    border-radius: 2px;
    position: relative;
}
.divider::after {
    content:'';
    position: absolute;
    right: -12px;
    top: 0;
    width: 8px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    opacity: 0.4;
}

/* ---- HERO SLIDER ---- */
.hero-section {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 92vh;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide.active { opacity: 1; }
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,0.75) 0%, rgba(200,16,46,0.25) 60%, rgba(0,0,0,0.3) 100%);
}

/* Slide background images are set via inline style in index.php */

.slider-content-area {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 10;
}
.slider-content-area .container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
    width: 100%;
}
.slide-text { color: var(--white); }
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease 0.2s both;
}
.slide-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease 0.35s both;
}
.slide-headline span { color: var(--red-light); }
.slide-desc {
    font-size: 17px;
    opacity: 0.88;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    animation: slideInLeft 0.8s ease 0.5s both;
}
.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease 0.65s both;
}
.slide-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    animation: slideInLeft 0.8s ease 0.8s both;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
}
.stat-label { font-size: 13px; opacity: 0.7; }

/* Hero Booking Form */
.hero-form-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: slideInRight 0.8s ease 0.4s both;
}
.hero-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 6px;
}
.hero-form-box p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e8e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}
.arrow-btn {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.arrow-btn:hover { background: var(--red); border-color: var(--red); }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%) translateX(50px);
    display: flex;
    gap: 8px;
    z-index: 20;
}
.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--red);
    transform: scale(1.3);
}

/* ---- About Section ---- */
.about-section {
    padding: 96px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(200,16,46,0.15);
}
.about-img-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--red);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(200,16,46,0.4);
}
.about-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    display: block;
}
.about-badge .lbl { font-size: 12px; opacity: 0.85; }
.about-content .section-header { text-align: left; margin-bottom: 28px; }
.about-content .section-header .divider { margin: 16px 0 0; }
.about-points { margin: 24px 0 32px; }
.about-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}
.about-point-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(200,16,46,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
}
.about-point-text h5 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.about-point-text p { font-size: 13px; color: var(--gray); }
.about-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Car Price Section ---- */
.price-section {
    padding: 96px 0;
    background: var(--off-white);
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.price-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(200,16,46,0.15);
    border-color: var(--red);
}
.price-card.popular {
    border-color: var(--red);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(200,16,46,0.2);
}
.popular-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
}
.price-card-top {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 28px;
    text-align: center;
    color: var(--white);
}
.car-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}
.price-card-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 4px;
}
.price-card-top p { font-size: 13px; opacity: 0.8; }
.price-card-body { padding: 28px; }
.price-amount {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.price-per {
    font-size: 13px;
    color: var(--gray);
    display: block;
    margin-bottom: 4px;
}
.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
}
.price-value span { font-size: 18px; font-weight: 600; }
.price-features { margin-bottom: 24px; }
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px dashed #f0e8e8;
}
.price-features li:last-child { border: none; }
.price-features li i { color: var(--red); font-size: 13px; }
.price-card .btn-primary, .price-card .btn-red-outline { width: 100%; justify-content: center; }

/* ---- Why Choose Us ---- */
.why-section {
    padding: 96px 0;
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1.5px solid #f0e8e8;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.why-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(200,16,46,0.2);
    transform: translateY(-4px);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(200,16,46,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 26px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: var(--red);
    color: var(--white);
}
.why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ---- Testimonials ---- */
.testimonial-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}
.testimonial-section::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 5%;
    font-size: 300px;
    color: rgba(255,255,255,0.04);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.testimonial-section .section-header .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}
.testimonial-section .section-header .section-title { color: var(--white); }
.testimonial-section .section-header .section-title span { color: rgba(255,255,255,0.8); }
.testimonial-section .section-header .section-desc { color: rgba(255,255,255,0.7); }
.testimonial-section .divider { background: rgba(255,255,255,0.5); }

.testi-slider-wrap { position: relative; overflow: hidden; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}
.testi-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}
.testi-stars { color: #ffd700; font-size: 14px; margin-bottom: 16px; }
.testi-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}
.testi-info h5 { color: var(--white); font-size: 15px; font-weight: 600; }
.testi-info span { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ---- FAQ ---- */
.faq-section {
    padding: 96px 0;
    background: var(--off-white);
}
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1.5px solid transparent;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-item.open {
    border-color: rgba(200,16,46,0.25);
    box-shadow: 0 4px 20px rgba(200,16,46,0.1);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}
.faq-question:hover { background: rgba(200,16,46,0.02); }
.faq-q-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}
.faq-q-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(200,16,46,0.08);
    color: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.faq-item.open .faq-q-num {
    background: var(--red);
    color: var(--white);
}
.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 13px;
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-toggle {
    background: var(--red);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
    padding-left: 70px;
}

/* ---- Contact Form Tabs ---- */
.contact-tabs-section {
    background: var(--white);
    padding: 40px 0;
}
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #e8e0e0;
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200,16,46,0.3);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
.tab-form {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.tab-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}
.tab-form p { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.tab-form .form-group input,
.tab-form .form-group select,
.tab-form .form-group textarea {
    background: var(--white);
}
.tab-form .btn-primary { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }

/* ---- Page Hero ---- */
.page-hero {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    padding: 72px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
    position: relative;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb i { font-size: 10px; }

/* ---- Service Grid ---- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    background: var(--white);
    border: 1.5px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,16,46,0.2);
    box-shadow: 0 16px 40px rgba(200,16,46,0.12);
}
.service-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255,255,255,0.8);
}
.service-card-body { padding: 24px; }
.service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}
.service-card-body p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.service-card-body .btn-red-outline { margin-top: 16px; font-size: 13px; padding: 9px 20px; }

/* ---- Contact Page ---- */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
}
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 14px;
    color: var(--dark);
}
.contact-info p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.c-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.c-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(200,16,46,0.08);
    color: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.c-info h5 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.c-info a, .c-info p { font-size: 14px; color: var(--gray); }
.contact-form-box {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 40px;
}
.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark);
}
.contact-form-box p { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.contact-map { margin-top: 56px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* ---- About Page ---- */
.about-section-page { padding: 80px 0; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1.5px solid transparent;
}
.team-card:hover {
    border-color: rgba(200,16,46,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200,16,46,0.1);
}
.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 16px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}
.team-card h4 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--red); }

/* ---- Footer ---- */
.main-footer { background: #111; color: var(--white); }
.footer-top { padding: 64px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-logo .logo-main { color: var(--red-light); }
.footer-logo .logo-sub { color: #888; }
.footer-col p {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 15px;
    transition: var(--transition);
}
.social-links a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: #999;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a i { color: var(--red); font-size: 11px; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.fc-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.fc-item i { color: var(--red); font-size: 15px; margin-top: 2px; }
.fc-item span, .fc-item a, .fc-item div {
    font-size: 14px;
    color: #999;
    line-height: 1.5;
}
.fc-item a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: #666; }

/* ---- Floating Elements ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.scroll-top {
    position: fixed;
    bottom: 92px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(200,16,46,0.35);
    transition: var(--transition);
}
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }
.scroll-top.show { display: flex; }

/* ---- Animations ---- */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@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.7); }
}

/* ---- Alert / Success ---- */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    border: 1px solid #c3e6cb;
    display: none;
}
.alert-success.show { display: block; animation: fadeIn 0.3s ease; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card.popular { transform: none; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .slider-content-area .container { grid-template-columns: 1fr 360px; gap: 28px; }
    .about-grid { gap: 40px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav, .header-cta { display: none; }
    .hamburger { display: flex; }
    .slider-content-area .container { grid-template-columns: 1fr; }
    .hero-form-box { display: none; }
    .hero-section { min-height: 70vh; }
    .slider-wrapper { height: 70vh; }
    .about-grid { grid-template-columns: 1fr; }
    .about-badge { right: 0; bottom: -20px; }
    .about-img-main img { height: 300px; }
    .price-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .service-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .top-bar .container { justify-content: center; }
    .top-bar-left { display: none; }
    .tab-form { padding: 28px 20px; }
}
