@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i&subset=vietnamese');

@font-face {
    font-family: "GMV_DIN_Pro-Black";
    src: url("https://secgroup.vn/public/fonts/GMV_DIN_Pro-Black.ttf") format("truetype");
}
@font-face {
    font-family: "GMV_DIN_Pro-Bold";
    src: url("https://secgroup.vn/public/fonts/GMV_DIN_Pro-Bold.ttf") format("truetype");
}
@font-face {
    font-family: "GMV_DIN_Pro-Medium";
    src: url("https://secgroup.vn/public/fonts/GMV_DIN_Pro-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "GMV_DIN_Pro";
    src: url("https://secgroup.vn/public/fonts/GMV_DIN_Pro.ttf") format("truetype");
}

/* ===== ROOT VARIABLES ===== */
:root {
    --seccold-primary: #ED1C24;
    --seccold-primary-dark: #c4131a;
    --seccold-primary-light: #ff4d53;
    --seccold-gradient: linear-gradient(135deg, #ED1C24 0%, #b50008 100%);
    --seccold-gradient-soft: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    --seccold-text-dark: #1a1a2e;
    --seccold-text-body: #4a4a5a;
    --seccold-text-muted: #8a8a9a;
    --seccold-bg-white: #ffffff;
    --seccold-bg-light: #f7f8fc;
    --seccold-bg-section: #fafbff;
    --seccold-border: #e8e9f0;
    --seccold-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --seccold-shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --seccold-shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
    --seccold-shadow-red: 0 10px 30px rgba(237,28,36,0.15);
    --seccold-radius: 12px;
    --seccold-radius-lg: 20px;
    --seccold-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
.seccold-wrap, .seccold-wrap h1, .seccold-wrap h2, .seccold-wrap h3, .seccold-wrap h4, .seccold-wrap h5, .seccold-wrap h6, .seccold-wrap p, .seccold-wrap span, .seccold-wrap button, .seccold-wrap a, .seccold-wrap input, .seccold-wrap select, .seccold-wrap textarea {
    font-family: "Inter", "Roboto", sans-serif !important;
}

.seccold-wrap {
    color: var(--seccold-text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-color: var(--seccold-bg-white);
}

.seccold-wrap * {
    box-sizing: border-box;
}

.seccold-wrap a {
    text-decoration: none;
    color: inherit;
    transition: var(--seccold-transition);
}

.seccold-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.seccold-wrap h1, .seccold-wrap h2, .seccold-wrap h3, .seccold-wrap h4 {
    font-family: 'Inter', sans-serif !important;
    color: var(--seccold-text-dark);
    line-height: 1.3;
    margin: 0;
}

/* ===== LAYOUT ===== */
.seccold-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.seccold-section {
    padding: 80px 0;
}

.seccold-section-sm {
    padding: 60px 0;
}

.seccold-text-center {
    text-align: center;
}

.seccold-rel {
    position: relative;
    z-index: 2;
}

/* ===== SECTION HEADER ===== */
.seccold-sec-header {
    margin-bottom: 50px;
}

.seccold-sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237,28,36,0.08);
    color: var(--seccold-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.seccold-sec-label i {
    font-size: 14px;
}

.seccold-sec-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--seccold-text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
    text-wrap: balance;
}

.seccold-sec-title span {
    color: var(--seccold-primary);
}

.seccold-sec-subtitle {
    font-size: 17px;
    color: var(--seccold-text-body);
    max-width: 700px;
    line-height: 1.8;
}

.seccold-sec-subtitle.seccold-center {
    margin: 0 auto;
}

.seccold-divider {
    width: 50px;
    height: 3px;
    background: var(--seccold-gradient);
    border-radius: 3px;
    margin-top: 20px;
}

.seccold-divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.seccold-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--seccold-transition);
    font-size: 15px;
    letter-spacing: 0.3px;
}

.seccold-btn-primary {
    background: var(--seccold-gradient);
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(237,28,36,0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.seccold-btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg) translateX(-100%);
    animation: seccold-btn-shine 3.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    pointer-events: none;
}

.seccold-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(237,28,36,0.5);
    color: #ffffff !important;
}

.seccold-btn-primary:active {
    transform: translateY(1px) scale(0.96);
    box-shadow: 0 2px 10px rgba(237,28,36,0.4);
    transition: transform 0.1s;
}

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

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

.seccold-btn-white {
    background: white;
    color: var(--seccold-primary);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.seccold-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--seccold-primary);
}

.seccold-btn-lg {
    padding: 16px 40px;
    font-size: 17px;
}

/* CTA Buttons Zalo/Hotline */
.seccold-cta-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 35px;
    gap: 15px;
}

.seccold-cta-wrap-left {
    justify-content: flex-start;
}

.seccold-btn-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .seccold-btn-desktop { display: none !important; }
    .seccold-btn-mobile { display: inline-flex !important; }
    .seccold-cta-wrap-left { justify-content: center; }
    .seccold-cta-wrap { flex-direction: column; align-items: center; }
    .seccold-btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes seccold-fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes seccold-fadeLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes seccold-fadeRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes seccold-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 12px)); } }
