/* ========================================
   Kilmainham Dublin - Main Stylesheet
   Modern Minimalist Design with Geometric Elements
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #1a7a5c;
    --color-primary-dark: #145c45;
    --color-primary-light: #2a9d7c;
    --color-accent: #d4a853;
    --color-dark: #1a1a2e;
    --color-gray-900: #212529;
    --color-gray-800: #343a40;
    --color-gray-600: #6c757d;
    --color-gray-400: #adb5bd;
    --color-gray-200: #e9ecef;
    --color-gray-100: #f8f9fa;
    --color-white: #ffffff;
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Section */
.section {
    padding: var(--space-xl) 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(26, 122, 92, 0.1) 0%, rgba(42, 157, 124, 0.05) 100%);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.logo-accent {
    color: var(--color-primary);
}

/* Menu Button */
.menu-btn {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.menu-btn:hover {
    background: var(--color-primary);
}

.menu-btn:hover .menu-icon span {
    background: var(--color-white);
}

.menu-icon {
    position: relative;
    width: 24px;
    height: 16px;
}

.menu-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 70%; }
.menu-icon span:nth-child(3) { bottom: 0; }

/* ========================================
   Navigation Overlay
   ======================================== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-container {
    position: relative;
    text-align: center;
}

.nav-close {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    color: var(--color-dark);
    transition: var(--transition-base);
}

.nav-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(90deg);
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.nav-item {
    overflow: hidden;
}

.nav-link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    padding: var(--space-xs) 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
}

.nav-overlay.active .nav-link {
    transform: translateY(0);
    opacity: 1;
}

.nav-overlay.active .nav-item:nth-child(1) .nav-link { transition-delay: 0.1s; }
.nav-overlay.active .nav-item:nth-child(2) .nav-link { transition-delay: 0.2s; }
.nav-overlay.active .nav-item:nth-child(3) .nav-link { transition-delay: 0.3s; }
.nav-overlay.active .nav-item:nth-child(4) .nav-link { transition-delay: 0.4s; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav Decoration */
.nav-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.geo-shape {
    position: absolute;
    opacity: 0.1;
    transition: var(--transition-slow);
}

.geo-shape-1 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.geo-shape-2 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-accent);
    bottom: -100px;
    left: -100px;
    transform: rotate(45deg);
}

.geo-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    opacity: 0.05;
    top: 50%;
    right: -200px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line span {
    display: inline-block;
    animation: slideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-accent {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    animation: fadeIn 1s ease 0.7s forwards;
    opacity: 0;
    transition: var(--transition-base);
}

.hero-cta:hover {
    background: var(--color-primary-dark);
    transform: translateX(5px);
}

.hero-cta svg {
    transition: var(--transition-base);
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

/* Hero Geometric Shapes */
.hero-geo {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    border: 3px solid var(--color-accent);
    bottom: 50px;
    right: 100px;
    transform: rotate(45deg);
    animation-delay: -2s;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    opacity: 0.1;
    top: 100px;
    right: 200px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-shape-2 {
    animation-name: floatSquare;
}

@keyframes floatSquare {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-15px) rotate(50deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray-600);
    font-size: 0.875rem;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-gray-400);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ========================================
   Introduction Section
   ======================================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.intro-content {
    max-width: 500px;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.stat-card {
    background: var(--color-gray-100);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.stat-card:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
    transition: var(--transition-base);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    transition: var(--transition-base);
}

/* ========================================
   Map Section
   ======================================== */
.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-lg);
    align-items: start;
}

.map-container {
    position: relative;
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-lg);
}

.kilmainham-map {
    width: 100%;
    height: 100%;
}

.map-label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3em;
    fill: var(--color-gray-400);
}

/* Map Markers */
.map-markers {
    position: absolute;
    inset: 0;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 10;
    cursor: pointer;
}

.marker-pin {
    width: 40px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.marker-number {
    transform: rotate(45deg);
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.875rem;
}

.marker-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--color-dark);
}

.map-marker:hover .marker-pin {
    transform: rotate(-45deg) scale(1.2);
    background: var(--color-accent);
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Map Legend */
.map-legend {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.legend-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-gray-200);
}

.legend-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.legend-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-gray-800);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.legend-list li:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.legend-num {
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* ========================================
   Featured Section
   ======================================== */
.featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-md);
}

