/* ═══════════════════════════════════════
   INDEX — Landing Page — Chethi Batik 2026
═══════════════════════════════════════ */

/* ─── Hide Scrollbar (Landing Page Only) ─── */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ══════════ 1. PREMIUM HERO (5-Column Accordion) ══════════ */
.hero-premium {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #000;
    overflow: hidden;
    display: flex;
}

.hero-column {
    height: 100%;
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.75s cubic-bezier(0.2, 1, 0.3, 1);
    border-right: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.hero-column:last-child {
    border-right: none;
}

.hero-column:hover {
    flex: 3;
}

.hero-column img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease), filter 0.8s var(--ease), opacity 1.5s ease-in-out;
    filter: brightness(0.75) contrast(1.1);
    z-index: 1;
}

.hero-column img.next-img {
    opacity: 0;
    z-index: 2;
}

.hero-column img.fade-in {
    opacity: 1;
}

.hero-column:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* --- Content Overlay (The Pink Box in Diagram) --- */
.hero-overlay {
    position: absolute;
    bottom: 40px; /* Lowered closer to bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1280px;
    background: rgba(255, 255, 255, 0.75); /* More transparent */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    border-radius: 8px; /* Slightly rounded for modern look */
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-overlay-content {
    flex: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem); /* Smaller title to fit the bar */
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--red);
}

.hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    max-width: 550px;
}

