html,body{max-width:100%;overflow-x:hidden;margin:0;font-family:'Poppins',Arial,sans-serif;color:#222}
/* ============================================================================
   GLOBAL STYLES – Chandigarh Tour Travels
   Author: ChatGPT
   Purpose: Base layout, typography, spacing, grids, utilities
   NOTE: Does NOT include header, footer, or home page CSS.
============================================================================ */

/* --------------------------------------------------------------------------
   ROOT VARIABLES (Colors, Shadows, Radius)
-------------------------------------------------------------------------- */
:root {
    --purple: #7a39ff;
    --gold: #f8b400;
    --purple-light: #b28dff;

    --text-dark: #111;
    --text-light: #444;

    --bg-light: #fafafa;
    --radius: 12px;

    --shadow: 0 6px 20px rgba(0,0,0,0.08);
    --shadow-soft: 0 3px 12px rgba(0,0,0,0.06);

    --gradient-main: linear-gradient(135deg, #7a39ff, #f8b400);
}

/* --------------------------------------------------------------------------
   RESET + BASE
-------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: var(--text-dark);
    line-height: 1.55;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --------------------------------------------------------------------------
   GLOBAL CONTAINERS + SECTIONS
-------------------------------------------------------------------------- */
.container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   BUTTONS (Reusable)
-------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: 0.25s ease;
}

/* Purple Primary */
.btn-primary {
    background: var(--purple);
    color: #fff;
    box-shadow: var(--shadow);
}
.btn-primary:hover {
    background: #5c23d9;
    transform: translateY(-2px);
}

/* Outline Purple */
.btn-outline {
    border: 2px solid var(--purple);
    color: var(--purple);
}
.btn-outline:hover {
    background: var(--purple);
    color: #fff;
}

/* Gold Button */
.btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 14px rgba(248,180,0,0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248,180,0,0.4);
}

/* --------------------------------------------------------------------------
   GLOBAL CARD STYLE
-------------------------------------------------------------------------- */
.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   RESPONSIVE GRID SYSTEM
-------------------------------------------------------------------------- */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 20px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   FORM ELEMENTS
-------------------------------------------------------------------------- */
input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid #ddd;
    font-size: 1rem;
    background: #fff;
    transition: 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(122,57,255,0.2);
    outline: none;
}

/* --------------------------------------------------------------------------
   ANIMATIONS
-------------------------------------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   UTILITY CLASSES
-------------------------------------------------------------------------- */
.text-center { text-align: center; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.hide { display: none !important; }