@keyframes seccold-btn-shine { 0% { transform: rotate(30deg) translateX(-100%); } 20% { transform: rotate(30deg) translateX(100%); } 100% { transform: rotate(30deg) translateX(100%); } }
@keyframes seccold-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }






/* ===== TOP HERO PROMO ===== */
.seccold-top-banner {
    background: linear-gradient(135deg, #100203 0%, #3a0407 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-bottom: 4px solid var(--seccold-primary);
    position: relative;
    overflow: hidden;
}

.seccold-top-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(237,28,36,0.15) 0%, transparent 80%);
    pointer-events: none;
}

.seccold-top-banner h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.seccold-top-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

@media (max-width: 768px) {
    .seccold-top-banner h2 { font-size: 28px; }
    .seccold-top-banner p { font-size: 15px; }
}

/* ===== SECTION 1: INTRO ===== */
.seccold-intro {
    background: var(--seccold-bg-light);
}

.seccold-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.seccold-intro-title {
    font-size: 40px;
    margin-bottom: 18px;
    font-weight: 800;
    color: var(--seccold-text-dark);
    line-height: 1.25;
    text-wrap: balance;
}

.seccold-intro-title span {
    color: var(--seccold-primary);
}

.seccold-intro-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.seccold-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--seccold-border);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--seccold-text-dark);
    box-shadow: var(--seccold-shadow-sm);
    transition: var(--seccold-transition);
}

.seccold-pill i {
    color: var(--seccold-primary) !important;
    font-size: 16px;
    width: 30px;
    height: 30px;
    background: rgba(237,28,36,0.1);
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.seccold-pill:hover {
    border-color: var(--seccold-primary);
    box-shadow: var(--seccold-shadow-red);
    transform: translateY(-2px);
}

.seccold-intro-img {
    border-radius: var(--seccold-radius-lg);
    overflow: hidden;
    box-shadow: var(--seccold-shadow-lg);
    height: 420px;
    position: relative;
}

.seccold-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

.seccold-intro-img img.inactive {
    opacity: 0;
}

@media (max-width: 991px) {
    .seccold-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .seccold-intro-img { height: 350px; }
}

@media (max-width: 480px) {
    .seccold-intro-pills { grid-template-columns: 1fr; }
    .seccold-intro-title { font-size: 30px; }
}

/* ===== SECTION 2: INFRASTRUCTURE & AMENITIES ===== */
.seccold-flex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.seccold-flex-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.seccold-flex-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--seccold-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.seccold-flex-title i {
    font-size: 20px;
}

.seccold-flex-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.seccold-flex-icon {
    width: 48px;
    height: 48px;
    background: rgba(237,28,36,0.08);
    color: var(--seccold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--seccold-transition);
}

.seccold-flex-item:hover .seccold-flex-icon {
    background: var(--seccold-primary);
    color: white;
    transform: scale(1.1);
}

.seccold-flex-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--seccold-text-dark);
}

