/* Oahu Volcano Tour Static Site Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #dc2626);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c, #b91c1c);
}

.btn-white {
    background: white;
    color: #f97316;
}

.btn-white:hover {
    background: #f9fafb;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #f97316;
}

.btn-full {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-white {
    color: white;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

.section-header-white .section-description {
    color: #d1d5db;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://oahuvolcanotour.com/images/head.jpg?v=2026');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-gradient-t {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent);
}

.hero-gradient-r {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(120, 53, 15, 0.3), transparent, rgba(153, 27, 27, 0.3));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.pattern-1 {
    top: 80px;
    left: 80px;
    width: 128px;
    height: 128px;
    background: white;
}

.pattern-2 {
    bottom: 160px;
    right: 80px;
    width: 192px;
    height: 192px;
    background: #fbbf24;
    filter: blur(80px);
}

.pattern-3 {
    top: 50%;
    left: 33%;
    width: 96px;
    height: 96px;
    background: #fb923c;
    filter: blur(32px);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 1024px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #fed7aa;
    font-size: 18px;
    font-weight: 500;
}

.hero-badge .icon {
    width: 32px;
    height: 32px;
    color: #fed7aa;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.875rem, 4vw, 3.5rem);
    font-weight: 600;
    background: linear-gradient(135deg, #fed7aa, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: clamp(1.25rem, 2vw, 2rem);
    color: #e5e7eb;
    margin-bottom: 32px;
    max-width: 768px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.chevron-down {
    width: 32px;
    height: 32px;
    color: white;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-10px);
    }
    70% {
        transform: translateX(-50%) translateY(-5px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Quick Stats */