/* Stats section on the right of the overlay */
.hero-overlay-stats {
    flex: 1.2;
    display: flex;
    justify-content: center;
    gap: 3rem;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding: 0 3rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* CTA Button inside Overlay */
.hero-cta-wrap {
    margin-top: 2rem;
}

.btn-hero-main {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--red);
    color: var(--white);
    padding: 1.1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-hero-main:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-hero-main i {
    transition: transform 0.3s var(--ease);
}

.btn-hero-main:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .hero-overlay {
        flex-direction: column;
        align-items: flex-start;
        bottom: 40px;
        left: 20px;
        right: 20px;
        padding: 2.5rem;
    }
    .hero-overlay-stats {
        margin-top: 2rem;
        padding-left: 0;
        border-left: none;
        width: 100%;
        justify-content: space-between;
    }
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-hero-red {
    background: var(--red);
    color: var(--white);
    padding: 1.1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s var(--ease);
}

.btn-hero-red:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-hero-outline {
    background: transparent;
    color: #111;
    padding: 1.1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
}

.btn-hero-outline:hover {
    border-color: #111;
    background: #f8f8f8;
}

/* Stats Bar - Refined with clear borders */
.hero-stats-bar {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin-top: 5rem;
    padding: 2.5rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0; /* Clear lines for credibility */
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.stat-label span {
    display: block;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.stat-sep {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* --- Right Side (Slider) --- */
.hero-right {
    position: relative;
    height: 100vh;
    background-color: #fcfcfc;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(211, 47, 47, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 15 L45 20 L35 25 L30 35 L25 25 L15 20 L25 15 Z' stroke='rgba(211,47,47,0.03)' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
    background-size: cover, 120px 120px;
}

/* --- Right Side (Collage) --- */
.hero-right {
    position: relative;
    height: 100vh;
    background-color: #fcfcfc;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(211, 47, 47, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 15 L45 20 L35 25 L30 35 L25 25 L15 20 L25 15 Z' stroke='rgba(211,47,47,0.03)' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
    background-size: cover, 120px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-collage {
    position: relative;
    width: 90%;
    height: 80%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
}

.collage-item {
    position: absolute;
    transition: all 0.8s var(--ease);
}

.collage-frame {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 1px solid #eee;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.collage-item:hover .collage-frame img {
    transform: scale(1.08);
}

/* Positions based on the screenshot */
.pos-1 { /* Center Main */
    top: 52%;
    left: 54%;
    transform: translate(-50%, -50%);
    width: 30%;
    aspect-ratio: 4/6;
    z-index: 5;
}

.pos-2 { /* Top Left */
    top: 8%;
    left: 8%;
    width: 24%;
    aspect-ratio: 4/5;
    z-index: 3;
}

.pos-3 { /* Bottom Left */
    bottom: 8%;
    left: 12%;
    width: 22%;
    aspect-ratio: 4/6;
    z-index: 4;
}

.pos-4 { /* Top Right */
    top: 12%;
    right: 4%;
    width: 26%;
    aspect-ratio: 4/5;
    z-index: 2;
}

.pos-5 { /* Bottom Right */
    bottom: 12%;
    right: 8%;
    width: 24%;
    aspect-ratio: 4/6;
    z-index: 3;
}

.hero-discover {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.discover-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: #888;
}

.discover-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--red), transparent);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-collage {
        width: 100%;
        height: 60vh;
    }
    .pos-1 { width: 45%; }
    .pos-2, .pos-4 { display: none; }
    .pos-3 { left: 5%; width: 35%; }
    .pos-5 { right: 5%; width: 35%; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        padding: 8rem 2rem 4rem;
        min-height: auto;
    }
    
    .hero-right {
        height: 60vh;
    }
    
    .hero-stats-bar {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-controls {
        bottom: 2rem;
        right: 2rem;
    }
}

/* ══════════ 2. MARQUEE ══════════ */
.marquee-section {
    padding: 1.5rem 0;
    background-color: var(--red);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeRun 30s linear infinite;
    width: max-content;
}

.marquee-item {
    padding: 0 2rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.marquee-divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* ══════════ 3. COLLECTIONS ══════════ */
.collections {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .collections-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    .collections-grid {
        grid-template-columns: 1fr 1fr;
        max-width: none;
    }
}

.collection-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    cursor: none;
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    transform-style: preserve-3d;
}

.collection-card:hover {
    border-color: var(--border-red);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(211, 47, 47, 0.1);
}

.card-media {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.card-pattern {
    width: 100%;
    height: 100%;
    transition: transform 0.7s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-3);
}

.collection-card:hover .card-pattern {
    transform: scale(1.05);
}

.card-pattern svg {
    width: 70%;
    height: 70%;
    opacity: 0.4;
    transition: opacity 0.4s;
}

.collection-card:hover .card-pattern svg {
    opacity: 0.6;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
}

.card-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.collection-card:hover .card-hover-overlay {
    opacity: 1;
}

.card-view-btn {
    padding: 0.85rem 2rem;
    background: var(--white);
    color: var(--bg);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transform: translateY(16px);
    transition: transform 0.4s var(--ease);
    cursor: none;
}

.collection-card:hover .card-view-btn {
    transform: translateY(0);
}

.card-body {
    padding: 1.4rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.card-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--red);
}

.card-pieces {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ══════════ 4. STORY ══════════ */
.story {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-red), transparent);
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 800px) {
    .story-container {
        grid-template-columns: 1fr;
    }
}

.story-visual {
    position: relative;
}

.story-image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg-3);
    border: 1px solid var(--border);
}

.story-image-pattern {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-pattern svg {
    width: 60%;
    height: 60%;
    opacity: 0.2;
}

.story-accent-box {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 140px;
    height: 140px;
    background: var(--red);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    box-shadow: var(--shadow-red);
}

.story-accent-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.story-accent-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.story-text>*+* {
    margin-top: 1.2rem;
}

.story-body {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.story-cta {
    margin-top: 2.5rem !important;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 !important;
}

.story-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid var(--border-red);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 0.9rem;
}

.feature-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 0.15rem;
}

.feature-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ══════════ 5. PROCESS ══════════ */
.process {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--red);
    transition: width 0.5s var(--ease);
    z-index: 10;
}