.featured-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-gray-100);
    transition: var(--transition-base);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-large {
    grid-row: span 2;
}

.card-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.featured-large .card-img {
    min-height: 100%;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.featured-card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--color-white);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.card-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--space-sm);
}

.card-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    transition: var(--transition-base);
}

.featured-card:hover .card-link {
    letter-spacing: 2px;
}

.featured-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn svg {
    transition: var(--transition-base);
}

.btn:hover svg {
    transform: translateX(5px);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    position: relative;
    background: var(--color-gray-100);
    padding: var(--space-xl) 0 var(--space-lg);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-text {
    font-size: 1.75rem;
}

.footer-desc {
    color: var(--color-gray-600);
    line-height: 1.8;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--color-gray-600);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: var(--space-xs);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-200);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* Footer Decoration */
.footer-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    opacity: 0.05;
}

.footer-shape-1 {
    width: 400px;
    height: 400px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.footer-shape-2 {
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-accent);
    bottom: -100px;
    left: 10%;
    transform: rotate(45deg);
}

/* ========================================
   Page Layouts
   ======================================== */
.page-hero {
    position: relative;
    padding: calc(100px + var(--space-xl)) 0 var(--space-xl);
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 600px;
}

.page-hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.page-shape {
    position: absolute;
    opacity: 0.1;
}

.page-shape-1 {
    width: 300px;
    height: 300px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    top: 20%;
    right: 10%;
}

.page-shape-2 {
    width: 150px;
    height: 150px;
    border: 3px solid var(--color-accent);
    bottom: 20%;
    right: 30%;
    transform: rotate(45deg);
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
    padding: var(--space-xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.content-text p {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* ========================================
   Places Grid
   ======================================== */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.place-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.place-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.place-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.place-card:hover .place-card-img img {
    transform: scale(1.1);
}

.place-card-number {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.place-card-content {
    padding: var(--space-lg);
}

.place-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.place-card-desc {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.place-card-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    font-weight: 500;
    transition: var(--transition-base);
}

.place-card-btn:hover {
    gap: var(--space-sm);
}

/* ========================================
   Place Detail Page
   ======================================== */
.place-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.place-hero-bg {
    position: absolute;
    inset: 0;
}

.place-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.place-hero-content {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl);
    color: var(--color-white);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.place-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.place-hero-meta {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

.place-hero-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Place Info Section */
.place-info {
    padding: var(--space-xl) 0;
}

.place-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.place-description h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.place-description p {
    color: var(--color-gray-600);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.place-sidebar {
    position: sticky;
    top: 100px;
}

.info-card {
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.info-card h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-gray-200);
}

.info-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.info-card li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--color-gray-600);
    font-size: 0.95rem;
}

.info-card li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-info-card {
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: var(--transition-base);
}

.contact-info-card:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

.contact-info-card:hover .contact-icon,
.contact-info-card:hover h4,
.contact-info-card:hover p,
.contact-info-card:hover a {
    color: var(--color-white);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.contact-info-card:hover .contact-icon {
    background: rgba(255,255,255,0.2);
}

.contact-details h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
    transition: var(--transition-base);
}

.contact-details p,
.contact-details a {
    color: var(--color-gray-600);
    transition: var(--transition-base);
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 122, 92, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   FAQ Page
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--color-dark);
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* ========================================
   Transport/Getting There
   ======================================== */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.transport-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-base);
}

.transport-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.transport-icon {
    width: 70px;
    height: 70px;
    background: var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--color-primary);
    transition: var(--transition-base);
}

.transport-card:hover .transport-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.transport-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.transport-card p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Animations (Scroll Reveal)
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-geo {
        display: none;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .intro-content {
        max-width: 100%;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-legend {
        order: -1;
    }
    
    .legend-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .place-info-grid {
        grid-template-columns: 1fr;
    }
    
    .place-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-large {
        grid-column: span 1;
    }
    
    .legend-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-close {
        top: -80px;
        right: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --space-2xl: 3rem;
        --space-3xl: 5rem;
    }
    
    .header-container {
        padding: 0 var(--space-sm);
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .menu-btn {
        width: 44px;
        height: 44px;
    }
    
    .nav-link {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .legend-list {
        grid-template-columns: 1fr;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
    }
}