.seccold-flex-item p {
    font-size: 15px;
    color: var(--seccold-text-body);
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 991px) {
    .seccold-flex-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== SECTION 3: MẶT HÀNG LƯU TRỮ (NEEDS) ===== */
.seccold-needs-section {
    background-color: var(--seccold-bg-light);
    overflow: hidden; /* Hide horizontal overflow on section level */
    padding-top: 50px !important;
    padding-bottom: 30px !important;
}

/* Interlocking Slanted Quadrilaterals Slider Track with Infinite Marquee */
.seccold-needs-carousel-track {
    display: flex;
    gap: 0;
    width: max-content;
    padding: 30px 0 50px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    animation: scroll-marquee 20s linear infinite; /* Speed: 20s for continuous smooth flow */
}

.seccold-needs-carousel-track::-webkit-scrollbar {
    display: none;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover to allow users to interact and read descriptions */
.seccold-needs-carousel-track:hover {
    animation-play-state: paused;
}

.seccold-need-card {
    flex: 0 0 320px;
    height: 380px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    border: none;
    padding: 0;
    background: transparent;
    display: block;
    cursor: pointer;
    margin-right: -51px; /* Overlap by -51px to cover any sub-pixel rendering gaps */
    z-index: 1;
    transform: translateZ(0); /* Force GPU compositing layer to fix overlapping rendering bugs */
    will-change: transform;
}

/* Interlocking zigzag slants clip-paths with 1% safe overlap bleed area */
.seccold-need-card:nth-child(6n+1) {
    clip-path: polygon(-1% -1%, 101% -1%, 86% 101%, -1% 101%);
}
.seccold-need-card:nth-child(6n+2) {
    clip-path: polygon(14% -1%, 86% -1%, 101% 101%, -1% 101%);
}
.seccold-need-card:nth-child(6n+3) {
    clip-path: polygon(-1% -1%, 101% -1%, 86% 101%, 14% 101%);
}
.seccold-need-card:nth-child(6n+4) {
    clip-path: polygon(14% -1%, 86% -1%, 101% 101%, -1% 101%);
}
.seccold-need-card:nth-child(6n+5) {
    clip-path: polygon(-1% -1%, 101% -1%, 86% 101%, 14% 101%);
}
.seccold-need-card:nth-child(6n+6) {
    clip-path: polygon(14% -1%, 101% -1%, 101% 101%, -1% 101%);
    margin-right: -3px; /* Overlap slightly with next card set in infinite scroll */
}

.seccold-need-card:hover {
    transform: scale(1.05) translateY(-8px) translateZ(0);
    z-index: 10; /* Bring hovered item to front */
    filter: brightness(1.05);
}

.seccold-need-card-img {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.seccold-need-card:hover .seccold-need-card-img {
    transform: scale(1.06) !important;
}

.seccold-need-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
    transition: var(--seccold-transition);
    z-index: 2;
}

.seccold-need-card:hover .seccold-need-card-overlay {
    background: linear-gradient(to top, rgba(237, 28, 36, 0.9) 0%, rgba(237, 28, 36, 0.45) 50%, rgba(0, 0, 0, 0.15) 100%);
}

/* Centered content layout to prevent text clipping from diagonal slants */
.seccold-need-card-body {
    position: absolute;
    inset: 0;
    padding: 40px 25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    left: 24px;
    right: 24px;
}

.seccold-need-icon-glass {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 8px;
    transition: var(--seccold-transition);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.seccold-need-card:hover .seccold-need-icon-glass {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.08);
}

.seccold-need-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.seccold-need-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.seccold-need-card:hover p {
    max-height: 100px;
    opacity: 1;
}

@media (max-width: 580px) {
    .seccold-need-card {
        flex: 0 0 260px;
        height: 320px;
        margin-right: -42px; /* Proportional overlap */
    }
    .seccold-need-card-body {
        left: 15px;
        right: 15px;
        padding: 30px 15px;
    }
    .seccold-needs-carousel-track {
        animation-duration: 15s;
    }
}

/* ===== SECTION 4: STRATEGIC LOCATIONS ===== */
.seccold-map-flex-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
}

.seccold-map-card {
    flex: 1.3;
    background: #ffffff;
    border-radius: var(--seccold-radius-lg);
    box-shadow: var(--seccold-shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--seccold-border);
}

.seccold-map-card-header {
    background: var(--seccold-primary);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.seccold-map-header-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.seccold-map-header-pill {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

.seccold-map-iframe-wrap {
    flex: 1;
    position: relative;
    min-height: 380px;
    background: #eaeaea;
}

.seccold-map-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.seccold-map-card-footer {
    background: #ffffff;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--seccold-primary); /* Red text like the image footer */
    border-top: 1px solid var(--seccold-border);
}

/* Location Selector Wrap */
.seccold-location-selector-wrap {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seccold-selector-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--seccold-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.seccold-location-card {
    background: #ffffff;
    border: 1px solid var(--seccold-border);
    border-radius: var(--seccold-radius-lg);
    padding: 24px;
    cursor: pointer;
    transition: var(--seccold-transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.seccold-location-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--seccold-shadow-md);
    border-color: rgba(237,28,36,0.3);
}

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

.seccold-loc-pill {
    background: #fff2f2;
    color: var(--seccold-primary);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.seccold-loc-status {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.25);
    padding: 3px 10px;
    border-radius: 10px;
}

.seccold-location-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: #1e272e;
    margin: 0;
    letter-spacing: 0.3px;
}

.seccold-loc-address {
    font-size: 13.5px;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.seccold-loc-address i {
    margin-top: 3px;
}

/* Active location card */
.seccold-location-card.active {
    background: var(--seccold-primary);
    border-color: var(--seccold-primary);
    color: white;
    box-shadow: 0 10px 25px rgba(237,28,36,0.25);
}

.seccold-location-card.active h3 {
    color: white;
}

.seccold-location-card.active .seccold-loc-pill {
    background: rgba(255,255,255,0.15);
    color: white;
}

.seccold-location-card.active .seccold-loc-address {
    color: rgba(255,255,255,0.85);
}

/* Three location feature cards underneath map */
.seccold-loc-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.seccold-loc-feature-card {
    background: #ffffff;
    border: 1px solid var(--seccold-border);
    border-radius: var(--seccold-radius-lg);
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: var(--seccold-transition);
}

.seccold-loc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--seccold-shadow-md);
}

.seccold-feature-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: var(--seccold-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.seccold-loc-feature-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #1e272e;
    margin: 0;
    z-index: 2;
}

.seccold-loc-feature-card p {
    font-size: 13.5px;
    color: #57606f;
    line-height: 1.6;
    margin: 0;
    z-index: 2;
}

.seccold-feature-bg-icon {
    position: absolute;
    bottom: -15px;
    right: -10px;
    font-size: 90px;
    color: rgba(0,0,0,0.02);
    pointer-events: none;
    transform: rotate(-10deg);
}



@media (max-width: 991px) {
    .seccold-map-flex-container {
        flex-direction: column;
    }
    .seccold-loc-features-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== COMBINED PROMOTION & PRICING SECTION ===== */
.seccold-combined-price-promo {
    position: relative;
    background: linear-gradient(135deg, rgba(20,0,0,0.88) 0%, rgba(45,5,8,0.92) 100%), url('https://secgroup.vn/upload/files/baiviet/kho_mini_mat(1).png') center/cover no-repeat fixed;
    border-radius: 0;
}

.seccold-combined-price-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

/* Tab contents wrapping promo + pricing table */
.seccold-price-tab-content {
    display: none;
    animation: seccold-fadeUp 0.5s ease forwards;
}

.seccold-price-tab-content.active {
    display: block;
}

/* Promo Card Wrapper */
.seccold-promo-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--seccold-radius-lg);
    box-shadow: var(--seccold-shadow-lg);
    overflow: hidden;
    margin-bottom: 50px;
    z-index: 2;
    border: 3px solid #ffd700;
    animation: seccold-gold-glow 3s infinite alternate;
}

@keyframes seccold-gold-glow {
    0% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3), var(--seccold-shadow-lg);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.7), 0 0 10px rgba(255, 215, 0, 0.3), var(--seccold-shadow-lg);
    }
}

