/* ==========================================================================
   Custom styles for Zee Rauda Travels - MOBILE FIRST
   ========================================================================== */

/* ==========================================================================
   CSS Variables - Theme Configuration
   ========================================================================== */

:root {
    /* Colors - Deep Greens & Golds (Solarpunk Islamic aesthetic) */
    --color-emerald: #1a3d2e;
    --color-emerald-dark: #0f2a1f;
    --color-emerald-light: #2d5a47;
    --color-gold: #c9a227;
    --color-gold-light: #e8d48a;
    --color-cream: #faf8f3;
    --color-sand: #e8e0d5;
    --color-charcoal: #2a2a2a;

    /* Typography */
    --font-display: 'Fraunces', serif;
    --font-body: 'Satoshi', sans-serif;

    /* Spacing - Mobile first */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Touch target minimum */
    --touch-target: 44px;

    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ==========================================================================
   Base Styles & Reset (Mobile First)
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Grain Overlay for texture */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Typography (Mobile First)
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 var(--space-sm) 0;
    color: var(--color-emerald);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p {
    margin: 0 0 var(--space-sm) 0;
    font-size: 1rem;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-slow-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 40px rgba(201, 162, 39, 0.5); }
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes scale-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.fade-in {
    animation: fade-in 0.6s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ==========================================================================
   Navigation (Mobile First)
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 61, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.nav-container {
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.brand-crescent {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
}

.brand-crescent::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 7px -3px 0 0 var(--color-gold);
    top: 4px;
    left: 0;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-cream);
    letter-spacing: -0.02em;
}

/* Mobile menu - hidden by default */
.nav-menu {
    display: none;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-target);
    padding: 0.6rem 1rem;
    background: var(--color-gold);
    color: var(--color-emerald);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all var(--transition-base);
}

.btn-cta:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-cta:active {
    transform: scale(0.98);
}

/* ==========================================================================
   Hero Section (Mobile First)
   ========================================================================== */

.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Mobile viewport fix */
    padding: calc(50px + var(--space-md)) var(--space-md) var(--space-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 61, 46, 0.9) 0%, rgba(15, 42, 31, 0.85) 100%);
    z-index: 1;
}

/* Hero calligraphy - smaller on mobile */
.hero-calligraphy {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    z-index: 2;
}

.hero-calligraphy-1 {
    top: 5%;
    left: -10%;
    width: 80px;
    height: 80px;
    background:
        radial-gradient(circle at 30% 30%, var(--color-gold) 0%, transparent 20%),
        radial-gradient(circle at 70% 70%, var(--color-gold) 0%, transparent 20%),
        conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            var(--color-gold) 30deg,
            transparent 60deg,
            var(--color-gold) 120deg,
            transparent 150deg,
            var(--color-gold) 210deg,
            transparent 240deg,
            var(--color-gold) 300deg,
            transparent 330deg
        );
    animation: rotate-slow 60s linear infinite;
}

.hero-calligraphy-2 {
    bottom: 10%;
    right: -10%;
    width: 100px;
    height: 100px;
    background:
        radial-gradient(circle at 50% 50%, var(--color-gold) 0%, transparent 30%),
        repeating-conic-gradient(from 0deg,
            transparent 0deg 15deg,
            var(--color-gold) 15deg 18deg
        );
    animation: rotate-slow-reverse 45s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    text-align: center;
}

.hero-tagline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-md);
    color: var(--color-cream);
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--color-gold);
    font-size: 1.15em;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
}

.hero-description {
    font-size: 1rem;
    color: var(--color-cream);
    opacity: 0.95;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-target);
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    width: 100%;
}

.btn-primary:active, .btn-secondary:active {
    transform: scale(0.98);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-emerald-dark);
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

.btn-whatsapp:active {
    background: #1aa34f;
}

.btn-call {
    background: var(--color-emerald-light);
    color: var(--color-cream);
}

.btn-call:hover {
    background: var(--color-emerald);
}

.btn-call:active {
    background: var(--color-emerald-dark);
}

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

