html {
    scroll-behavior: smooth;
}

body {  font-family: "Libre Baskerville", serif;}
/* Frontend Layout Styles */
.frontend-layout {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Sections */
.hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: -5rem;
    padding-top: 5rem;
}
.navbar-brand span {color: #EB9A6D; }
.hero-content .lead.title  {     font-family: "Libre Baskerville", serif;font-weight: 400 !important;font-style: italic;}
 .lead { font-family: "Libre Baskerville", serif;}
 .heading { font-size: 2.8rem; font-weight: 700; color: #327375; margin-bottom: 1rem;}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(235, 154, 109, 0.7) 0%, rgba(235, 154, 109, 0.5) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    align-content: center;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Package Cards */
.package-grid {
    display: grid;
    margin: 0 auto;
}

.package-card {
    background: #fff5e8;;
    border-radius: 10px;
    overflow: hidden;border: 1px solid #ffa474;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

/* Custom Smooth Carousel Styling - Slide Effect */
.custom-carousel {
    position: relative;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
}

.custom-carousel .carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.custom-carousel .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.custom-carousel .carousel-item.active {
    z-index: 2;
    transform: translateX(0);
}

.custom-carousel .carousel-item.prev {
    transform: translateX(-100%);
}

.custom-carousel .carousel-item.next {
    transform: translateX(100%);
}

.custom-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-carousel .carousel-control-prev {
    left: 15px;
}

.custom-carousel .carousel-control-next {
    right: 15px;
}

.custom-carousel:hover .carousel-control-prev,
.custom-carousel:hover .carousel-control-next {
    opacity: 0.8;
}

.custom-carousel .carousel-control-prev:hover,
.custom-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.custom-carousel .carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    cursor: pointer;
}

.custom-carousel .carousel-indicators button.active {
    background: white;
    transform: scale(1.2);
}

.custom-carousel .carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.package-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.package-price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: var(--turquoise);
    z-index: 999;
}

.package-content {
    padding: 1.1rem;
}
.home-bottom-abt {padding: 60px 0px;}
.home .nav-item .nav-link { color: #fff !important; }
.packages-grid { padding: 60px 0px;}
.package-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.package-icon {
    font-size: 2rem;
}

.package-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.package-title {
    font-size: 1.5rem;
    color: var(--turquoise);
    margin: 0;
    font-weight: 600;
}
.navbar { top: 0;}
.package-subtitle {
    color: #494848;
    font-size: 0.85rem;
     font-weight: 400;
    margin-bottom: 0.7rem;
}

.package-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
}
.package-content .btn { font-weight: 600;
    font-size: 1rem;
    width: 100%;}
.package-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #555;
}

.package-detail-icon {
    font-size: 1.3rem;
    color: var(--turquoise);
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-features {
    margin-bottom: 0;
}

.package-feature-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.package-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.package-feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 125, 148, 0.1);
    color: var(--turquoise);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.package-discount {
    margin-bottom: 1rem;
}

.package-discount-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-discount-icon {
    font-size: 1.2rem;
}

.package-discount-text {
    font-size: 0.85rem;
    color: var(--green-600);
    font-weight: 600;
}

.package-discount-details {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.package-pricing {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.package-price-main {
    display: flex;
    flex-direction: column;
}

.package-price-from {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.package-price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--turquoise);
    line-height: 1;
}

.package-price-unit {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.3rem;
}

/* Package Detail Sections */
.package-section {
    padding: 6rem 0;
    background: white;
}

.package-section-alt {
    padding: 6rem 0;
    background: var(--beige-light);
}

.package-section-dark {
    padding: 6rem 0;
    background: var(--dark);
    color: white;
}

.package-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-stat {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.package-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--turquoise);
    margin-bottom: 0.5rem;
}

.package-stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.package-highlights {
    margin-bottom: 3rem;
}