.seccold-promo-badge {
    position: absolute;
    top: 25px;
    left: 40px;
    background: #ffd700;
    color: #3d1418;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==================== TAB 1: KHO MINI MÁT PROMO LAYOUT (Image 2 style) ==================== */
.seccold-promo-mini-flex {
    display: flex;
    align-items: stretch;
}

.seccold-promo-mini-gifts {
    flex: 1.1;
    padding: 75px 50px 50px 50px;
    background: #f8f9fa; /* Light grey background */
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.seccold-gift-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid var(--seccold-border);
    padding: 18px 25px;
    border-radius: 18px;
    color: #1e272e;
    transition: var(--seccold-transition);
}

.seccold-gift-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-color: rgba(237,28,36,0.25);
}

.seccold-gift-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--seccold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(237,28,36,0.3);
    flex-shrink: 0;
}

.seccold-gift-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    text-align: left;
}

.seccold-gift-text-wrap h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: #7f8c8d;
    letter-spacing: 0.5px;
}

.seccold-gift-text-wrap p {
    font-size: 26px;
    font-weight: 900;
    color: #c49500;
    background: linear-gradient(135deg, #d59f00 0%, #9e7500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    display: inline-block;
    transform-origin: left center;
    animation: seccold-gift-pulse 1.8s ease-in-out infinite;
}

@keyframes seccold-gift-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

.seccold-promo-mini-discounts {
    flex: 0.9;
    padding: 75px 50px 50px 50px;
    background: #f1f2f6; /* Slightly darker light grey for visual depth */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1e272e;
    text-align: center;
}

.seccold-promo-mini-discounts h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1e272e;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.seccold-discount-boxes-flex {
    display: flex;
    gap: 24px;
    margin-bottom: 25px;
    justify-content: center;
}

.seccold-discount-box {
    background: #ffffff;
    border: 1px solid var(--seccold-border);
    padding: 24px 36px; /* Increased padding */
    border-radius: 20px; /* Larger radius */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* Increased gap */
    min-width: 175px; /* Increased min-width */
    transition: var(--seccold-transition);
}

.seccold-discount-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(237,28,36,0.1);
    border-color: var(--seccold-primary);
}

