/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Primary Colors - Warm Earthy Tones */
    --primary-color: #D97757; /* Terracotta orange */
    --primary-dark: #C85A3A;
    --primary-light: #E8957A;

    /* Secondary Colors - Rich Jewel Tones */
    --secondary-color: #1B7A8E; /* Deep teal */
    --secondary-dark: #135968;
    --secondary-light: #3A98AC;

    /* Accent Colors */
    --accent-gold: #C9A961;
    --accent-bronze: #B87333;
    --accent-emerald: #2D6A4F;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAF9F6;
    --cream: #F5F0E8;
    --light-gray: #E8E6E3;
    --medium-gray: #A8A5A0;
    --charcoal: #3D3D3D;
    --text-color: #4A4542;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;

    /* Spacing */
    --header-height: 80px;
    --section-padding: 6rem 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 12px 32px rgba(0,0,0,0.18);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo h2 {
    font-family: var(--font-hindi);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

.header.scrolled .nav__logo h2,
.header.scrolled .nav__logo p {
    color: var(--primary-color);
}

.nav__logo p {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    padding: 0.5rem 0;
    position: relative;
}

.header.scrolled .nav__link {
    color: var(--charcoal);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link i {
    font-size: 0.75rem;
    margin-left: 0.3rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: -100px;
    background: var(--white);
    min-width: 800px;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

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

.dropdown__column h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream);
}

.dropdown__column h4.mt-3 {
    margin-top: 2rem;
}

.dropdown__column a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.dropdown__column a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.season-tag {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* Mobile Menu Toggle */
.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

.header.scrolled .nav__toggle {
    color: var(--charcoal);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero__carousel {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}

.hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero__title-hindi {
    font-family: var(--font-hindi);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.hero__title-main {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin: 1.5rem auto 2.5rem;
    max-width: 700px;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Navigation */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 3;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.hero__arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero__arrow--left {
    left: 2rem;
}

.hero__arrow--right {
    right: 2rem;
}

.hero__dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* ==================== PACKAGES SECTION ==================== */
.packages {
    background: var(--off-white);
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.package__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.package__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.package__card:hover .package__image img {
    transform: scale(1.1);
}

.package__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.package__badge.badge-honeymoon {
    background: var(--accent-gold);
}

.package__badge.badge-cultural {
    background: var(--secondary-color);
}

.package__badge.badge-weekend {
    background: var(--accent-emerald);
}

.package__badge.badge-extended {
    background: var(--accent-bronze);
}

.package__badge.badge-seasonal {
    background: var(--secondary-dark);
}

.package__content {
    padding: 2rem;
}

.package__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.package__description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package__highlights {
    margin-bottom: 1.5rem;
}

.package__highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-color);
}

.package__highlights i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about__pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about__content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about__content h2::after {
    left: 0;
    transform: none;
}

.about__quote {
    position: relative;
    padding: 1.5rem;
    background: var(--cream);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.about__quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about__quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--charcoal);
    font-weight: 500;
}

.about__text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about__text.highlight {
    font-weight: 600;
    color: var(--charcoal);
}

.about__credentials {
    margin: 2.5rem 0;
}

.about__credentials h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.credentials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.credential__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.credential__item:hover {
    background: var(--cream);
    transform: translateX(5px);
}

.credential__item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.credential__item span {
    font-size: 0.95rem;
    color: var(--text-color);
}

.about__experience {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.about__experience p {
    font-size: 1rem;
    color: var(--text-color);
}

.about__blog {
    margin-top: 2rem;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: var(--cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service__card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.service__card:hover::before {
    transform: scaleX(1);
}

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

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

.service__card:hover .service__icon {
    transform: rotateY(360deg);
}

.service__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.service__description {
    color: var(--text-color);
    line-height: 1.7;
}

/* ==================== TRUST SECTION ==================== */
.trust {
    background: var(--gradient-secondary);
    padding: 4rem 0;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

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

.trust__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.trust__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust__label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--off-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact__info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.contact__text {
    color: var(--text-color);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact__details {
    margin-bottom: 2.5rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact__item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact__item a {
    color: var(--text-color);
    transition: var(--transition-fast);
}

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

.contact__social {
    display: flex;
    gap: 1rem;
}

.social__link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social__link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact__form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form__group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__input::placeholder {
    color: var(--medium-gray);
}

.form__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    font-size: 1rem;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__textarea + .form__icon {
    top: 1.25rem;
    transform: none;
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A8A5A0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo h3 {
    font-family: var(--font-hindi);
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.footer__logo p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__contact i {
    color: var(--primary-color);
    font-size: 1rem;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

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

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media screen and (max-width: 1024px) {
    :root {
        --header-height: 70px;
        --section-padding: 4rem 0;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__title-main {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .dropdown__menu {
        min-width: 700px;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .packages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image-wrapper img {
        height: 400px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    :root {
        --header-height: 60px;
        --section-padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Mobile Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 4rem 2rem;
        transition: var(--transition-fast);
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav__item {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav__link {
        display: block;
        padding: 1rem 0;
        color: var(--charcoal);
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        color: var(--charcoal);
    }

    .nav__toggle {
        display: block;
    }

    /* Dropdown for mobile */
    .dropdown__menu {
        position: static;
        min-width: 100%;
        grid-template-columns: 1fr;
        padding: 1rem 0 1rem 1rem;
        box-shadow: none;
        background: var(--off-white);
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-fast);
    }

    .dropdown.active .dropdown__menu {
        max-height: 1000px;
    }

    .dropdown__column h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .dropdown__column a {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero {
        height: 80vh;
    }

    .hero__title-hindi {
        font-size: 1.1rem;
    }

    .hero__title-main {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin: 1rem auto 2rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .hero__arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero__arrow--left {
        left: 1rem;
    }

    .hero__arrow--right {
        right: 1rem;
    }

    .hero__dots {
        bottom: 2rem;
    }

    /* Sections */
    .section__header {
        margin-bottom: 2.5rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .section__subtitle {
        font-size: 1rem;
    }

    /* Packages */
    .packages__grid {
        grid-template-columns: 1fr;
    }

    .package__image {
        height: 200px;
    }

    .package__content {
        padding: 1.5rem;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    .service__card {
        padding: 2rem 1.5rem;
    }

    /* Trust */
    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .trust__number {
        font-size: 2rem;
    }

    .trust__label {
        font-size: 1rem;
    }

    /* Contact */
    .contact__form-container {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .scroll-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .hero__title-main {
        font-size: 1.75rem;
    }

    .hero__title-hindi {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .trust__grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== ANIMATIONS ==================== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --text-color: #000000;
        --charcoal: #000000;
    }
}