.package-highlights h3 {
    color: var(--turquoise);
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.package-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.package-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.package-highlight-icon {
    color: var(--green-500);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.package-highlight-content h4 {
    color: var(--turquoise);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-highlight-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.gallery-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
}

/* Video Section */
.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Itinerary Section */
.itinerary-day {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.itinerary-day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.itinerary-day-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--turquoise);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.itinerary-day-title {
    font-size: 1.5rem;
    color: var(--turquoise);
    font-weight: 600;
    margin: 0;
}

.itinerary-activities {
    margin-bottom: 2rem;
}

.itinerary-activity {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.itinerary-activity-icon {
    color: var(--turquoise);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.itinerary-meals {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.itinerary-meals h4 {
    color: var(--turquoise);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Add-ons Section */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.addon-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.addon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.addon-title {
    font-size: 1.3rem;
    color: var(--turquoise);
    font-weight: 600;
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

/* Booking Section */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.form-full {
    margin-bottom: 1.5rem;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--turquoise);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-input {
    margin-top: 0.25rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1rem;
}

/* Newsletter */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--turquoise) 0%, #005a6b 100%);
    color: white;
    text-align: center;
    position: relative;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    min-width: 250px;
}

.newsletter-button {
    padding: 1rem 3rem;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: #e88a5f;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: scale(1.1);
}

.btn { padding: 0.9rem 1.7rem;
    font-size: 1rem;
    line-height: 1;
    border-radius: 50px;}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 125, 148, 0.4) 0%, transparent 100%);
    z-index: 0;
}
.call-btn { border-radius: 50px;}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}
.navbar .nav-item { padding: 0 1rem;}
.navbar .nav-item .nav-link { color: #fff;   font-size: 1rem;
    letter-spacing: 0.4px;
    font-weight: 400;}
    body.about .navbar .nav-item .nav-link, body.blog-index .navbar .nav-item .nav-link, 
     body.contact .navbar .nav-item .nav-link, body.packages-index .navbar .nav-item .nav-link
    { color: #003a45; }
   .navbar-expand-lg { padding: 20px 0px;} 
   
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    white-space: nowrap;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Intro Section */
.intro-section {
    padding: 8rem 0;
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 3rem;
    color: var(--turquoise);
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

.intro-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.intro-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.4rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: var(--coral);
    color: white;
}

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

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--turquoise) 0%, #005a6b 100%);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-section > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    min-width: 250px;
}

.newsletter-button {
    padding: 1rem 3rem;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: #e88a5f;
    transform: translateY(-2px);
}

.newsletter-section > p:last-child {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Package Detail Hero */
.package-hero {
    position: relative;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 3rem;
    padding-top: 4rem;
}

.package-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(181deg, rgb(255 255 255 / 84%) 20%, rgb(0 84 99) 90%);
    z-index: 1;
}

.package-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

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

.package-hero-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.package-hero-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.package-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.package-hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.package-hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Overview Section */
.package-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-stat {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.package-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--turquoise);
    margin-bottom: 0.5rem;
}

.package-stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Itinerary Components */
.itinerary-day {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.itinerary-day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.itinerary-day-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--turquoise);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.itinerary-day-title {
    font-size: 1.5rem;
    color: var(--turquoise);
    font-weight: 600;
    margin: 0;
}

.itinerary-activities {
    margin-bottom: 2rem;
}

.itinerary-activity {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.itinerary-activity-icon {
    color: var(--turquoise);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.itinerary-activity-time {
    font-weight: 600;
    color: var(--turquoise);
    font-size: 0.9rem;
}

.itinerary-activity-desc {
    color: #666;
    line-height: 1.5;
}

.itinerary-meals {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.itinerary-meals h4 {
    color: var(--turquoise);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Add-ons Section */
.addons-section {
    padding: 6rem 0;
    background: white;
}

.addons-section h2 {
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
    font-weight: 700;
}

.addons-section > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.addon-item {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    text-align: center;
}

.addon-item:hover {
    border-color: var(--turquoise);
    transform: translateY(-5px);
}

.addon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.addon-title {
    font-size: 1.3rem;
    color: var(--turquoise);
    font-weight: 600;
    margin-bottom: 1rem;
}

.addon-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--turquoise);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--beige-light);
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-section > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.gallery-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: white;
}

.video-section h2 {
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-section > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Perfect For Section */
.perfect-for-section {
    padding: 6rem 0;
    background: var(--beige-light);
}

.perfect-for-section h2 {
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
    font-weight: 700;
}

.perfect-for-section > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.perfect-for-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.perfect-for-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s;
}

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

.perfect-for-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.perfect-for-title {
    font-size: 1.3rem;
    color: var(--turquoise);
    font-weight: 600;
}

.perfect-for-desc {
    color: #666;
    margin-top: 0.5rem;
}

/* Group Discounts Section */
.group-discounts-section {
    padding: 6rem 0;
    background: white;
}

.group-discounts-section h2 {
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 1rem;
    font-weight: 700;
}

.group-discounts-section > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.group-discount { padding: 15px 0px;
    color: #4CAF50;
    display: flex
;
    font-size: 12px;}
.discount-label { margin-right: 10px; color: #878787;}
.discount-decoration-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.discount-decoration-2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.discount-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.discount-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.discount-description {
    opacity: 0.9;
}

.discount-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.discount-note p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Booking CTA Section */
.booking-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--turquoise) 0%, #005a6b 100%);
    color: white;
    text-align: center;
}