.seccold-discount-pct {
    display: inline-block;
    font-size: 72px; /* Scaled up by 50% from 48px */
    font-weight: 900;
    color: var(--seccold-primary);
    line-height: 1;
    text-shadow: 
        1px 1px 0px #b31010, 
        2px 2px 0px #b31010, 
        3px 3px 0px #940a0a, 
        4px 4px 5px rgba(0,0,0,0.18);
    letter-spacing: -2px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.seccold-discount-box:hover .seccold-discount-pct {
    transform: scale(1.08);
}

.seccold-discount-dur {
    font-size: 19px; /* Scaled up by ~40% from 13.5px */
    font-weight: 700;
    color: #485460;
}

.seccold-discount-note {
    font-size: 13px;
    font-style: italic;
    color: #7f8c8d;
    margin: 5px 0 0 0;
}

/* ==================== TAB 2: KHO PHÂN PHỐI MÁT PROMO LAYOUT (Image 3 style) ==================== */
.seccold-promo-dist-flex {
    display: flex;
    align-items: stretch;
}

.seccold-promo-dist-main {
    flex: 1.2;
    padding: 75px 50px 50px 60px;
    background: #f8f9fa; /* Light grey background */
    color: #1e272e;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seccold-promo-dist-main h3 {
    color: #1e272e;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    margin-top: 15px;
    text-align: center;
}

.seccold-promo-dist-main h3 span {
    color: var(--seccold-primary);
}

.seccold-dist-price-card {
    background: #ffffff;
    border: 1.5px dashed #d4af37; /* Gold dashed border */
    padding: 22px 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    color: #1e272e;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.seccold-dist-new-price {
    font-size: 17px;
    font-weight: 700;
    color: #1e272e;
    margin: 0;
}

.seccold-pulse-red {
    display: inline-block;
    color: #ed1c24; /* Red color */
    font-weight: 900;
    font-size: 52px; /* Increased size */
    text-shadow: 
        1px 1px 0px #b31010,
        2px 2px 0px #b31010,
        3px 3px 0px #b31010,
        4px 4px 0px #8a0c0c,
        5px 5px 0px #630808,
        6px 6px 6px rgba(0, 0, 0, 0.4);
    animation: seccold-red-pulse 1.8s infinite ease-in-out;
}

.seccold-price-unit {
    display: inline-block;
}

@keyframes seccold-red-pulse {
    0% {
        transform: scale(1);
        text-shadow: 
            1px 1px 0px #b31010,
            2px 2px 0px #b31010,
            3px 3px 0px #b31010,
            4px 4px 0px #8a0c0c,
            5px 5px 0px #630808,
            6px 6px 6px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 
            1px 1px 0px #b31010,
            2px 2px 0px #b31010,
            3px 3px 0px #b31010,
            4px 4px 0px #8a0c0c,
            5px 5px 0px #630808,
            6px 6px 12px rgba(237, 28, 36, 0.5),
            7px 7px 10px rgba(0, 0, 0, 0.5);
    }
    100% {
        transform: scale(1);
        text-shadow: 
            1px 1px 0px #b31010,
            2px 2px 0px #b31010,
            3px 3px 0px #b31010,
            4px 4px 0px #8a0c0c,
            5px 5px 0px #630808,
            6px 6px 6px rgba(0, 0, 0, 0.4);
    }
}

.seccold-dist-subtext {
    color: #57606f;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.seccold-promo-dist-img {
    flex: 0.8;
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.seccold-promo-dist-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .seccold-promo-mini-flex, .seccold-promo-dist-flex {
        flex-direction: column;
    }
    .seccold-promo-dist-img {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .seccold-promo-badge {
        top: 20px !important;
        left: 20px !important;
    }
    .seccold-promo-mini-gifts {
        padding: 85px 20px 30px 20px !important;
    }
    .seccold-gift-box {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 20px 15px !important;
        gap: 15px !important;
    }
    .seccold-gift-text-wrap {
        align-items: center !important;
        text-align: center !important;
    }
    .seccold-gift-text-wrap h4, .seccold-gift-text-wrap p {
        white-space: nowrap !important;
    }
    .seccold-gift-text-wrap p {
        font-size: 22px !important;
        transform-origin: center center !important;
    }
    .seccold-promo-dist-main {
        padding: 40px 20px !important;
        align-items: center !important;
        text-align: center !important;
    }
    .seccold-promo-dist-main h3 {
        text-align: center !important;
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
    .seccold-dist-subtext {
        text-align: center !important;
    }
    .seccold-promo-dist-main .seccold-cta-wrap {
        justify-content: center !important;
        margin-top: 20px !important;
    }
    .seccold-dist-price-card {
        margin: 0 auto 25px auto !important;
    }
    .seccold-price-unit {
        display: block !important;
        margin-top: 5px !important;
        font-size: 14px !important;
        color: var(--seccold-text-muted) !important;
    }
    
    /* Keep discount boxes on a single row on mobile */
    .seccold-discount-boxes-flex {
        gap: 12px !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .seccold-discount-box {
        padding: 16px 12px !important;
        min-width: 125px !important;
        flex: 1 !important;
        border-radius: 14px !important;
        gap: 6px !important;
    }
    
    .seccold-discount-pct {
        font-size: 48px !important; /* Slightly scale down to fit the row */
        letter-spacing: -1px !important;
        text-shadow: 1px 1px 0px #b31010, 1.5px 1.5px 2px rgba(0,0,0,0.12) !important;
    }
    
    .seccold-discount-dur {
        font-size: 14px !important;
        white-space: nowrap !important;
    }
}

/* Pricing Table Content wrapper (under Promo Card) */
.seccold-price-content-wrap {
    position: relative;
    z-index: 2;
}

.seccold-price-title {
    color: white !important;
}

.seccold-price-title span {
    color: #ffd700;
}

.seccold-price-subtitle {
    color: rgba(255,255,255,0.8) !important;
}

.seccold-price-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.seccold-price-tab-btn {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: white;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--seccold-transition);
    outline: none;
    font-family: inherit;
    min-width: 220px;
    text-align: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.seccold-price-tab-btn.active, .seccold-price-tab-btn:hover {
    background: var(--seccold-primary);
    border-color: transparent;
    box-shadow: var(--seccold-shadow-red);
}

.seccold-price-table-wrap {
    max-width: 1040px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--seccold-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    display: none;
    animation: seccold-fadeUp 0.5s ease forwards;
}

.seccold-price-table-wrap.active {
    display: block;
}

.seccold-price-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
    text-align: left;
}

.seccold-price-table th {
    background: rgba(237,28,36,0.85);
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.15);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.seccold-price-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
}

.seccold-price-table tbody tr {
    transition: background 0.3s;
}

.seccold-price-table tbody tr:hover {
    background: rgba(255,255,255,0.08);
}

.seccold-price-val {
    font-weight: 700;
    color: #ffd700;
    font-size: 16px;
}

.seccold-notes-cell {
    background: rgba(0,0,0,0.25);
    vertical-align: top;
    padding: 30px 24px !important;
    width: 42%;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.seccold-price-notes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seccold-price-notes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.seccold-price-notes li i {
    color: var(--seccold-primary) !important;
    font-size: 14px;
    margin-top: 3px;
    background: rgba(255,255,255,0.9) !important;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
}

.seccold-price-cta-wrap {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 991px) {
    .seccold-price-table-wrap {
        overflow-x: auto;
    }
    .seccold-price-table {
        min-width: 800px;
    }
    .seccold-promo-banner-flex { flex-direction: column; }
    .seccold-promo-img-flex { padding: 30px 20px; }
    .seccold-promo-main-flex { padding: 50px 30px 40px 30px; }
}

@media (max-width: 580px) {
    .seccold-price-tabs { flex-direction: column; align-items: center; gap: 12px; }
    .seccold-price-tab-btn { width: 100%; max-width: 320px; }
}

/* ===== SECTION 7: WORKFLOW TIMELINE ===== */
.seccold-workflow-wrapper {
    position: relative;
    padding: 20px 0;
}

.seccold-wf-labels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.seccold-wf-label {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 800;
    color: var(--seccold-text-dark);
    background: #ffffff;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--seccold-transition);
    box-shadow: var(--seccold-shadow-md);
    border: 2px solid transparent;
}

.seccold-wf-label:hover {
    transform: translateY(-2px);
    box-shadow: var(--seccold-shadow-lg);
}

.seccold-wf-label.active {
    background: var(--seccold-gradient);
    color: #fff;
    box-shadow: var(--seccold-shadow-red);
}

.seccold-wf-content {
    display: none;
    animation: seccold-fadeUp 0.5s ease forwards;
}

.seccold-wf-content.active {
    display: block;
}

.seccold-timeline-wrap {
    position: relative;
}

.seccold-tl-steps {
    display: flex;
    justify-content: space-between;
}

.seccold-tl-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.seccold-tl-step-num {
    font-size: 16px;
    font-weight: 800;
    color: var(--seccold-text-muted);
    margin-bottom: 20px;
    transition: var(--seccold-transition);
}

.seccold-tl-icon-track {
    position: relative;
    padding: 30px 0;
}

.seccold-tl-icon-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    background: #e6e9ec;
    transform: translateY(-50%);
    z-index: 1;
}

.seccold-tl-step:first-child .seccold-tl-icon-track::before { left: 50%; }
.seccold-tl-step:last-child .seccold-tl-icon-track::before { right: 50%; }

.seccold-tl-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #ffffff;
    border: 6px solid #e6e9ec;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #a0a5aa;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: var(--seccold-transition);
}

.seccold-tl-step.active .seccold-tl-icon,
.seccold-tl-step:hover .seccold-tl-icon {
    border-color: var(--seccold-primary);
    color: var(--seccold-primary);
    box-shadow: 0 0 0 10px rgba(237, 28, 36, 0.08), 0 12px 25px rgba(237, 28, 36, 0.4);
    transform: scale(1.1);
}

.seccold-tl-step.active .seccold-tl-step-num {
    color: var(--seccold-primary);
}

.seccold-tl-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--seccold-text-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.seccold-tl-desc {
    font-size: 14px;
    color: var(--seccold-text-body);
    padding: 0 15px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .seccold-tl-steps {
        flex-direction: column;
        gap: 30px;
        position: relative;
    }
    .seccold-tl-steps::before {
        content: '';
        position: absolute;
        left: 92px; /* 60px padding-left + 32px (half of 64px icon) */
        top: 32px;
        bottom: 32px;
        width: 4px;
        background: #e6e9ec;
        z-index: 1;
    }
    .seccold-tl-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        position: relative;
        padding-left: 60px;
    }
    .seccold-tl-step-num {
        position: absolute;
        left: 5px;
        top: 22px; /* Align center with the 64px icon */
        transform: rotate(-90deg);
        transform-origin: center center;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.5px;
        width: 64px;
        text-align: center;
        margin: 0 !important;
    }
    .seccold-tl-icon-track {
        padding: 0;
        margin-right: 20px;
        flex-shrink: 0;
        z-index: 2;
    }
    .seccold-tl-icon-track::before {
        display: none;
    }
    .seccold-tl-icon {
        width: 64px;
        height: 64px;
        font-size: 20px;
        z-index: 3;
    }
    .seccold-tl-content {
        padding-top: 6px;
        z-index: 2;
    }
    .seccold-tl-desc {
        padding: 0 !important;
    }
}