.process-step:hover {
    border-color: var(--border-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-step:hover::after {
    width: 100%;
}

.step-visual-wrap {
    width: 100%;
}

.step-icon-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s var(--ease);
}

.step-svg {
    width: 65%;
    height: 65%;
    color: var(--red);
    transition: transform 0.6s var(--spring), color 0.4s var(--ease);
    overflow: visible;
}

.process-step:hover .step-icon-container {
    background: rgba(211, 47, 47, 0.03);
    border-color: rgba(211, 47, 47, 0.15);
}

.process-step:hover .step-svg {
    transform: scale(1.15) translateY(-4px);
}

/* --- DETAILED SVG ANIMATIONS --- */
.anim-wave-1 {
    animation: waveAnim 3s ease-in-out infinite alternate;
}

.anim-wave-2 {
    animation: waveAnim 2.5s ease-in-out infinite alternate-reverse;
}

.anim-dip {
    animation: dipAnim 4s ease-in-out infinite;
    transform-origin: center top;
}

@keyframes waveAnim {
    0% {
        transform: translateX(-2px) translateY(1px);
    }

    100% {
        transform: translateX(2px) translateY(-1px);
    }
}

@keyframes dipAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.anim-draw {
    animation: penMove 3s ease-in-out infinite;
}

.anim-draw-path {
    animation: pathDraw 3s linear infinite;
}

@keyframes penMove {

    0%,
    100% {
        transform: translate(0px, 0px);
    }

    50% {
        transform: translate(15px, -15px);
    }
}

@keyframes pathDraw {
    0% {
        stroke-dashoffset: 100;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 100;
    }
}

.anim-canting {
    animation: cantingMove 2s ease-in-out infinite;
    transform-origin: center;
}

.anim-drop {
    animation: dropFall 2s ease-in infinite;
}

.anim-drop-2 {
    animation: dropSplash 2s ease-out infinite;
}

@keyframes cantingMove {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }
}

@keyframes dropFall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    45% {
        transform: translateY(15px);
        opacity: 1;
    }

    50%,
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes dropSplash {

    0%,
    45% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.anim-liquid {
    animation: liquidFill 3s ease-in-out infinite alternate;
    transform-origin: center bottom;
}

.anim-dye-fabric {
    animation: dyeDip 3s ease-in-out infinite alternate;
}

@keyframes liquidFill {
    0% {
        transform: scaleY(0.9);
    }

    100% {
        transform: scaleY(1.15);
    }
}

@keyframes dyeDip {
    0% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(8px);
    }
}

.anim-sparkle {
    animation: sparklePulse 1.5s ease-in-out infinite alternate;
}

.anim-sparkle.s2 {
    animation-delay: 0.2s;
}

.anim-sparkle.s3 {
    animation-delay: 0.4s;
}

@keyframes sparklePulse {
    0% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.anim-fire {
    animation: fireFlicker 0.4s ease-in-out infinite alternate;
    transform-origin: center bottom;
}

.anim-bubble {
    animation: bubbleRise 2s ease-in infinite;
}

.anim-bubble.b2 {
    animation-delay: 0.7s;
}

@keyframes fireFlicker {
    0% {
        transform: scaleY(0.9);
        opacity: 0.7;
    }

    100% {
        transform: scaleY(1.2);
        opacity: 1;
    }
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20%,
    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
    }
}

.anim-water-stream {
    animation: waterFlow 0.8s linear infinite;
}

.anim-fabric-wash {
    animation: fabricWave 2.5s ease-in-out infinite alternate;
}

@keyframes waterFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -16;
    }
}

@keyframes fabricWave {
    0% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(4px);
    }
}

.anim-hang {
    animation: windBlow 4s ease-in-out infinite alternate;
    transform-origin: top center;
}

.anim-sun {
    animation: sunRotate 10s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes windBlow {
    0% {
        transform: skewX(-4deg);
    }

    100% {
        transform: skewX(4deg);
    }
}

@keyframes sunRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.anim-orbit {
    animation: orbitFly 6s linear infinite;
    transform-origin: 50px 50px;
}

@keyframes orbitFly {
    0% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
    }
}