.booking-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-cta-section > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Gallery Section */
.package-gallery-section {
    padding: 60px 0px;
    background: white;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 300px 200px;
    gap: 10px;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
}

.gallery-item.featured {
    grid-row: span 2;
}

.gallery-item.large {
    grid-column: span 1;
}

.gallery-item.regular {
    grid-column: span 1;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

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

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

.gallery-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 125, 148, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.btn-gallery-load-more {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--coral) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 125, 148, 0.3);
}

.btn-gallery-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 125, 148, 0.4);
}

.load-more-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-gallery-load-more:hover .load-more-icon {
    transform: translateY(2px);
}

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.3rem;
    }

    .gallery-item.featured {
        grid-row: span 1;
        grid-column: span 2;
    }

    .gallery-item:hover {
        transform: translateY(-3px) scale(1.01);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .gallery-item.featured {
        grid-column: span 1;
    }

    .gallery-item:hover {
        transform: translateY(-2px) scale(1.005);
    }

    .gallery-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}

@media (max-width: 480px) {
    .package-gallery-section {
        padding: 2rem 0;
    }

    .gallery-grid {
        gap: 0.2rem;
    }

    .gallery-item:hover {
        transform: none;
    }

    .gallery-item:hover .gallery-image {
        transform: none;
    }

    .gallery-number {
        display: none;
    }

    .btn-gallery-load-more {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    /* Package Details Page Specific */
    .package-hero {
        padding-bottom: 2rem;
        padding-top: 2rem;
    }

    .package-hero h1 {
        font-size: 2.5rem;
    }

    .package-hero .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .package-overview h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .package-stat {
        padding: 1.5rem;
    }

    .package-stat-icon {
        font-size: 1.8rem;
    }

    .package-stat-number {
        font-size: 1.1rem;
    }

    /* Perfect For tags in overview */
    .perfect-for-tags .badge {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }

    .perfect-for-tags {
        gap: 0.5rem;
    }

    .itinerary-day {
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }

    .itinerary-day-number {
        align-self: flex-start;
    }

    .perfect-for-grid {
        gap: 1.5rem;
    }

    .perfect-for-item {
        min-width: 180px;
        padding: 1.5rem;
    }

    .group-discounts-section h2,
    .addons-section h2,
    .video-section h2,
    .perfect-for-section h2 {
        font-size: 2rem;
    }
}

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .gallery-item.featured {
        grid-column: span 2;
    }

    .gallery-item:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

@media (max-width: 768px) {
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .gallery-item.featured {
        grid-column: span 1;
    }

    .gallery-item:hover {
        transform: translateY(-2px) scale(1.01);
    }

    .gallery-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}

@media (max-width: 640px) {
    /* Package Details Page - Mobile */
    .hero-section {
        height: 50vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .package-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .package-price-amount {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-input {
        min-width: auto;
        width: 100%;
    }

@media (max-width: 640px) {
    /* Package Details Page - Mobile */
    .hero-section {
        height: 50vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .package-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .package-price-amount {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-input {
        min-width: auto;
        width: 100%;
    }

    /* Package Details Page Mobile */
    .package-hero {
        padding-bottom: 1rem;
        padding-top: 1rem;
    }

    .package-hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .package-hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .package-hero .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .package-hero-actions {
        justify-content: center;
    }

    /* Gallery - Horizontal Scrollable */
    .gallery-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 0.75rem !important;
        padding: 0 1rem !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        margin: 0 -1rem !important;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none !important;
    }

    .gallery-item {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        height: 200px !important;
        scroll-snap-align: start !important;
    }

    .gallery-item.featured {
        flex: 0 0 300px !important;
        min-width: 300px !important;
        max-width: 300px !important;
        height: 220px !important;
    }

    .gallery-item:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .gallery-item:hover .gallery-image {
        transform: none;
    }

    .gallery-number {
        display: none;
    }

    /* Package Overview */

    /* Perfect For tags in overview */
    .perfect-for-tags .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .perfect-for-tags {
        gap: 0.375rem;
    }

    /* Optional Add-ons in overview */
    .overview-addons .addon-item {
        padding: 0.75rem !important;
    }

    .overview-addons .addon-name {
        font-size: 0.85rem !important;
    }

    .overview-addons .addon-desc {
        font-size: 0.75rem !important;
    }

    .overview-addons .addon-price {
        font-size: 0.95rem !important;
    }

    /* Itinerary */
    .itinerary-section {
        padding: 2rem 0;
    }

    .itinerary-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .itinerary-day {
        padding: 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .itinerary-day-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.9rem;
        align-self: center;
    }

    .itinerary-day h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .itinerary-activities div {
        font-size: 0.85rem;
        text-align: left;
    }

    .itinerary-meals {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    /* Add-ons */
    .addons-section {
        padding: 3rem 0;
    }

    .addons-section h2 {
        font-size: 1.8rem;
    }

    .addons-section > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .addon-item {
        padding: 1.25rem;
    }

    .addon-icon {
        font-size: 2rem;
    }

    .addon-title {
        font-size: 1.1rem;
    }

    .addon-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .addon-price {
        font-size: 1.2rem;
    }

    /* Perfect For */
    .perfect-for-section {
        padding: 3rem 0;
    }

    .perfect-for-section h2 {
        font-size: 1.8rem;
    }

    .perfect-for-section > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .perfect-for-item {
        min-width: 140px;
        padding: 1rem;
    }

    .perfect-for-icon {
        font-size: 2.2rem;
    }

    .perfect-for-title {
        font-size: 1.1rem;
    }

    .perfect-for-desc {
        font-size: 0.85rem;
        margin-top: 0.375rem;
    }

    /* Group Discounts */
    .group-discounts-section {
        padding: 3rem 0;
    }

    .group-discounts-section h2 {
        font-size: 1.8rem;
    }

    .group-discounts-section > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .discount-title {
        font-size: 1.4rem;
    }

    .discount-percentage {
        font-size: 1.8rem;
    }

    /* Video Section */
    .video-section {
        padding: 3rem 0;
    }

    .video-section h2 {
        font-size: 1.8rem;
    }

    .video-section > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* CTA Section */
    .booking-cta-section {
        padding: 3rem 0;
    }

    .booking-cta-section h2 {
        font-size: 1.75rem;
    }

    .booking-cta-section > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .booking-cta-actions {
        gap: 0.75rem;
    }

    .booking-cta-actions .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    /* General mobile adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .package-hero h1 {
        font-size: 1.5rem;
    }

    .package-hero p {
        font-size: 0.95rem;
    }

    .package-hero .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }

    .package-overview h2 {
        font-size: 1.5rem;
    }

    .itinerary-section h2 {
        font-size: 1.375rem;
    }

    .addons-section h2,
    .perfect-for-section h2,
    .group-discounts-section h2,
    .video-section h2 {
        font-size: 1.5rem;
    }

    .booking-cta-section h2 {
        font-size: 1.5rem;
    }

    .perfect-for-item {
        min-width: 120px;
        padding: 0.875rem;
    }

    .perfect-for-icon {
        font-size: 2rem;
    }

}



/* Blog Section Styles */
.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--turquoise);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    color: #adb5bd;
    font-size: 0.8rem;
}

.blog-read-more {
    color: var(--turquoise);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--coral);
}

/* Instagram Section Styles */
.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    gap: 15px;
}

/* Testimonial Section Styles */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 20px;
}

.testimonial-rating .star {
    font-size: 1.2rem;
    color: #ffd700;
}

.testimonial-text {
    color: #495057;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info {
    text-align: center;
}

.author-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.author-title {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Custom Carousel Styles */
.custom-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 240px;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: translateX(100%);
}

.carousel-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-item.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.carousel-item.next {
    transform: translateX(100%);
    z-index: 1;
}

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

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

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.custom-carousel:hover .carousel-control-prev,
.custom-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 16px;
    height: 16px;
    background: no-repeat center center;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.5 8l-4.5-4.5L2.5 8l4.5 4.5L11.5 8z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4.5 8l4.5-4.5L13.5 8l-4.5 4.5L4.5 8z'/%3e%3c/svg%3e");
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicators button.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-content {
        padding: 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .instagram-stats {
        flex-direction: column;
        gap: 5px;
        font-size: 0.8rem;
    }

    /* Carousel responsive adjustments */
    .custom-carousel {
        height: 200px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        opacity: 0.8;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    .carousel-indicators button {
        width: 6px;
        height: 6px;
    }
}