.btn-secondary:hover {
    background: var(--color-emerald);
    color: var(--color-cream);
}

/* ==========================================================================
   Section Common (Mobile First)
   ========================================================================== */

.packages, .about, .contact {
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

.section-pattern, .section-pattern-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(26, 61, 46, 0.03) 35px,
        rgba(26, 61, 46, 0.03) 70px
    );
    pointer-events: none;
}

.section-pattern-light {
    opacity: 0.3;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 35px,
        rgba(201, 162, 39, 0.05) 35px,
        rgba(201, 162, 39, 0.05) 70px
    );
}

.container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 2px;
}

.section-tagline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-emerald-light);
    margin-bottom: var(--space-xs);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-description {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    opacity: 0.7;
    max-width: 100%;
}

/* ==========================================================================
   Packages Section (Mobile First)
   ========================================================================== */

.packages {
    background: var(--color-sand);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.package-card {
    background: var(--color-cream);
    border-radius: 12px;
    padding: var(--space-md);
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid rgba(26, 61, 46, 0.1);
    opacity: 0;
    animation: fade-in 0.6s ease forwards;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: 12px;
    pointer-events: none;
}

.package-card:active {
    transform: scale(0.98);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card-featured {
    border: 2px solid var(--color-gold);
    background: linear-gradient(135deg, var(--color-cream) 0%, rgba(201, 162, 39, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: var(--space-sm);
    background: var(--color-gold);
    color: var(--color-emerald);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
}

.package-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-sm);
    position: relative;
}

/* Package Image Styles */
.package-image-wrapper {
    width: 100%;
    height: 160px;
    margin-bottom: var(--space-sm);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 61, 46, 0.3) 100%);
}

/* Fallback for old icon styles */
.icon-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald);
    border-radius: 10px;
}

.package-icon-hajj .icon-inner {
    background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-light) 100%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.package-icon-umrah .icon-inner {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
}

.package-icon-ziyarah .icon-inner {
    background: linear-gradient(135deg, var(--color-emerald-light) 0%, var(--color-emerald) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.package-icon-gulf .icon-inner {
    background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-light) 100%);
    border-radius: 6px;
}

.package-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.package-description {
    font-size: 0.9rem;
    color: var(--color-charcoal);
    opacity: 0.75;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.package-features {
    margin-bottom: var(--space-sm);
}

.package-features li {
    font-size: 0.85rem;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-charcoal);
    opacity: 0.8;
}

.package-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

.package-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-emerald);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--color-emerald);
    transition: all var(--transition-fast);
    min-height: var(--touch-target);
}

.package-link:active {
    opacity: 0.7;
}

/* Staggered animations */
.package-card:nth-child(1) { animation-delay: 0s; }
.package-card:nth-child(2) { animation-delay: 0.1s; }
.package-card:nth-child(3) { animation-delay: 0.2s; }
.package-card:nth-child(4) { animation-delay: 0.3s; }

/* ==========================================================================
   About Section (Mobile First)
   ========================================================================== */

.about {
    background: var(--color-emerald);
    color: var(--color-cream);
    overflow: hidden;
}

.about::before, .about::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.about::before { top: 0; }
.about::after { bottom: 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.about-content-centered {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    position: relative;
}

.about .section-tagline {
    color: var(--color-gold-light);
}

.about .section-title {
    color: var(--color-cream);
}

.about-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: var(--space-md);
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-4px);
    background: rgba(201, 162, 39, 0.15);
}

.trust-image-wrapper {
    width: 100%;
    height: 120px;
    margin-bottom: var(--space-sm);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.trust-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trust-item:hover .trust-image {
    transform: scale(1.05);
}

.trust-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 61, 46, 0.2) 100%);
}

.trust-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-xs);
    position: relative;
}

.trust-inner {
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.trust-icon-experience .trust-inner::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
}

.trust-icon-pilgrims .trust-inner::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.trust-icon-certified .trust-inner {
    border-radius: 6px;
}

.trust-icon-certified .trust-inner::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-gold);
    border-radius: 3px;
}

