/* 
   Jhelum Kinaré - Luxury Home Stay
   Color Scheme:
   - Primary: #163d62 (Navy Blue)
   - Secondary: #0e2a45 (Deep Navy)
   - Tertiary: #2a5480 (Light Navy)
   - Accent: #D4B78F (Champagne Gold)
   - Light: #F5F7F8 (Off-White)
   - Dark: #0a1c2e (Dark Navy)
*/

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #163d62;
    --primary-light: #2a5480;
    --secondary: #0e2a45;
    --tertiary: #3a6494;
    --accent: #D4B78F;
    --light: #F5F7F8;
    --dark: #0a1c2e;
    --white: #FFFFFF;
    --gray: #E5E7E8;
    --transition: all 0.3s ease;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--secondary);
}

h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-top: 1rem;
    padding-bottom: 0.5rem;
}

h2 {
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-top: 0.75rem;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 2.8rem;
    line-height: 1.3;
}

h4 {
    font-size: 2.4rem;
    line-height: 1.4;
}

.elegant-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.elegant-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 6rem;
    height: 2px;
    background-color: var(--accent);
}

.elegant-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-accent {
    color: var(--accent);
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-light {
    font-weight: 300;
}

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

.text-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-spaced {
    letter-spacing: 2px;
}

.text-italic {
    font-style: italic;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.4rem;
    line-height: 1.4;
    color: var(--secondary);
    position: relative;
    padding: 2rem 3rem;
}

.quote::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -1rem;
    left: 0;
    color: var(--accent);
    opacity: 0.3;
}

p {
    margin-bottom: 1.6rem;
}

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

a:hover {
    color: var(--accent);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    text-align: center;
}

.page-header .container {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.section {
    padding: 6rem 0;
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0;
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--white);
}

.btn:hover::before {
    width: 100%;
}

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

.btn-secondary::before {
    background-color: var(--primary);
}

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

.btn-outline::before {
    background-color: var(--primary);
}

.btn-outline:hover {
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-accent::before {
    background-color: var(--secondary);
}

.btn-accent:hover {
    color: var(--white);
}

/* ===== HEADER ===== */
/* Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.8rem 0;
    font-size: 1.2rem;
    margin: 0;
}

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

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
}

.social-icon.whatsapp-icon:hover {
    background-color: #25D366;
    color: var(--white);
}

.social-icon.email-icon:hover {
    background-color: #EA4335;
    color: var(--white);
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.contact-phone i {
    margin-right: 0.8rem;
    font-size: 1.6rem;
}

.contact-phone:hover {
    color: var(--accent);
}

.header-contact .contact-btn {
    background-color: var(--tertiary);
    color: var(--white);
    padding: 0.6rem 1.8rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-contact .contact-btn:hover {
    background-color: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-bar-inner {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .header-contact {
        width: 100%;
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    margin: 0;
}

.logo {
    margin-bottom: 2rem;
    text-align: center;
}

.logo a {
    display: inline-block;
}

.logo img {
    max-width: 180px;
    height: auto;
}

.main-nav {
    width: 100%;
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
}

.menu li {
    margin: 0 1.5rem;
}

.menu a {
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

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

.menu a:hover, .menu a.active {
    color: var(--primary);
}

.menu a:hover::after, .menu a.active::after {
    width: 100%;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-inner {
        position: relative;
        justify-content: space-between;
    }
    
    .main-nav {
        margin-left: auto;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        padding: 8rem 2rem 2rem;
        z-index: 999;
        flex-direction: column;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Background image classes for different pages */
.hero-home {
    background-image: url('../images/Home/JK_Home_1.jpg');
}

.page-header-about {
    background-image: url('../images/About_Us/JK_About_Us_1.jpg');
}

.page-header-accommodation {
    background-image: url('../images/Accomodation/JK_Accomodation_1.jpg');
}

.page-header-contact {
    background-image: url('../images/Contact_Us/JK_Contact_Us_1.jpg');
}

.page-header-gallery {
    background-image: url('../images/gallery/exterior.jpg');
}

.page-header-faq {
    background-image: url('../images/FAQs/JK_FAQs_1.jpg');
}

.page-header-blog {
    background-image: url('../images/Blog/JK_Blog_1.jpg');
}

.page-header-things-to-do {
    background-image: url('../images/things_to_do/JK_Things_to_Do_1.jpg');
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Removed opacity overlay completely */
    z-index: 1;
}

/* Hero background animation */
.hero {
    position: relative;
    animation: none;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
    transform: translateZ(0);
}

@keyframes heroZoomEffect {
    0% {
        background-size: 100%;
        background-position: center;
    }
    100% {
        background-size: 110%;
        background-position: center 45%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--light);
}

/* Static Hero Section */
.static-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.static-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/Home/JK_Home_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.static-hero .hero-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Removed opacity overlay completely */
    z-index: 2;
}

.static-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 0;
    }
    
    .about-text {
        order: 2;
        margin-top: 2rem;
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    background-color: var(--light);
    text-align: center;
}

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

