/**
 * Main Stylesheet - Fixed Version
 * Rajasthan Wildlife Safari WordPress Theme
 * Version: 1.0.1
 * Fixed: Card alignments, grid layouts, and visual consistency
 */

/* ===========================
   CSS Variables
   =========================== */
:root {
    --forest-green: #1E392A;
    --golden-amber: #DAA520;
    --desert-sand: #C19A6B;
    --light-beige: #FAF6F1;
    --white: #ffffff;
    --dark: #000000;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-300: #D1D5DB;
    --gray-100: #F3F4F6;
}

/* ===========================
   Global Styles
   =========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--forest-green);
    background-color: var(--white);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--forest-green);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--golden-amber);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--desert-sand);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    text-align: center;
}

/* Fixed text-center class */
.text-center {
    text-align: center !important;
}

/* ===========================
   Header
   =========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--forest-green);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.header-logo img {
    height: 60px;
    width: auto;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--golden-amber);
    border-bottom-color: var(--golden-amber);
}

.header-actions .booking-trigger {
    background-color: var(--golden-amber);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-actions .booking-trigger:hover {
    background-color: var(--desert-sand);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 1200px;
    padding: 0 2.5rem;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--golden-amber);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--desert-sand);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--forest-green);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* ===========================
   Features Grid - FIXED
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%; /* Ensure equal heights */
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--golden-amber);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    flex-grow: 1; /* Push content to fill available space */
}

/* ===========================
   Safari Cards - FIXED
   =========================== */
.safaris-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Reduced from 500px */
    gap: 3rem;
    margin-top: 3rem;
}

.safari-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%; /* Equal height cards */
}

.safari-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.safari-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.safari-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.safari-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.safari-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.safari-highlights {
    margin-bottom: 2rem;
}

.safari-highlights li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
}

.safari-highlights li::before {
    content: "✓";
    color: var(--golden-amber);
    font-weight: bold;
    margin-right: 0.75rem;
}

.safari-link {
    margin-top: auto; /* Push link to bottom */
}

/* ===========================
   Package Cards - FIXED
   =========================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch; /* Stretch all cards to same height */
}

.package-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.package-card.featured {
    border: 2px solid var(--golden-amber);
    transform: scale(1.05);
}

.package-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--golden-amber);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 1.5rem;
}

.package-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.package-price {
    font-size: 2.5rem;
    color: var(--golden-amber);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: var(--gray-600);
    font-size: 1rem;
}

.package-features {
    flex-grow: 1; /* Push button to bottom */
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
}

.package-features li::before {
    content: "✓";
    color: var(--golden-amber);
    font-weight: bold;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.package-action {
    margin-top: auto; /* Push to bottom */
}

.package-action .btn {
    width: 100%;
}

/* ===========================
   Testimonials - FIXED
   =========================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--golden-amber);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--golden-amber);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--forest-green);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 0.25rem;
}

.author-location {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===========================
   CTA Section - ADDED
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--desert-sand) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===========================
   Modal Overlay
   =========================== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--golden-amber);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* Form Styles */
.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.required {
    color: red;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="number"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E5D8C0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--golden-amber);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.error-message {
    display: none;
    color: red;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.error-message.show {
    display: block;
}

.character-count {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.form-actions {
    margin-top: 2rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--golden-amber);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: var(--desert-sand);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.success-message {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--golden-amber);
}

.success-message h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget h4 {
    color: var(--golden-amber);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-credentials p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--golden-amber);
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info .icon {
    font-size: 1.25rem;
    color: var(--golden-amber);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--golden-amber);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}


/* ===========================
   Form Error States
   =========================== */
.error-field {
    border-color: #EF4444 !important;
    background-color: #FEF2F2;
}

.field-error {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* ===========================
   Hero Sections
   =========================== */
.hero-contact,
.hero-ranthambore,
.hero-jhalana,
.hero-generic,
.hero-about {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===========================
   Policy Pages
   =========================== */
.policy-page .policy-section {
    margin-bottom: 2rem;
}

.policy-page .policy-section.bg-amber-50,
.policy-page .policy-section.bg-beige {
    background-color: #FEF3E2;
    padding: 2rem;
    border-radius: 8px;
}

.policy-page ul,
.policy-page ol {
    list-style-position: inside;
    margin-left: 1rem;
}

.policy-page ul {
    list-style-type: disc;
}

.policy-page ol {
    list-style-type: decimal;
}

.policy-page li {
    margin-bottom: 0.5rem;
}

/* ===========================
   Contact Page Specific
   =========================== */
.office-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--golden-amber);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
}

/* ===========================
   About Page Specific
   =========================== */
.promise-card,
.principle-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.promise-card:hover,
.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--light-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.icon-circle i {
    font-size: 2rem;
    color: var(--golden-amber);
}

.principle-card:hover .icon-circle {
    transform: scale(1.1);
}

/* ===========================
   Modal State Management
   =========================== */
.booking-modal {
    display: none;
}

.booking-modal.active {
    display: flex;
}

/* ===========================
   Utility Classes
   =========================== */
.hidden {
    display: none !important;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.grid { display: grid; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ===========================
   Responsive Grid Utilities
   =========================== */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ===========================
   Loading States
   =========================== */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-300);
    border-top-color: var(--golden-amber);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}