/* ===== Existing Base Styles ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f4f6f8;
    line-height: 1.6;
    color: #000;
    padding-top: 90px; /* space for fixed header */
}

.section p,
.section li,
.highlight p {
    color: #000;
}

/* ===== Fixed Header with Responsive Layout ===== */
/* ===== Fixed Header with Responsive Layout ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1f3a5f;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1100px;        /* match container width */
    margin: 0 auto;           /* center horizontally */
    padding: 10px 20px;       /* consistent with container spacing */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-title {
    text-align: left;
    flex: 1 1 auto;
}

.header-title h1 {
    margin: 0;
    font-size: 1.8rem;
}

.header-title p {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
}


.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    flex: 1 1 auto;          /* allows wrapping */
    min-width: 200px;
}

.header-contact-info {
    text-align: right;
}

.header-contact-info h4 {
    margin: 0;
    font-size: 1rem;
}

.header-contact-info .company {
    font-size: 0.85rem;
    color: #c7d6ea;
}

.header-contact-info .phone a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
}

.header-contact-photo {
    overflow: visible;
}

.header-contact-photo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);

    /* zoom behavior */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform-origin: left top;
}

.header-contact-photo img:hover {
    transform: scale(3); /* adjust zoom level as desired */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    z-index: 2000;
}




/* .header-contact-photo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);
} */

/* ===== Responsive Adjustments ===== */
/* Right-align header-contact when it wraps */
@media screen and (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .header-contact {
        width: 100%;
        justify-content: flex-end; /* stays right-aligned when wrapping */
        margin-top: 10px;
    }

    .header-contact-info {
        text-align: right; /* keep text right-aligned */
    }
}

@media screen and (max-width: 480px) {

    body {
        padding-top: 150px;
    }



    .header-title h1 {
        font-size: 1.4rem;
    }

    .header-title p {
        font-size: 0.9rem;
    }

    .header-contact-info h4 {
        font-size: 0.85rem;
    }

    .header-contact-info .company,
    .header-contact-info .phone a {
        font-size: 0.75rem;
    }

    .header-contact-photo img {
        width: 40px;
        height: 40px;
    }
}


/* ===== Container & Price Box ===== */
.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

.price-box {
    background: #ffffff;
    border-left: 6px solid #1f3a5f;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.price-box h2 {
    margin-top: 0;
    color: #1f3a5f;
}

.price-notes {
    color: #000 !important;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #b22222;
}

/* ===== Carousel & Thumbnails ===== */
/* (Keep all your existing carousel styles here) */
/* ...your existing carousel CSS... */


/* ===== Section, Highlight, FAQ, Footer ===== */
/* (Keep all your existing section, FAQ, and footer styles here) */
/* ...your existing CSS... */


        /* Prevent gallery rules from breaking carousel */
/*.gallery .carousel img {
    height: 100%;
    object-fit: contain;
    box-shadow: none;
    border-radius: 0;
}*/

/* Unified bordered container for carousel + thumbnails */
.carousel-wrapper {
    border: 1px solid #e3e6ea;     /* very light grey */
    border-radius: 10px;
    padding: 14px 14px 20px;       /* extra bottom padding */
    background: #ffffff;
    margin-bottom: 30px;           /* matches .section spacing */
}
 
/*.carousel-wrapper {
    max-width: 100%;
}*/

.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1.618 / 1;
    max-height: 520px;
    overflow: hidden;
    border-radius: 6px;
    background: #f4f6f8;
}

.carousel-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    background: #f4f6f8;
}
.carousel-images img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 5;
}
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-download {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.95);
    color: #1f3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-download svg {
    width: 22px;
    height: 22px;
}

.carousel-download:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.carousel-download:active {
    transform: scale(0.95);
}

.carousel-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    justify-content: center;
}
.carousel-thumbs img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.65;
    border: 2px solid transparent;
    border-radius: 4px;
}
.carousel-thumbs img.active-thumb {
    border-color: #000;
    opacity: 1;
}

