/* CSS Variables for Premium Aesthetic */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c4a47c;
    /* Gold/Bronze accent */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f9f9f7;
    --bg-white: #ffffff;
    --bg-dark: #121212;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Responsive typography using clamp */
    --fs-h1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --fs-h2: clamp(2rem, 4vw + 1rem, 3.5rem);
    --fs-h3: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    --fs-p: clamp(1rem, 1vw + 0.5rem, 1.125rem);

    --spacing-section: clamp(4rem, 8vw, 8rem);

    --border-radius: 12px;
    --border-radius-asym: 60px 12px 60px 12px;
    --border-radius-asym-alt: 12px 60px 12px 60px;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: var(--fs-p);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

/* Layout & Containers */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: var(--spacing-section) 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3 {
    color: var(--bg-white);
}

.bg-dark p {
    color: #cccccc;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* UI Elements */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    background: linear-gradient(135deg, #1a1a1a 0%, #c4a47c 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(196, 164, 124, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Shimmer sweep on all buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: none;
    z-index: 2;
}

.btn:hover::before {
    animation: shimmer 0.65s forwards;
}

/* Pulse ring on all buttons */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 2px solid rgba(196, 164, 124, 0.7);
    opacity: 0;
    transform: scale(1);
    z-index: 3;
}

.btn:hover::after {
    animation: pulseRing 0.7s ease forwards;
}

.btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(196, 164, 124, 0.45);
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #c4a47c 100%);
    color: #fff;
}

.btn-primary:hover {
    color: #fff;
}

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

.btn-outline:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #c4a47c 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 36px rgba(196, 164, 124, 0.45);
}

.br-asym {
    border-radius: var(--border-radius-asym);
    overflow: hidden;
}

.br-asym-alt {
    border-radius: var(--border-radius-asym-alt);
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* 3-column layout: socials | nav | logo */
.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0 5%;
}

/* RIGHT — social icons */
.nav-socials {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-socials a:hover {
    transform: translateY(-3px) scale(1.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.nav-socials svg {
    width: 22px;
    height: 22px;
}

/* CENTER — nav links */
.nav-links {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c4a47c, #1a1a1a);
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #c4a47c;
}

/* LEFT — logo */
.logo {
    grid-column: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    display: block;
    transition: transform 0.4s ease;
}

.logo:hover img {
    transform: scale(1.04);
}

/* Mobile hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    grid-column: 3;
    justify-self: end;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Responsive — tablet & mobile */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3.5rem;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-socials {
        display: none;
    }

    .logo img {
        height: 70px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: zoomOut 20s infinite alternate;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.6);
}

.hero-content {
    color: var(--bg-white);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-asym-alt);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.03);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.feature-card:hover {
    transform: rotateY(360deg) scale(1.05) !important;
    background: #c4a47c !important;
    border-color: #c4a47c !important;
    box-shadow: 0 20px 40px rgba(196, 164, 124, 0.3) !important;
}

.feature-card h3,
.feature-card p {
    transition: color 0.4s ease !important;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: #000000 !important;
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* Inner Page Headers */
.page-header {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-align: center;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 9rem 1.5rem 3rem;
}

/* Dark gradient overlay so text stays readable */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(18, 18, 18, 0.72) 0%,
            rgba(18, 18, 18, 0.55) 60%,
            rgba(18, 18, 18, 0.80) 100%);
    z-index: 1;
}

/* Subtle zoom animation on the bg image */
.page-header::after {
    content: '';
    position: absolute;
    inset: -6%;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: phZoom 18s ease-in-out infinite alternate;
}

@keyframes phZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

.page-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-header p {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    padding: 0 1rem;
}

/* Per-page banner images */
.page-header--about {
    background-image: url('images/banner_about.jpg');
}

.page-header--products {
    background-image: url('images/banner_products.jpg');
}

.page-header--gallery {
    background-image: url('images/banner_gallery.jpg');
}

.page-header--contact {
    background-image: url('images/banner_contact.jpg');
}

/* Responsive adjustments for inner page banners */
@media (max-width: 900px) {
    .page-header {
        min-height: 260px;
        padding: 7rem 1.5rem 3rem;
    }
}

@media (max-width: 600px) {
    .page-header {
        min-height: 200px;
        padding: 6rem 1rem 2rem;
        /* Disable the ::after zoom on mobile for performance & Safari fix */
        background-attachment: scroll;
    }
    
    .page-header::after {
        animation: none;
        inset: 0;
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(196, 164, 124, 0.1);
}

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

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer h3 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: #aaaaaa;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 150px;
    width: auto;
    display: block;
}