/* ===== SECTION 8: TARGET CLIENTS ===== */
.seccold-target-section {
    background-color: var(--seccold-bg-light);
}

.seccold-target-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.seccold-target-box {
    background: white;
    border-radius: var(--seccold-radius-lg);
    padding: 30px 15px;
    box-shadow: var(--seccold-shadow-sm);
    border: 1px solid var(--seccold-border);
    transition: var(--seccold-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.seccold-target-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--seccold-shadow-lg);
    border-color: var(--seccold-primary);
    background: var(--seccold-gradient-soft);
}

.seccold-target-box img {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    transition: transform 0.3s;
}

.seccold-target-box:hover img {
    transform: scale(1.1);
}

.seccold-target-box span {
    font-weight: 700;
    color: var(--seccold-text-dark);
    font-size: 15px;
}

@media (max-width: 991px) {
    .seccold-target-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .seccold-target-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SECTION 9: CUSTOMER REVIEWS & GALLERY CAROUSEL ===== */
#reviews {
    background-color: var(--seccold-bg-light);
}

/* Stats Row style from Image 2 */
.seccold-stats-card-row {
    display: flex;
    background: #ffffff;
    border-radius: var(--seccold-radius-lg);
    box-shadow: var(--seccold-shadow-md);
    border: 1px solid var(--seccold-border);
    margin: 40px auto 65px auto;
    max-width: 1000px;
    overflow: hidden;
}