.feature-item {
    padding: 3rem;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.feature-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* ===== ROOMS SECTION ===== */
.rooms {
    background-color: var(--white);
}

.room-card {
    margin-bottom: 5rem;
    background-color: var(--light);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.room-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-image {
    height: 300px;
    overflow: hidden;
}

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

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

.room-details {
    padding: 3rem;
}

.room-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.room-price {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.room-feature {
    margin-right: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.room-feature i {
    color: var(--accent);
    margin-right: 0.5rem;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 250px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-filter button {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.6rem;
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background-color: var(--primary);
    color: var(--white);
}

.seasonal-gallery {
    margin-top: 4rem;
}

.season-section {
    margin-bottom: 6rem;
}

.season-section h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 600;
}

.gallery-slider {
    padding-bottom: 3rem;
}

.gallery-slider .swiper-pagination-bullet {
    background-color: var(--primary);
    opacity: 0.5;
}

.gallery-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--dark);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--white);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 3rem;
    background-color: var(--light);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    top: -1rem;
    left: -1rem;
}

.testimonial-text::after {
    bottom: -4rem;
    right: -1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    background-color: var(--light);
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 6rem 2rem;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 0.5rem;
}

.contact-header h1 {
    color: var(--light);
    font-size: 4.2rem;
    margin-bottom: 2rem;
}

.contact-header p {
    color: var(--light);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Social Links */
.contact-social-links h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.8rem;
    margin: 0 1rem;
}

.contact-social-links a:hover {
    background-color: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Map Section */
.contact-info {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 2px;
    background-color: var(--accent);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
    opacity: 1 !important; /* Ensure icons are always visible */
    display: block !important;
}

.contact-text h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.contact-text p {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* Phone number specific styling */
.footer-contact p i.fa-phone + span,
.footer-contact p i.fa-phone {
    font-weight: 600 !important; /* Make phone numbers bolder */
    letter-spacing: 0.5px; /* Add letter spacing for better readability */
}

/* Contact info container styles */
.contact-info-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-title {
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 2px;
    background-color: var(--accent);
}

.contact-info-item {
    margin-bottom: 2.5rem;
}

.contact-info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-info-text {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-info-text a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-text a:hover {
    color: var(--secondary);
}

/* Social Links */
.social-links {
    display: flex;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    background-color: rgba(22, 61, 98, 0.1);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Fix Contact Us button alignment */
.section .text-center .btn {
    margin: 0 auto;
    display: table;
    text-align: center;
}

/* ===== CONTACT FORM ===== */
.contact-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-container h3 {
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 2px;
    background-color: var(--accent);
}

.alert {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    color: #155724;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(142, 113, 81, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--secondary);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.contact-form-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.contact-form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
}

.btn-submit {
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.alert {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid transparent;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-left-color: #28a745;
    color: #1e7e34;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-left-color: #dc3545;
    color: #bd2130;
}

/* Booking Info Section */
.booking-info-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 6rem 0;
}

.booking-info-section .section-title {
    color: var(--white) !important;
    margin-bottom: 4rem;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.booking-item h3 {
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.booking-item p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.booking-info-section .btn {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0; /* Remove padding to control height better */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    height: 25vh;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Reduced opacity from 0.5 to 0.3 */
}

.page-header .container {
    position: relative;
    z-index: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 1.4rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 1rem;
    color: var(--white);
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--accent);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--dark);
}

/* Things to Do Page Styles */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.attraction-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.attraction-image {
    height: 250px;
    overflow: hidden;
}

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

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

.attraction-content {
    padding: 2rem;
}

.attraction-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.attraction-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--dark);
}

@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .attraction-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.pt-0 {
    padding-top: 0 !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mb-4 {
    margin-bottom: 4rem !important;
}

.mb-6 {
    margin-bottom: 6rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.text-center {
    text-align: center !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.gap-1 {
    gap: 1rem !important;
}

.bg-light {
    background-color: var(--light) !important;
}

/* Day Trips Section */
.day-trips-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.day-trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.day-trip-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.day-trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.day-trip-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.day-trip-card:hover .day-trip-image img {
    transform: scale(1.1);
}

.day-trip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem 1.5rem 1rem;
}

.day-trip-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.day-trip-content {
    padding: 2rem;
}

.day-trip-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.day-trip-info {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: var(--primary);
}

.day-trip-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.day-trip-info i {
    font-size: 1.4rem;
}

@media (max-width: 992px) {
    .day-trips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .day-trips-grid {
        grid-template-columns: 1fr;
    }
}

/* Safari-specific fixes */
@media not all and (min-resolution:.001dpcm) {
    .social-icons a[aria-label="WhatsApp"] i {
        color: var(--white) !important; /* Force white color in Safari */
    }
    
    .footer-contact p {
        opacity: 1 !important; /* Ensure full opacity in Safari */
        color: var(--white) !important; /* Force white color in Safari */
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important; /* Enhanced text shadow for Safari */
    }
    
    .whatsapp-icon i {
        color: var(--white) !important; /* Force white color in Safari */
    }
    
    /* Specific phone number enhancement for Safari */
    .footer-contact p i.fa-phone + span {
        color: var(--white) !important;
        font-weight: 700 !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    }
}