/* -------------------------------------------
   Universal Section
------------------------------------------- */

/* --------- Base & Fonts --------- */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');


.section {
    width: 100%;
    padding: 20px 0;
    background: #fff;
}

.section .inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

@media (max-width: 600px) {

    .section {
        padding: 10px 0; 
    }
    .section .inner {
        
        padding: 0 10px;
    }
}


/* -------------------------------------------
   H1 Heading
------------------------------------------- */

.section-heading {
    text-align: left;
    display: inline-block; 
    margin-bottom: 30px;
}

.main-heading {
    font-size: clamp(26px, 5vw, 38px);
    font-family: "Playfair Display", sans-serif;
    font-weight: 800;
    color: #222;
    margin: 0;
}

.tag-line {
    margin: 6px 0 12px 0;
    font-size: 18px;
    color: #666;
}


.under-line {
    display: block;
    height: 4px;
    background: #ff7a00;
    border-radius: 2px;
    margin-top: 6px;
}



/* -------------------------------------------
   H2 Heading
------------------------------------------- */


.section-title {
    
    font-size: clamp(26px, 5vw, 32px);
    color: white;
    letter-spacing: 0.5px;
    font-family: "Playfair Display", sans-serif;
    margin: 0 0 10px;
    position: relative; 
    display: inline-block; 
    padding-bottom: 5px;
}

.section-title::after {
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: 0; 
    
    /* Line Styling */
    width: 60%; /* Adjust this to control the line width (e.g., 100% for full width) */
    height: 3px; /* Adjust this for the line thickness */
    background-color: #000000; 
    border-radius: 2px; 
}

.section-title .yellow {
    color: #FFB400;
    margin-right: 8px;
}

/* Black word */
.section-title .black {
    color: #000000;
}


/* -------------------------------------------
   Header
------------------------------------------- */


.main-header {
    background-color: transparent; 
    width: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px; 
    /* Add a subtle line/border at the bottom */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}


.header-logo {
    width: 260px; 
    height: 55px;
}

/* Media Query: Styles applied to screens 600px wide or less */
@media (max-width: 600px) {
    .header-logo {

          width: 60%; 
          max-width: 200px; 
          height: auto; 
    }
}

/* --- Navigation Menu (Desktop Default) --- */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.main-nav li a:hover {
    opacity: 1;
    color: #ffd500; /* Highlight color */
}

/* --- Utility/Search Bar --- */
.header-utility {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between search and other utilities */
}

.header-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
}

.header-search input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 5px;
    outline: none;
    width: 150px; /* Adjust width */
}

.header-search button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Hide the mobile toggle button by default on desktop */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}


/* -------- Mobile Responsiveness for Header -------- */

@media (max-width: 1024px) {
    /* 1. HIDE THE MAIN NAVIGATION MENU */
    .main-nav {
        display: none;
    }
    
    .header-inner {
        padding: 10px 20px; /* Tighter padding on mobile */
    }

    /* 2. ADJUST SEARCH BAR ON MOBILE */
    .header-search input {
        display: none;
    }
    
    /* 3. SHOW THE MOBILE MENU TOGGLE ICON */
    .menu-toggle {
        display: block;
    }
    
}



/* -------------------------------------------
   Category Bar
------------------------------------------- */

.category-bar-wrapper {
    top: 0;
    z-index: 999;
    width: 100%;
    border-bottom: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

.category-bar-wrapper.sticky-background {
    background: #212121;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: 2px solid #ff5a00; /* highlight */
}


.category-bar {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5px 0;
    box-sizing: border-box;
    white-space: nowrap;
    background: transparent;
    overflow-x: hidden;
}


.cat-scroll::-webkit-scrollbar {
    display: none;
}


/* Auto-scroll on ALL devices */
.cat-scroll {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    padding: 0 0;

    width: 1600px;       /* bigger than viewport */
    min-width: 1600px;

    animation: auto-scroll 25s linear infinite;
}

.cat-scroll:hover { 
    animation-play-state: running; 
}



@keyframes auto-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-700px); }  /* adjust according to icon count */
}


.cat-item {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
    min-width: 80px;
    padding: 5px 0;
    color: #444;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: 0.2s ease;
}

.cat-item span {
    font-family: "Playfair Display", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color:white;
}

.cat-item.active span,
.cat-item:hover span {
    color: #ff5a00;
}
.cat-item.active img,
.cat-item:hover img {
    filter: none;
}

/* Mobile only: category bar hidden initially, appears on scroll */

@media (max-width: 768px) {
    .category-bar-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .category-bar-wrapper.sticky {
        transform: translateY(0);
    }

    .normal-header.hidden {
        display: none;
    }
}