.seccold-stat-item {
    flex: 1;
    text-align: center;
    padding: 30px 15px;
    border-right: 1px solid var(--seccold-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.seccold-stat-item:last-child {
    border-right: none;
}

.seccold-stat-number {
    font-size: 34px;
    font-weight: 800;
    color: var(--seccold-primary);
    line-height: 1.2;
}

.seccold-stat-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--seccold-text-body);
}

@media (max-width: 767px) {
    .seccold-stats-card-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .seccold-stat-item {
        border-right: none;
        border-bottom: 1px solid var(--seccold-border);
        padding: 20px 10px;
    }
    .seccold-stat-item:nth-child(even) {
        border-left: 1px solid var(--seccold-border);
    }
    .seccold-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* Customer Review Cards Carousel */
.seccold-review-slider-container {
    position: relative;
    padding: 0;
    margin-bottom: 70px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.seccold-review-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 15px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.seccold-review-track::-webkit-scrollbar {
    display: none;
}

.seccold-review-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--seccold-border);
    border-radius: var(--seccold-radius-lg);
    box-shadow: var(--seccold-shadow-sm);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    transition: var(--seccold-transition);
}

.seccold-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--seccold-shadow-md);
}

.seccold-review-quote {
    font-size: 44px;
    font-family: Georgia, serif;
    color: rgba(237,28,36,0.15);
    line-height: 1;
    height: 20px;
    margin-bottom: -10px;
    font-weight: 800;
}

.seccold-review-stars {
    display: flex;
    gap: 4px;
    color: #f1c40f;
    font-size: 13px;
}

.seccold-review-text {
    font-size: 14.5px;
    font-style: italic;
    color: var(--seccold-text-body);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.seccold-review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    border-top: 1px solid var(--seccold-border);
    padding-top: 15px;
}

.seccold-review-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--seccold-border);
}

.seccold-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.seccold-author-name {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--seccold-text-dark);
}

.seccold-author-title {
    font-size: 12px;
    color: var(--seccold-text-muted);
}

/* All review cards turn red on hover */
.seccold-review-card:hover {
    background: var(--seccold-primary) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: var(--seccold-shadow-red) !important;
}

.seccold-review-card:hover .seccold-review-quote {
    color: rgba(255,255,255,0.3) !important;
}

.seccold-review-card:hover .seccold-review-stars {
    color: #ffffff !important;
}

.seccold-review-card:hover .seccold-review-text {
    color: rgba(255,255,255,0.95) !important;
}

.seccold-review-card:hover .seccold-review-author {
    border-color: rgba(255,255,255,0.15) !important;
}

.seccold-review-card:hover .seccold-review-author img {
    border-color: rgba(255,255,255,0.3) !important;
}

.seccold-review-card:hover .seccold-author-name {
    color: #ffffff !important;
}

.seccold-review-card:hover .seccold-author-title {
    color: rgba(255,255,255,0.75) !important;
}

@media (max-width: 991px) {
    .seccold-review-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 650px) {
    .seccold-review-card { flex: 0 0 100%; }
    .seccold-review-slider-container { padding: 0; }
}

/* Gallery Grid Layout */
.seccold-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
}

.seccold-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--seccold-shadow-sm);
    height: 250px;
    position: relative;
    cursor: pointer;
}

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

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

@media (max-width: 991px) {
    .seccold-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .seccold-gallery-item {
        height: 220px;
    }
}

@media (max-width: 580px) {
    .seccold-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .seccold-gallery-item {
        height: 200px;
    }
}

/* Gallery Slider Wrapper & Track */
.seccold-gallery-slider-wrap {
    position: relative;
    width: 100%;
    margin: 40px auto 0 auto;
}

.seccold-gallery-slider-container {
    overflow: hidden;
    width: 100%;
}

.seccold-gallery-slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    width: 200%; /* 2 slides */
}

.seccold-gallery-slide {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 5px;
    box-sizing: border-box;
}

/* Dots Navigation */
.seccold-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.seccold-gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seccold-gallery-dot.active {
    background: var(--seccold-primary);
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(237, 28, 36, 0.4);
}