@media (max-width: 768px) {

 body {
        padding-top: 130px;
    }

    .carousel-thumbs {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 6px 4px 10px;
        scrollbar-width: thin;           /* Firefox */
        scrollbar-color: #cfd4da transparent;
        -webkit-overflow-scrolling: touch;
    
        /* Optional polish: fade edges to hint scroll */
        mask-image: linear-gradient(
            to right,
            transparent,
            black 10%,
            black 90%,
            transparent
        );
    }

    /* WebKit scrollbar (Chrome, Safari, iOS) */
    .carousel-thumbs::-webkit-scrollbar {
        height: 6px;
    }

    .carousel-thumbs::-webkit-scrollbar-track {
        background: transparent;
    }

    .carousel-thumbs::-webkit-scrollbar-thumb {
        background-color: #cfd4da;
        border-radius: 3px;
    }

    .carousel-thumbs img {
        flex: 0 0 auto;
        width: 72px;
        height: 52px;
    }        
}

        .section {
            background: #ffffff;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: relative; /* anchor for icon */
        }
        .section h3 {
            margin-top: 0;
            color: #1f3a5f;
        }
        ul {
            padding-left: 20px;
        }
        .highlight {
            background: #eef3f9;
            padding: 15px;
            border-radius: 6px;
            margin-top: 15px;
        }

.back-to-top-icon {
    position: absolute;
    top: 0;      /* top of the header wrapper */
    right: 0;    /* right of the header wrapper */
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    background: #f2f2f2;
    color: #333;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    cursor: pointer;
}

.back-to-top-icon:hover {
    background: #e6e6e6;
}


   
/* ===== Business Card Footer (Blue Background) ===== */

		footer {
  			background: #1f3a5f;
    		color: #ffffff;
    		padding: 40px 20px;
		}

		.footer-title {
    		max-width: 1100px;
    		margin: 0 auto 20px;
    		font-size: 1.4rem;
    		color: #ffffff;
		}

		.footer-cards {
    		max-width: 1100px;
   			margin: 0 auto;
   			display: grid;
    		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    		gap: 25px;
		}

/* Card without white box */

		.contact-card {
    		display: grid;
    		grid-template-columns: 90px 1fr;
    		gap: 15px;
    		align-items: center;
		}

/* Photo styling */

.contact-photo img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.35);
}

/* Text colors for contrast */
.contact-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
}

.contact-info .title {
    font-size: 0.9rem;
    color: #c7d6ea;
}

.contact-info .company {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e3ecf7;
    margin-bottom: 6px;
}

.contact-info .phone {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-info .phone a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

/* Extra-small Messenger button */
.messenger-mini {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #006AFF;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    line-height: 1;
}

.messenger-mini svg {
    width: 12px;
    height: 12px;
}

/* Group label + card as one unit */
.contact-group {
    display: flex;
    flex-direction: column;
    gap: 18px;   /* was ~6px, increase as needed */
}

/* ===================================================== */
/* SYMMETRIC FOOTER – LEFT CARD: MESSENGER ONLY           */
/* ===================================================== */

/* Keep card geometry identical */
.contact-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 15px;
    align-items: center;
}

/* Normalize right-column height */
.contact-info {
    display: grid;
    grid-template-rows: repeat(4, auto);
}

/* Invisible spacers preserve symmetry */
.contact-spacer {
    visibility: hidden;
}

/* Center Messenger-only content vertically */
.contact-info.messenger-only {
    justify-content: left;
}

/* Primary Messenger button */
.messenger-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: #006AFF;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    width: fit-content;
}


/* ===================================================== */
/* STYLE FOR FAQ SECTION/CONTAINER                       */
/* ===================================================== */


    .faq-container {
        max-width: 800px;
        margin: auto;
        background: #ffffff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .faq-container h1 {
        text-align: center;
        margin-bottom: 30px;
    }

.faq-header-wrapper {
    position: relative;  /* make it the positioning context */
}

.faq-header-wrapper h3 {
    margin: 0; /* optional, avoids extra spacing */
}    

    .faq-item {
    /*    border-bottom: 1px solid #e0e0e0; */
        padding: 15px 0;
    }

    .faq-question {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-weight: bold;
        color: #333;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        border: 2px solid #007bff;
        color: #007bff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        font-size: 16px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        display: none;
        padding-left: 36px;
        padding-top: 10px;
        color: #555;
        line-height: 1.6; 
    }

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