.step-number-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(211, 47, 47, 0.9);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    z-index: 2;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-main);
    margin: 0;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ══════════ 6. REVIEWS ══════════ */
.reviews {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.reviews-carousel-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
    padding: 1rem;
}

.reviews-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s var(--ease);
    touch-action: pan-y;
}

.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(211, 47, 47, 0.12);
    line-height: 1;
}

.review-card:hover {
    border-color: var(--border-red);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--red);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.review-author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.review-author-loc {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 0.1rem;
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.reviews-nav-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--gray);
    font-size: 1rem;
    cursor: none;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-nav-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.reviews-dots {
    display: flex;
    gap: 0.5rem;
}

.reviews-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    cursor: none;
    transition: background 0.3s, width 0.3s;
}

.reviews-dot.active {
    background: var(--red);
    width: 20px;
    border-radius: 3px;
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc(80% - 1rem);
    }
}

@media (max-width: 540px) {
    .review-card {
        flex: 0 0 calc(100% - 1rem);
    }
}

/* ══════════ 7. CTA / NEWSLETTER ══════════ */
.cta-section {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.04;
    pointer-events: none;
}

.cta-bg-pattern svg {
    width: 600px;
    height: 600px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.2rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1.2rem;
}

.cta-title em {
    font-style: italic;
    color: var(--red);
}

.cta-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
    max-width: 460px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 1rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.cta-input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12);
}

.cta-input::placeholder {
    color: var(--gray-dark);
}

.cta-form .btn {
    white-space: nowrap;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--gray-dark);
}