/* ===== SECTION 9.5: REAL GALLERY IMAGES ===== */
.seccold-gallery-section {
    background-color: #ffffff;
}

/* ===== SECTION 10: FAQ ACCORDION ===== */
.seccold-faq-section {
    background-color: var(--seccold-bg-light);
}

.seccold-faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seccold-faq-item {
    background: white;
    border: 1px solid var(--seccold-border);
    border-radius: var(--seccold-radius);
    overflow: hidden;
    transition: var(--seccold-transition);
}

.seccold-faq-item.active {
    border-color: rgba(237,28,36,0.3);
    box-shadow: var(--seccold-shadow-sm);
}

.seccold-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--seccold-text-dark);
    transition: var(--seccold-transition);
    gap: 16px;
    user-select: none;
}

.seccold-faq-q:hover {
    color: var(--seccold-primary);
}

.seccold-faq-item.active .seccold-faq-q {
    color: var(--seccold-primary);
    border-bottom: 1px solid var(--seccold-border);
}

.seccold-faq-arrow {
    width: 32px;
    height: 32px;
    background: rgba(237,28,36,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--seccold-transition);
}

.seccold-faq-arrow i {
    font-size: 13px;
    color: var(--seccold-primary);
    transition: transform 0.3s ease;
}

.seccold-faq-item.active .seccold-faq-arrow {
    background: var(--seccold-primary);
}

.seccold-faq-item.active .seccold-faq-arrow i {
    color: white;
    transform: rotate(180deg);
}

.seccold-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seccold-faq-a-inner {
    padding: 20px 28px;
    font-size: 15px;
    color: var(--seccold-text-body);
    line-height: 1.75;
}

/* ===== STICKY FLOATING PROMO BUTTON ===== */








@keyframes seccold-sticky-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(237,28,36,0.4), 0 0 0 0 rgba(237,28,36,0.5);
    }
    70% {
        box-shadow: 0 8px 25px rgba(237,28,36,0.4), 0 0 0 15px rgba(237,28,36,0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(237,28,36,0.4), 0 0 0 0 rgba(237,28,36,0);
    }
}

@keyframes seccold-gift-wiggle {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-15deg) scale(1.1); }
    30% { transform: rotate(12deg) scale(1.1); }
    45% { transform: rotate(-10deg) scale(1.1); }
    60% { transform: rotate(8deg) scale(1.1); }
    75% { transform: rotate(-4deg); }
}

@media (max-width: 580px) {
    
    
}


.seccold-anim-up, .seccold-anim-left, .seccold-anim-right {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-enabled .seccold-anim-up { opacity: 0; transform: translateY(40px); }
.js-enabled .seccold-anim-left { opacity: 0; transform: translateX(-40px); }
.js-enabled .seccold-anim-right { opacity: 0; transform: translateX(40px); }
.seccold-anim-up.seccold-visible, .seccold-anim-left.seccold-visible, .seccold-anim-right.seccold-visible,
.js-enabled .seccold-anim-up.seccold-visible, .js-enabled .seccold-anim-left.seccold-visible, .js-enabled .seccold-anim-right.seccold-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}


/* ===== CMS BREAKOUT TO FORCE 100% FULL-WIDTH ===== */
#wrap_content > .container,
#wrap_content > .container > .row,
#wrap_content > .container > .row > .wrap_left,
#wrap_content > .container > .row > .wrap_left > .content_article {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide theme default title since we have a custom title banner */
._hideOnLanding,
.kmt_title.kmt_center.kmt_uppercase {
    display: none !important;
}

/* ===== IMAGE SPECIFICITY OVERRIDES TO PREVENT CMS COLLISION ===== */

.seccold-wrap .seccold-promo-dist-img img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.seccold-wrap img.seccold-need-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
.seccold-wrap .seccold-intro-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.seccold-wrap .seccold-gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.seccold-wrap .seccold-review-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}


#seccold-map-iframe-container {
    width: 100%;
    height: 100%;
}
#seccold-map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ===== FONTAWESOME ICON DISPLAY FIXED ===== */
.seccold-wrap i, 
.seccold-wrap .fa,
.seccold-wrap i.fa {
    font-family: 'FontAwesome' !important;
}


/* ===== MAP TAB SELECTOR STYLES ===== */
.seccold-map-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    width: 100%;
}

.seccold-map-tab-btn {
    background: #ffffff;
    border: 2px solid var(--seccold-border);
    color: var(--seccold-text-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--seccold-transition);
    outline: none;
    font-family: inherit;
    flex: 1;
    max-width: 300px;
    text-align: center;
    box-shadow: var(--seccold-shadow-sm);
}

.seccold-map-tab-btn.active, .seccold-map-tab-btn:hover {
    background: var(--seccold-primary);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: var(--seccold-shadow-red);
}

.seccold-map-content {
    display: none;
    width: 100%;
    animation: seccold-fadeUp 0.5s ease forwards;
}

.seccold-map-content.active {
    display: block;
}

.seccold-map-contents-wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* Ensure gallery dots have flex centering */
.seccold-gallery-dot {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