.footer-links li,
.contact-info li {
    margin-bottom: 1rem;
    color: #aaaaaa;
}

.footer-links a:hover,
.contact-info a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #111;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Animations & Intersection Observer Classes */
.animate-up,
.animate-fade,
.animate-scale,
.animate-slide-left,
.animate-slide-right,
.animate-split-reveal,
.animate-skew-up,
.animate-card-flip,
.animate-slide-up-stagger {
    opacity: 0;
    will-change: transform, opacity;
}

.animate-up {
    transform: translateY(40px);
}

.animate-scale {
    transform: scale(0.95);
}

.animate-slide-left {
    transform: translateX(-40px);
}

.animate-slide-right {
    transform: translateX(40px);
}

.animate-split-reveal {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    will-change: clip-path, opacity, transform;
    transform: scale(1.05);
}

.animate-split-reveal.is-visible {
    opacity: 1 !important;
    transform: scale(1) !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.animate-skew-up {
    transform: translateY(50px) skewY(3deg);
    will-change: transform, opacity;
}

.animate-skew-up.is-visible {
    opacity: 1 !important;
    transform: translateY(0) skewY(0) !important;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.animate-card-flip {
    transform: perspective(1000px) rotateX(-20deg) translateY(40px);
    will-change: transform, opacity;
}

.animate-card-flip.is-visible {
    opacity: 1 !important;
    transform: perspective(1000px) rotateX(0deg) translateY(0) !important;
    transition-property: opacity, transform !important;
    transition-duration: 0.8s !important;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hover-spin-color {
    display: inline-block;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.5s ease;
}

.hover-spin-color:hover {
    transform: rotateY(360deg);
    color: var(--primary-color) !important;
}

.is-visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .grid-2.reverse .showroom-text {
        grid-row: 2;
    }

    .grid-2.reverse .showroom-image {
        grid-row: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* Gallery 4x Grid */
.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .gallery-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid-4 {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-asym-alt);
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1 / 1;
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

/* WhatsApp Enquiry Section */
.enquiry-section {
    background-color: var(--bg-light);
}

.enquiry-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.enquiry-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    display: block;
    letter-spacing: -0.5px;
}

.enquiry-title::before {
    content: 'GET IN TOUCH';
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.enquiry-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    margin: 0.8rem auto 0;
    border-radius: 4px;
}

.wa-form .wa-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    margin-bottom: 2rem;
}

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

.wa-input-group {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 2rem;
}

.wa-input-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.wa-input-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.4s ease;
}

.wa-input-group input:focus {
    border-bottom-color: var(--secondary-color);
}

.wa-input-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-input-group:focus-within::after {
    width: 100%;
}

.wa-submit-group {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #1a1a1a 0%, #c4a47c 100%);
    color: #fff;
    border: none;
    width: 100%;
    max-width: 340px;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 24px rgba(196, 164, 124, 0.35);
}

/* Shimmer sweep */
.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: none;
}

.btn-whatsapp:hover::before {
    animation: shimmer 0.65s forwards;
}

@keyframes shimmer {
    to {
        left: 130%;
    }
}

/* Pulse ring on hover */
.btn-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 2px solid rgba(196, 164, 124, 0.7);
    opacity: 0;
    transform: scale(1);
}

.btn-whatsapp:hover::after {
    animation: pulseRing 0.7s ease forwards;
}

@keyframes pulseRing {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(196, 164, 124, 0.45);
}

.animate-slide-up-stagger {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

.animate-slide-up-stagger.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}












.contact-wrapper {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: var(--border-radius-asym-alt);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info-list {
    margin-top: 2rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-list .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Map Section */
.map-section {
    padding: 5rem 0 0;
}

.map-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.map-section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.map-section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    filter: saturate(1.1) contrast(1.05);
}

.map-overlay-badge {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #2c3e50);
    color: #fff;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    z-index: 10;
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}










.c-phone {
	display: flex;
	position: fixed;
	width: 150px;
	height: 40px;
	bottom: 150px;
	left: 20px;
	z-index: 100;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;

}

.c-phone img {
	width: 40px;
	margin-left: -6px;

}

.c-phone p {
	padding: 8px 0px 5px 13px;
	text-align: center;
	font-weight: 600;


}


.float {
	display: flex;
	position: fixed;
	width: 150px;
	height: 40px;
	bottom: 95px;
	left: 20px;
	z-index: 100;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;

}

.float img {
	width: 40px;
	margin-left: -6px;

}

.float p {
	padding: 8px 0px 5px 10px;
	text-align: center;
	font-weight: 600;


}