.trust-item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(201, 162, 39, 0.2);
    animation: float-gentle 6s ease-in-out infinite;
}

.about-mosque-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-ornament {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--color-gold);
    opacity: 0.8;
}

.about-ornament-tl {
    top: 10px;
    left: 10px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: scale-pulse 3s ease-in-out infinite;
}

.about-ornament-tr {
    top: 10px;
    right: 10px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: scale-pulse 3s ease-in-out infinite 0.5s;
}

.about-ornament-bl {
    bottom: 10px;
    left: 10px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: scale-pulse 3s ease-in-out infinite 1s;
}

.about-ornament-br {
    bottom: 10px;
    right: 10px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: scale-pulse 3s ease-in-out infinite 1.5s;
}

/* ==========================================================================
   Contact Section (Mobile First)
   ========================================================================== */

.contact {
    background: var(--color-cream);
}

.contact-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto var(--space-lg);
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    opacity: 0.75;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    max-width: 100%;
    margin: 0 auto var(--space-lg);
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: 12px;
    transition: all var(--transition-base);
    position: relative;
    gap: var(--space-sm);
    text-decoration: none;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.contact-cta:active::before {
    left: 100%;
}

.contact-cta:active {
    transform: scale(0.98);
}

.contact-cta-whatsapp {
    background:
        linear-gradient(135deg, rgba(15, 42, 31, 0.92) 0%, rgba(26, 61, 46, 0.88) 100%),
        url('../img/contact-whatsapp.jpg') center/cover;
    background-blend-mode: multiply;
    color: var(--color-gold);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.contact-cta-phone {
    background:
        linear-gradient(135deg, rgba(26, 61, 46, 0.96) 0%, rgba(45, 90, 71, 0.94) 100%),
        url('../img/contact-phone.jpg') center/cover;
    background-blend-mode: multiply;
    color: var(--color-cream);
    box-shadow: 0 8px 20px rgba(26, 61, 46, 0.2);
}

.contact-cta-email {
    background:
        linear-gradient(135deg, rgba(45, 90, 71, 0.96) 0%, rgba(26, 61, 46, 0.94) 100%),
        url('../img/contact-email.jpg') center/cover;
    background-blend-mode: multiply;
    color: var(--color-cream);
    box-shadow: 0 8px 20px rgba(45, 90, 71, 0.2);
}

.cta-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-icon svg {
    width: 32px;
    height: 32px;
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.cta-content p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}

.cta-number {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    word-break: break-all;
}

.cta-arrow {
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}

.contact-office {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    max-width: 100%;
    padding: var(--space-md);
    background: var(--color-sand);
    border-radius: 12px;
}

.office-icon {
    flex-shrink: 0;
}

.office-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.office-content address {
    font-style: normal;
    color: var(--color-charcoal);
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.office-hours {
    font-size: 0.8rem;
    color: var(--color-emerald-light);
    margin: 0;
}

/* ==========================================================================
   Footer (Mobile First)
   ========================================================================== */

.footer {
    background: var(--color-emerald-dark);
    color: var(--color-cream);
    padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

.brand-crescent-small {
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

.brand-crescent-small::before {
    width: 18px;
    height: 18px;
    box-shadow: 6px -3px 0 0 var(--color-gold);
}

.footer .brand-name {
    font-size: 1rem;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-column a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all var(--transition-fast);
    display: block;
    padding: 0.25rem 0;
}

.footer-column a:active {
    opacity: 1;
    color: var(--color-gold);
}

.footer-bottom {
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Footer crescent decoration */
.footer-bottom::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto var(--space-xs);
    background: none;
    box-shadow: 8px -4px 0 0 var(--color-gold);
    border-radius: 50%;
    opacity: 0.5;
}

/* ==========================================================================
   MEDIA QUERIES - Progressive Enhancement (min-width)
   ========================================================================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    :root {
        --space-xl: 3.5rem;
        --space-2xl: 4.5rem;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.35rem; }

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

    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-image-wrapper {
        max-width: 300px;
        height: 300px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    :root {
        --space-lg: 2.5rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }

    .nav-menu {
        display: flex;
        gap: var(--space-md);
    }

    .nav-menu a {
        color: var(--color-cream);
        font-weight: 500;
        font-size: 0.95rem;
        position: relative;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-gold);
        transition: width var(--transition-base);
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    .hero-actions {
        flex-direction: row;
        max-width: 500px;
    }

    .btn-primary, .btn-secondary {
        width: auto;
    }

    .hero-calligraphy-1 {
        width: 100px;
        height: 100px;
        left: 2%;
    }

    .hero-calligraphy-2 {
        width: 120px;
        height: 120px;
        right: 3%;
    }

    .section-description {
        font-size: 1rem;
    }

    .container {
        max-width: 720px;
    }

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

    .contact-cta {
        padding: var(--space-lg);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--space-lg);
    }

    .footer-brand {
        text-align: left;
    }

    .footer-links {
        flex-direction: row;
        gap: var(--space-lg);
    }

    .footer-column h4 {
        text-align: left;
    }

    .footer-column ul li {
        text-align: left;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    :root {
        --space-xl: 4.5rem;
        --space-2xl: 6rem;
    }

    h1 { font-size: 3.25rem; }
    h2 { font-size: 2.5rem; }

    .container {
        max-width: 960px;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .about-visual {
        order: 2;
    }

    .contact-cta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-cta {
        padding: var(--space-xl) var(--space-lg);
    }

    .cta-icon {
        width: 64px;
        height: 64px;
    }

    .cta-icon svg {
        width: 40px;
        height: 40px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-number {
        font-size: 1.1rem;
    }

    .contact-office {
        flex-direction: row;
        text-align: left;
        max-width: 600px;
        padding: var(--space-lg);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    html {
        font-size: 18px;
    }

    .container {
        max-width: 1140px;
    }

    h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
    h2 { font-size: clamp(2rem, 4vw, 3rem); }
    h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

    .brand-crescent {
        width: 32px;
        height: 32px;
    }

    .brand-crescent::before {
        width: 24px;
        height: 24px;
        box-shadow: 8px -4px 0 0 var(--color-gold);
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 var(--space-md);
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .title-highlight::after {
        width: 80px;
        height: 4px;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        gap: var(--space-sm);
    }

    .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: 180px;
    }

    .hero-calligraphy-1 {
        width: 120px;
        height: 120px;
        top: 10%;
        left: 5%;
        opacity: 0.15;
    }

    .hero-calligraphy-2 {
        width: 150px;
        height: 150px;
        bottom: 15%;
        right: 8%;
        opacity: 0.15;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    .section-header::after {
        bottom: -10px;
        width: 60px;
        height: 3px;
    }

    .section-tagline {
        font-size: 0.85rem;
    }

    .section-description {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .package-card {
        padding: var(--space-lg);
    }

    .package-icon {
        width: 60px;
        height: 60px;
    }

    .package-image-wrapper {
        height: 200px;
    }

    .package-title {
        font-size: 1.5rem;
    }

    .package-description {
        font-size: 0.95rem;
    }

    .package-features li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .package-features li::before {
        width: 8px;
        height: 8px;
    }

    .package-link {
        font-size: 0.9rem;
    }

    .about-image-wrapper {
        max-width: 320px;
        height: 320px;
    }

    .about-image-ornament {
        width: 40px;
        height: 40px;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .trust-icon {
        width: 60px;
        height: 60px;
    }

    .trust-item h4 {
        font-size: 1.5rem;
    }

    .contact-header {
        max-width: 700px;
    }

    .contact-intro {
        font-size: 1.1rem;
    }

    .cta-arrow {
        opacity: 0;
        transform: translateX(-10px);
        transition: all var(--transition-base);
    }

    .contact-cta:hover .cta-arrow {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ultra wide screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }

    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .nav, .footer, .hero-calligraphy {
        display: none;
    }

    .hero {
        padding: var(--space-md);
        min-height: auto;
    }

    .package-card {
        page-break-inside: avoid;
    }
}