.stats-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 48px 24px;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-orange { color: #ea580c; }
.stat-blue { color: #2563eb; }
.stat-green { color: #16a34a; }
.stat-purple { color: #9333ea; }

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* What to Expect */
.expect-section {
    padding: 80px 0;
    background: white;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.expect-item {
    text-align: center;
}

.expect-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    transition: transform 0.3s ease;
}

.expect-item:hover .expect-icon {
    transform: scale(1.1);
}

.icon-orange {
    background: linear-gradient(135deg, #fb923c, #f97316);
}

.icon-blue {
    background: linear-gradient(135deg, #60a5fa, #06b6d4);
}

.icon-green {
    background: linear-gradient(135deg, #4ade80, #10b981);
}

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

.expect-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.expect-desc {
    color: #6b7280;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #1e40af);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.booking-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.booking-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.booking-header {
    background: linear-gradient(135deg, #fb923c, #f97316);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
    color: white;
}

.booking-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.booking-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-header p {
    color: #fed7aa;
    margin: 0;
}

.booking-features {
    margin-bottom: 24px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #6b7280;
}

.booking-feature svg {
    width: 20px;
    height: 20px;
}

.booking-large {
    background: white;
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.booking-large h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.booking-large p {
    color: #6b7280;
    margin-bottom: 24px;
}

.booking-placeholder {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 24px;
    padding: 48px;
    border: 2px dashed #d1d5db;
    color: #6b7280;
    font-size: 18px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.benefits-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefits-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.benefits-card p {
    color: #374151;
    margin-bottom: 24px;
}

.benefits-card blockquote {
    border-left: 4px solid #f97316;
    padding-left: 24px;
    font-style: italic;
    color: #6b7280;
    background: #fff7ed;
    padding: 16px 24px;
    border-radius: 0 8px 8px 0;
    margin: 0;
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    height: 384px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.benefit-item {
    background: white;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

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

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.benefit-item p {
    color: #6b7280;
}

/* Attractions Section */
.attractions-section {
    padding: 80px 0;
    background: white;
}

.attractions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.attractions-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab {
    padding: 24px;
    border-radius: 24px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: left;
}

.tab:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tab-active {
    border-color: #f97316;
    background: #fff7ed;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tab h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.tab-active h3 {
    color: #ea580c;
}

.tab p {
    color: #6b7280;
    margin: 0;
}

.attractions-details {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.attraction-detail {
    display: none;
}

.attraction-active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.attraction-detail h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.attraction-detail > p {
    color: #374151;
    font-size: 18px;
    margin-bottom: 24px;
}

.attraction-highlights h4 {
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.attraction-highlights h4 svg {
    width: 20px;
    height: 20px;
    color: #16a34a;
}

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

.attraction-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.attraction-highlights li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fb923c;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Current Activity Section */
.activity-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    align-items: start;
}

.activity-card {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.activity-icon {
    width: 32px;
    height: 32px;
    color: #3b82f6;
}

.activity-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.status-list {
    margin-bottom: 24px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.status-safe {
    background: #f0fdf4;
}

.status-item span:first-child {
    font-weight: 600;
    color: #1f2937;
}

.status-item span:last-child {
    font-weight: 700;
    color: #16a34a;
}

.activity-card p {
    color: #6b7280;
}

.weather-info {
    margin-bottom: 24px;
}

.weather-item {
    margin-bottom: 24px;
}

.weather-item h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.weather-item p {
    color: #6b7280;
    margin: 0;
}

/* Safety Section */
.safety-section {
    padding: 80px 0;
    background: #fef2f2;
}

.safety-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.warning-icon {
    width: 48px;
    height: 48px;
    color: #ef4444;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.safety-item {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ef4444;
}

.safety-icon {
    background: #fef2f2;
    padding: 12px;
    border-radius: 50%;
    color: #dc2626;
    width: fit-content;
    margin-bottom: 16px;
}

.safety-icon svg {
    width: 24px;
    height: 24px;
}

.safety-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.safety-item p {
    color: #6b7280;
    margin: 0;
}

.safety-reminders {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #fecaca;
}

.safety-reminders h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

.safety-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.safety-column h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin-bottom: 12px;
}

.safety-dont {
    color: #dc2626;
}

.safety-do {
    color: #16a34a;
}

.safety-column h4 svg {
    width: 20px;
    height: 20px;
}

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

.safety-column li {
    color: #6b7280;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.safety-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9ca3af;
}

/* Emergency Section */
.emergency-section {
    padding: 80px 0;
    background: #111827;
    color: white;
}

.emergency-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.phone-icon {
    width: 48px;
    height: 48px;
    color: #f87171;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.emergency-card {
    background: #1f2937;
    border-radius: 24px;
    padding: 32px;
    border-left: 4px solid #ef4444;
}

.emergency-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.emergency-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.emergency-header svg {
    width: 24px;
    height: 24px;
    color: #f87171;
}

.emergency-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #f87171;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.emergency-number:hover {
    color: #fca5a5;
}

.emergency-card p {
    color: #d1d5db;
    margin: 0;
}

.emergency-notice {
    background: #7f1d1d;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
}

.emergency-notice h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.emergency-notice p {
    color: #fecaca;
    margin-bottom: 16px;
}

.emergency-tip {
    color: #fca5a5;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.testimonial p {
    color: #374151;
    font-style: italic;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.author-name {
    font-weight: 600;
    color: #111827;
}

.author-location {
    color: #6b7280;
    font-size: 14px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-list {
    max-width: 1024px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    padding: 32px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px 32px;
    background: white;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #6b7280;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    color: #fed7aa;
    margin-bottom: 32px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.cta-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    color: #fed7aa;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-contact svg {
    width: 20px;
    height: 20px;
}

.cta-contact a {
    color: #fed7aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cta-contact a:hover {
    color: white;
}

/* Footer */
.footer-section {
    background: #111827;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    color: #fb923c;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-content,
    .attractions-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .attractions-tabs {
        order: 2;
    }
    
    .attractions-details {
        order: 1;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-columns {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-contacts {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expect-grid,
    .booking-grid,
    .benefits-grid,
    .safety-grid,
    .emergency-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ea580c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dc2626;
}