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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header-top {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-text {
    font-weight: 500;
}

.header-links {
    display: flex;
    gap: 20px;
}

.header-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.emblem {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2px;
    white-space: nowrap;
}

.logo-text p {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
    white-space: nowrap;
}

.main-nav {
    position: relative;
    margin-left: auto;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #1e3a8a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 12px 16px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 15px;
}

.nav-link:hover {
    color: #1e3a8a;
    background-color: rgba(30, 58, 138, 0.05);
}

.nav-link.active {
    color: #1e3a8a;
    background-color: rgba(30, 58, 138, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80') center/cover no-repeat;
    background-attachment: fixed;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.1) brightness(1.05);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.6);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* Quick Info Section */
.quick-info {
    padding: 80px 0;
    background: #f8fafc;
}

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

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.info-card p {
    color: #6b7280;
    line-height: 1.5;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.attraction-card:active {
    transform: translateY(-4px);
}

.attraction-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.attraction-content {
    padding: 20px;
}

.attraction-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.attraction-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-tag {
    background: #eff6ff;
    color: #1e40af;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* Specific attraction images */
.kolaba-fort {
    background-image: url('images/kobala.jfif');
}

.raigad-beach {
    background-image: url('images/AlibagBeach.jfif');
}

.kashid-beach {
    background-image: url('images/Kashi.jpg');
}

.janjira-fort {
    background-image: url('images/MURUD.webp');
}

.attraction-overlay {
    color: white;
    font-size: 48px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.attraction-image:hover .attraction-overlay {
    opacity: 1;
}

.attraction-content {
    padding: 25px;
}

.attraction-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.attraction-content p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.attraction-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.attraction-link:hover {
    gap: 12px;
}

/* Activities Section */
.activities {
    padding: 80px 0;
    background: #f8fafc;
}

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

.activity-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.activity-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

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

/* Travel Info Section */
.travel-info {
    padding: 80px 0;
    background: white;
}

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

.travel-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.travel-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
}

.travel-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.travel-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.travel-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* AI Trip Planner */
.ai-trip-planner {
    padding: 80px 0;
    background: #f8fafc;
}

.ai-trip-planner .section-title {
    color: #1e3a8a;
}

.ai-trip-planner .section-subtitle {
    color: #6b7280;
}

.trip-planner-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.planner-intro {
    text-align: center;
}

.planner-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.planner-icon i {
    font-size: 3rem;
    color: white;
}

.planner-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1e3a8a;
    font-weight: 600;
}

.planner-intro p {
    color: #6b7280;
    line-height: 1.6;
}

.planner-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.planner-form h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #1e3a8a;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e3a8a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.interest-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.interest-item:hover {
    background: #e5e7eb;
    border-color: #3b82f6;
}

.interest-item input[type="checkbox"] {
    display: none;
}

.interest-item input[type="checkbox"]:checked + .checkmark + i {
    color: #ff6b35;
}

.interest-item input[type="checkbox"]:checked ~ * {
    color: #1e3a8a;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.interest-item input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.interest-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.interest-item i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

.plan-trip-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plan-trip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.planner-features h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1e3a8a;
    font-weight: 600;
}

.features-grid {
    display: grid;
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1e3a8a;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 0;
}

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

.footer-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #d1d5db;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
}

.footer-links {
    list-style: none;
}

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

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

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #9ca3af;
}

.contact-info i {
    width: 16px;
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-content {
        position: relative;
        padding: 15px 0;
    }
    
    .logo-section {
        flex-shrink: 0;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    .emblem {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .main-nav {
        margin-left: 0;
        width: 100%;
    }
    
    .nav-list {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        margin: 0;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list li {
        margin: 0;
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid #f3f4f6;
        text-align: center;
        width: 100%;
        border-radius: 6px;
        margin-bottom: 5px;
    }
    
    .nav-list a:hover {
        background-color: rgba(30, 58, 138, 0.05);
    }
    
    .nav-list a:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .hero {
        height: 70vh;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 20px;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 16px;
        min-width: 140px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activities-grid,
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .attraction-card {
        margin-bottom: 15px;
    }
    
    .info-card {
        padding: 20px 15px;
        margin-bottom: 10px;
    }
    
    .info-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .info-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .activity-item,
    .travel-card {
        padding: 20px 15px;
        margin-bottom: 10px;
    }
    
    .activity-item h3,
    .travel-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .activity-item p,
    .travel-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .activity-icon,
    .travel-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .trip-planner-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .planner-form {
        order: 2;
    }
    
    .planner-intro {
        order: 1;
        text-align: center;
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 16px;
        margin-bottom: 8px;
        display: block;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
        width: 100%;
        min-height: 48px;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .interest-item {
        padding: 12px;
        font-size: 14px;
        text-align: center;
        border-radius: 8px;
        min-height: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
    
    .interest-item i {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .btn-generate {
        width: 100%;
        padding: 16px;
        font-size: 18px;
        margin-top: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        height: 65vh;
        padding: 30px 0;
    }
    
    .hero-content {
        padding: 15px;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
        text-align: center;
        min-height: 52px;
        border-radius: 8px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
    
    .btn-secondary {
        border: 2px solid #1e40af;
        background: rgba(255, 255, 255, 0.95);
        color: #1e40af;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .nav-list {
        gap: 15px;
        padding: 15px 0;
    }
    
    .nav-list a {
        padding: 12px 20px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
    }
    
    .header-top-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 8px 0;
    }
    
    .gov-info {
        text-align: left;
        flex-shrink: 0;
    }
    
    .header-top-content span {
        font-size: 14px;
    }
    
    .header-links {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 4px;
        flex-shrink: 0;
        max-width: 60%;
    }
    
    .header-links::-webkit-scrollbar {
        display: none;
    }
    
    .header-link {
        padding: 8px 12px;
        font-size: 14px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }
    
    .header-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
    
    /* Hide Contact link on mobile */
    .header-link:nth-child(3) {
        display: none;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .interest-item {
        padding: 16px 12px;
        min-height: 56px;
        font-size: 14px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    
    .interest-tag {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 48px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px;
        font-size: 16px;
        min-height: 52px;
        border-radius: 8px;
    }
    
    .activity-item h3,
    .travel-card h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .activity-item p,
    .travel-card p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .info-card {
        padding: 20px;
        text-align: center;
    }
    
    .info-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .info-card p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .footer-links a {
        padding: 8px 0;
        font-size: 15px;
        min-height: 40px;
        display: block;
    }
    
    .contact-info p {
        font-size: 14px;
        padding: 4px 0;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.attraction-card,
.activity-item,
.travel-card,
.info-card {
    animation: fadeInUp 0.6s ease-out;
}