@media (max-width: 540px) {
    .cta-form {
        flex-direction: column;
    }

    .cta-form .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ══════════ 8. ANNOUNCEMENT BAR ══════════ */
.announcement-bar {
    background: var(--red-dark);
    padding: 0.5rem 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    height: 36px;
    display: flex;
    align-items: center;
}

.announcement-bar .container {
    overflow: hidden;
}

.announcement-bar p {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.announcement-bar strong {
    color: #fff;
}

/* Hide last 2 items on tablet */
@media (max-width: 860px) {
    .ann-item:nth-child(n+3) {
        display: none;
    }
}

@media (max-width: 560px) {
    .ann-item:nth-child(n+2) {
        display: none;
    }
}

.ann-bar-track {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.ann-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ann-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* ══════════ 9. WHY CHOOSE US ══════════ */
.why-us {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--bg-2);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.why-item {
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--red);
    transition: width 0.5s var(--ease);
}

.why-item:hover {
    border-color: var(--border-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.why-item:hover::before {
    width: 100%;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid var(--border-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    transition: background 0.3s, box-shadow 0.3s;
}

.why-item:hover .why-icon {
    background: var(--red);
    color: #fff;
    box-shadow: 0 0 20px var(--red-glow);
}

.why-item h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.865rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ══════════ 10. FEATURED PRODUCTS ══════════ */
.products {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg);
}

.products-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.products-header .section-tag {
    display: block;
    margin-bottom: 1rem;
}

.products-header .section-tag {
    display: block;
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.filter-btn {
    padding: 0.45rem 1.1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--gray);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: none;
    transition: all 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ══════════ 10. PRODUCTS GRID ══════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Ensure all items in a row have the same height */
}

.product-card-link {
    width: 100%;
    display: flex; /* Ensure the link container allows the card to stretch */
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* Keep 3 columns longer */
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 650px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 420px;
    }
}



/* Standardized product-card styles moved to product-card.css */


.products-view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ══════════ 11. BLOG ══════════ */
.blog {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg-2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
        max-width: none;
    }
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    cursor: none;
    transition: all 0.35s var(--ease);
}

.blog-card:hover {
    border-color: var(--border-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.blog-thumb {
    aspect-ratio: 16/9;
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.blog-thumb svg {
    width: 50%;
    height: 50%;
    opacity: 0.25;
    transition: opacity 0.4s, transform 0.5s;
}

.blog-card:hover .blog-thumb svg {
    opacity: 0.4;
    transform: scale(1.06);
}

.blog-cat-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.2rem 0.7rem;
    background: var(--red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
}

.blog-body {
    padding: 1.4rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-meta span {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-meta i {
    color: var(--red);
    font-size: 0.65rem;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--red);
}

.blog-excerpt {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.blog-read {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s;
}

.blog-card:hover .blog-read {
    gap: 0.7rem;
}

/* ══════════ 12. CONTACT ══════════ */
.contact-section {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-red), transparent);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

@media (max-width: 800px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info-wrap .section-tag {
    display: inline-block;
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.3s;
}

.contact-detail-item:hover {
    border-color: var(--border-red);
    transform: translateX(6px);
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid var(--border-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.detail-value {
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 500;
}

.detail-value a {
    color: inherit;
    transition: color 0.3s;
}

.detail-value a:hover {
    color: var(--red);
}

.social-connect h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.2rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-main);
    font-size: 0.83rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.social-btn i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.fb:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-btn.ig:hover {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    border-color: #E4405F;
}

.social-btn.wa:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-btn.yt:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-btn.tt:hover {
    background: #000;
    border-color: #69C9D0;
}

.social-btn.pin:hover {
    background: #BD081C;
    border-color: #BD081C;
}

/* Contact map / form side */
.contact-form-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.contact-form-wrap>p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 540px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text-main);
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: var(--gray-dark);
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
    flex-grow: 1;
}

.contact-submit {
    align-self: flex-start;
}

/* ─── Blog View All ─── */
.blog-view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ══════════ 13. LOCATIONS ══════════ */
.locations {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg-2);
}

.locations-grid {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .locations-grid {
        max-width: 100%;
    }
}

.location-card {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}

.location-card:hover {
    border-color: var(--border-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.location-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.02);
}

.location-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.location-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.location-map {
    width: 100%;
    height: 250px;
    background: var(--bg-3);
    position: relative;
    overflow: hidden;
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Remove the weird inversion for dark mode since it's light mode now */
    filter: none;
    transition: filter 0.5s;
}

.location-card:hover .location-map iframe {
    filter: brightness(0.9) contrast(1.1);
}

.location-details {
    padding: 1.5rem;
}

.location-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.loc-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(211, 47, 47, 0.05);
    border: 1px solid var(--border-red);
    border-radius: 100px;
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 500;
}

.loc-feature i {
    color: var(--red);
}

/* WhatsApp Button Styling */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff !important;
}

.btn-whatsapp i {
    font-size: 1.1em;
}

.btn-whatsapp.btn-sm {
    padding: 0.6rem 0.5rem;
    font-size: 0.72rem;
}

/* ─── Entrance Animations ─── */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
}

.fade-up {
    transform: translateY(30px);
}

.fade-in {
    transform: scale(0.98);
}

.reveal.visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1) !important;
}

.reveal-delay-1 { transition-delay: 0.15s !important; }
.reveal-delay-2 { transition-delay: 0.3s !important; }
.reveal-delay-3 { transition-delay: 0.45s !important; }
.reveal-delay-4 { transition-delay: 0.6s !important; }
/* --- Contact Actions Container --- */
.contact-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* --- View Map Link (Button Style) --- */
.view-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem; /* Adjusted to match contact-submit */
    height: 52px; /* Fixed height for perfect alignment */
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    background: #222;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.contact-submit {
    height: 52px; /* Set same height to contact-submit */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
}

.view-map-link:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.view-map-link i {
    transition: transform 0.3s var(--ease);
    color: var(--red);
}

.view-map-link:hover i {
    transform: scale(1.2);
}

@media (max-width: 500px) {
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .view-map-link {
        justify-content: center;
    }
}