/* Desktop: hide category bar completely */
@media (min-width: 769px) {
    .category-bar-wrapper {
        display: none !important;
    }
}



/* -------------------------------------------
   HERO SECTION
------------------------------------------- */


.hero {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}


.hero-section {
    padding-top: 80px;
    display: flex;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    position: relative; 
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/wp-content/themes/blocksy-child/assets/bg.avif') center/cover no-repeat;
    filter: brightness(0.7);
    z-index: 0;
}




/* -------- Left Section -------- */
.hero-left {
    width: 60%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-left-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 1200px;
}




/* ---------------- PHOTO FRAMES ---------------- */
.photo-block {
    position: absolute;
    background: #fff;
    padding: 10px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 2;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0% 100%);

}

.photo-block img {
    width: 100%;
    height: 100%;
    display: block;
    clip-path: inherit;
    object-fit: cover;
}

/* TOP IMAGE */
.top-photo {
    width: 75%;
    height: 250px;
    left: 200px;
    top: 0;
    transform: rotate(-1deg);
}

/* BOTTOM IMAGE */
.bottom-photo {
    width: 75%;
    height: 250px;
    top: 270px;
    transform: rotate(-1deg);
}

/* ---------------- DISCOUNT BOX ---------------- */
.discount-box {
    position: absolute;
    background: #ffdf00;
    padding: 20px 40px;
    right: 50px;
    bottom: 130px;
    transform: rotate(-5deg);
    border-radius: 4px;
    z-index: 4;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.discount-inner {
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.discount-inner .small {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

.discount-inner .big {
    font-size: 64px;
    font-weight: 800;
    margin: -10px 0;
}


/* -------- Right Section -------- */

.hero-right {
 
    width: 40%; /* Keep for desktop 2-column layout */
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative; /* Keep relative to ensure hero-content z-index works */
}

.hero-content {
    /* Set color to white for contrast against the dark background */
    color: #fff; 
    position: relative;
    z-index: 10;
    max-width: 520px;
}

.hero-tag {
    font-size: 18px;
    color: #d67548;
    font-weight: 600;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    margin: 12px 0 20px;
}

.hero-title em {
    font-style: italic;
    opacity: 0.85;
}

.hero-desc {
    font-size: 17px;
    color: #eee;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    background: #ffd500;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.hero-btn .arrow {
    background: #000;
    color: #fff;
    margin-left: 12px;
    padding: 6px 10px;
    border-radius: 50%;
}


/*-------Flip Animations for JS Trigger ------ */

:root {
    --flip-duration: 1s; /* 1 second flip */
}

/* Flip wrapper (perspective already defined in hero-left-wrapper / text-flip-wrapper) */
.photo-flip-wrapper,
.text-flip-wrapper {
    perspective: 1200px;
    position: relative;
}

/* Internal elements preserve 3D */
.photo-block,
.hero-content {
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Flip animation keyframes */
@keyframes flipImage {
    0%   { transform: rotateX(0deg); opacity: 1; }
    50%  { transform: rotateX(90deg); opacity: 0; }
    100% { transform: rotateX(0deg); opacity: 1; }
}

@keyframes flipText {
    0%   { transform: rotateX(0deg); opacity: 1; }
    50%  { transform: rotateX(-90deg); opacity: 0; }
    100% { transform: rotateX(0deg); opacity: 1; }
}

/* Classes applied via JS to trigger flip */
.flip-animation-photo {
    animation: flipImage var(--flip-duration) ease-in-out forwards;
}

.flip-animation-text {
    animation: flipText var(--flip-duration) ease-in-out forwards;
}


/* -----------------------------------
   MOBILE CAROUSEL HIDDEN DEFAULT
----------------------------------- */
.hero-mobile-carousel {
    display: none; 
    position: relative; 
    inset: 0; 
    z-index: 0;       
    width: 100%;
    height: 100vh;    
    overflow: hidden;
}


/* Slides */
.hero-mobile-carousel img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-mobile-carousel img.active {
    opacity: 1;
}



/* -------- Responsive Modification -------- */ 

@media (max-width: 1024px) { 

.hero-section { 

flex-direction: column; 
min-height: auto; 

} 

.hero-left, .hero-right
 {
 width: 100%; 
} /* SHOW RIGHT COLUMN FULL WIDTH */ 

.hero-right {
 width: 100%; 
 padding: 40px 20px;
 display: flex; 
 justify-content: center; 
 align-items: center; } /* 🛑 THE KEY CHANGE: HIDE THE RIGHT SECTION */ 

 .hero-left { 

 display: none;
 } 

.hero-title { 

font-size: 40px; 
} 
}


@media (max-width: 768px) {
    /* Hide desktop background */
    .hero-bg {
        display: none;
    }
   
    .hero-section {
        padding-top: 0 !important;
    }



    /* Show mobile carousel */
    .hero-mobile-carousel {
        display: block;
    }

    /* Optional: place hero-left on top of carousel */
    .hero-right {
        position: absolute;
         top: 200px;
        left: 0;
        width: 100%;
        z-index: 5;
    }
}




/* -------------------------------------------
   Product grid
------------------------------------------- */

.product-wrapper {
    position: relative;
    width: 100%;
}

.product-grid {

    display: flex;
    gap: 5px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;

    /* Hide scrollbar */
    scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
    display: none;
}

/* Arrow */

.product-arrow {

    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #ff7a00;
    border-radius: 50%;
    width: 40px;      /* fixed width */
    height: 40px;     /* fixed height */
    display: flex;    /* center content */
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    user-select: none;
    z-index: 10;
}


/* -------------------------------------------
    Video Card
------------------------------------------- */

.video-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;       
    height: 500px;          
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 auto;
    margin-top: 10px;
    margin-right:10px;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;      
    border-radius: 20px;
}




/* -------------------------------------------
    Attraction Card
------------------------------------------- */

.attraction-card {

    flex: 0 0 auto;
    position: relative; 
    width: 450px; 
    height: 350px; 
    overflow: hidden; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); 
    margin-top: 10px; 
    margin-right: 10px;
}

.card-image {
    
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.card-overlay {
    
    position: absolute;
    bottom: 0; 
    left: 0;
    right: 0;
    padding: 20px;
    
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.8) 0%, /* Darker at the bottom */
        rgba(0, 0, 0, 0.4) 50%, /* Fades out higher up */
        transparent 100% /* Fully transparent at the top */
    );
    color: white; /* Text color */
}

.card-title {
    
    font-size: 1.5rem;
    color: white;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: bold;
    padding-bottom: 5px; 
    border-bottom: 3px solid #ff8c00; 
    display: inline-block;
}

.card-text {
    margin-top: 5px;
    display: block; 
}

.card-description {
    
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
    display: inline;
}

.card-description.short {
    display: -webkit-box;
    -webkit-line-clamp: 2;    
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-description.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}


.read-more {
    
    display: inline;        /* makes read more inline */
    margin-left: 5px;
    color: #d8efff; /* A light color for contrast */
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 600px) {
    .attraction-card {
        width: 350px;   
        height: 250px;
    }
}


/* -------------------------------------------
   Activity Card
------------------------------------------- */

/* OUTER WRAPPER BOX */
.outer-box {

    flex: 0 0 auto;
    width: 350px;
    background: #fff;
    border-radius: 16px;
    padding: 0 0 0 0;   /* removed top/side padding */
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 1px solid #efefef;
    margin-top: 10px;
    margin-right: 10px;
    font-family: 'Inter', sans-serif;
}

/* Add inner padding only for content under the image */
.activity-content {
    padding: 20px;
    padding-bottom: 0;
    margin-top: 16px; 
}

/* IMAGE AREA */
.activity-image {
    position: relative;
    width: 100%;
    height: 270px;
    border-radius: 16px 16px 0 0;   /* match outer box rounded top */
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Save Badge */
.save-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #d62828;
    padding: 5px 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

/* Slider dots */
.dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: 0.4;
    border-radius: 50%;
}
.dot.active {
    opacity: 1;
}


/* Duration + Rating */
.duration-rating {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.rating {
    color: #1da851;
    font-weight: 600;
}

/* Title */
.activity-content .title {
    display: block;
    position: relative;   /* helps with z-index */
    font-size: 16px;
    color: #000 !important;
    margin: 4px 0 14px;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}


/* PRICE SECTION */
.price-section {
    margin-bottom: 18px;
}

/* Christmas Badge */
.sale-badge {
    background: #d62828;
    color: #fff;
    font-size: 11px;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 6px;
    font-weight: 700;
}

/* Old Price + Save Amount */
.old-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 4px;
}

.old-price {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.save-amount {
    font-size: 13px;
    color: #1da851;
    font-weight: 600;
}

/* New Price */
.new-price {
    font-size: 20px;
    font-weight: 800;
    color: #000;
}
.new-price span {
    font-size: 13px;
    color: #444;
}

.button-wrap {
    padding: 0 2px 2px;   /* left 2px, right 2px, bottom 2px */
    margin-top: 16px;
}

.book-btn {
    width: 100%;
    background: #ff7a00;
    color: #fff;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;   
    cursor: pointer;
    transition: 0.2s ease;
}

.outer-box .book-btn {
    padding: 14px 0 !important;
}

.book-btn:hover {
    background: #e66b00;
}




/* -------------------------------------------
   Tour Card
------------------------------------------- */

.tour-card {
    flex: 0 0 auto;
    display: flex;
    width: 350px;
    height: 520px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    flex-direction: column;
    margin: 5px;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ---- TOP TEXT (NO DARK OVERLAY) ---- */
.top-overlay {
    position: absolute;
    bottom: 130px;  /* IMPORTANT: pushes text higher like screenshot */
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    z-index: 2;
}

.days {
    margin: 0;
    font-size: 14px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.rating-line {
    display: flex;
    align-items: center;
    margin: 4px 0 8px;
}

.star {
    color: #ffcf33;
    margin-right: 4px;
    font-size: 15px;
}

.title {
    margin: 4px 0 10px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    
}

.tags {
    font-size: 12px;
    opacity: 0.9;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ---- BOTTOM BOX (SOLID COLOR) ---- */
.bottom-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px 20px;
    z-index: 3;

    background: rgba(0, 40, 80, 0.55);
    backdrop-filter: blur(6px);

    /* Rounded TOP corners */
    border-radius: 18px 18px 0 0;
}

/* Glowing fade divider */
.glow-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;

    background: radial-gradient(
        circle at center,
        rgba(255,255,255,0.8) 0%,
        rgba(255,255,255,0.4) 30%,
        rgba(255,255,255,0.15) 60%,
        rgba(255,255,255,0) 100%
    );
    pointer-events: none; /* safe */
}




.price-box {
    margin-bottom: 12px;
}

.price-main {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.price-cut {
    text-decoration: line-through;
    margin-left: 8px;
    opacity: 0.8;
    color: #fff;
}

.price-save {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-size: 11px;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 12px;
}

.call-btn {
    width: 50px;
    height: 48px;
    border-radius: 10px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
}

.callback-btn {
    flex: 1;
    height: 48px;
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-weight: 300;
    border: none;
}


/* -------------------------------------------
    Review Card
------------------------------------------- */

.review-card {
    width: 100%;
    background: #f8f8f8;
    border-radius: 14px;
    padding: 18px;
    box-sizing: border-box;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
}

.review-header {
    display: flex;
    align-items: center;
    position: relative;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.review-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.review-info p {
    margin: 2px 0 0 0;
    font-size: 13px;
    color: #777;
}

.review-rating {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a8f37;
    display: flex;
    align-items: center;
}

.review-rating .star {
    color: #1a8f37;
    font-size: 18px;
    margin-right: 4px;
}

.review-booked {
    font-size: 15px;
    margin: 14px 0 10px;
    color: #444;
}

.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 14px;
}

.review-images {
    display: flex;
    gap: 10px;
}

.review-images img {
    width: 48%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
}



/* -------------------------------------------
    Footer 
------------------------------------------- */

.main-footer {
    background-color: #212121; /* Charcoal color, close to the screenshot */
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding-top: 10px;
    width: 100%;
    box-sizing: border-box; /* Includes padding in total width */
}

/* Inner Wrapper to Center Content */
.footer-inner-wrapper {
    max-width: 1200px; /* Standard maximum width for centering content */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; /* Center the logo and social icons */
}


/* 2. Logo and Dividers Styling */
.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    padding: 0 20px;
}

.footer-logo {
    height: 40px; /* Adjust height of your logo */
    margin: 0 20px;
    filter: brightness(0) invert(1); /* Optional: Use if your logo is dark and you need it white */
}

.logo-line {
    flex-grow: 1; /* Makes the line take up available space */
    height: 1px;
    background-color: #ffffff;
    max-width: 300px; /* Limit the length of the line */
    opacity: 0.4;
}

/* 3. Social Icons Styling */
.footer-social-icons {
    padding: 5px 0 10px 0;
    display: flex;
    justify-content: center;
}

.footer-social-icons a {
    color: #ffffff;
    font-size: 20px;
    margin: 0 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-social-icons a:hover {
    opacity: 1;
}

/* 4. Copyright Text Styling */
.footer-copyright {
  
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
    text-align: center;
    border-top: 1px solid #333333; /* Separator line */
}

.footer-copyright p {
    margin: 5px 0;
}



/* -------------------------------------------
    Footer Fixed CTA 
------------------------------------------- */

.cf-bottom-cta {
  display: block;
  background: #f07a00;
  color: #fff;
  text-align: center;
  padding: 14px 18px;
  font-weight: 700;
  text-decoration: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99998;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.12);
  transition: opacity 0.35s ease;
}

@media (min-width: 900px) {
  .cf-bottom-cta {
    width: min(100%, 1100px);  /* same as your container width */
    left: 50%;                 /* center horizontally */
    transform: translateX(-50%);
    border-radius: 8px;
  }
}

/* Spacer to prevent overlap */
.cf-cta-space {
  height: 72px;
}

