
/* =========================================================
   BAKE N' TASTE — CONTACT PAGE
   Complete Responsive CSS
   Same Header System as Gallery & Order Guide
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --bg-main: #f9f4ef;
    --bg-soft: #f5eeea;
    --bg-card: #f2e9e1;

    --primary-dark: #3b2a26;
    --primary-darker: #332623;

    --accent-pink: #d88a80;
    --accent-dark: #c46d62;

    --text-dark: #2c221e;
    --text-muted: #6e5e58;

    --white: #ffffff;

    --border: #e8d9d0;

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;

    --transition: all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================================
   HEADER / NAVIGATION
   SAME AS GALLERY + ORDER GUIDE
========================================================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    padding: 24px 0;

    background-color: rgba(249, 244, 239, 0.95);

    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
}

.logo span {
    color: var(--accent-pink);
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-dark);
}


/* =========================================================
   MESSAGE US BUTTON
========================================================= */

.btn-header {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 20px;

    border-radius: 30px;

    background-color: var(--primary-dark);
    color: var(--white) !important;

    font-size: 14px;

    transition: var(--transition);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(59, 42, 38, 0.15);
}


/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    color: var(--primary-dark);

    font-size: 22px;

    cursor: pointer;
    padding: 5px;
}


/* =========================================================
   TABLET
   769px – 1024px
========================================================= */

@media (max-width: 1024px) and (min-width: 769px) {

    .menu-toggle,
    #mobileMenuBtn {
        display: none !important;
    }

    .nav-links {
        display: flex;
    }

    .btn-header {
        display: flex;
    }
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;

    padding: 100px 0 115px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(216, 138, 128, 0.09),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fdfbf7 0%,
            #f7eee8 100%
        );

    text-align: center;
}

.contact-hero::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -140px;
    right: -80px;

    border: 1px solid rgba(196, 109, 98, 0.15);

    border-radius: 50%;
}

.contact-hero::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -100px;
    left: -50px;

    border: 1px solid rgba(196, 109, 98, 0.12);

    border-radius: 50%;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;

    max-width: 820px;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;
    padding: 8px 18px;

    border: 1px solid #e2cfc4;
    border-radius: 40px;

    background: #fcf9f5;

    color: var(--accent-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.contact-hero h1 {
    margin-bottom: 20px;

    color: var(--primary-dark);

    font-size: 52px;
    line-height: 1.15;
}

.contact-hero h1 span {
    display: block;

    color: var(--accent-dark);

    font-style: italic;
}

.contact-hero p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: var(--text-muted);

    font-family: 'Tiro Bangla', serif;

    font-size: 17px;
    line-height: 1.9;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}

.contact-primary-btn,
.contact-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 24px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}

.contact-primary-btn {
    background: var(--primary-dark);
    color: var(--white);

    box-shadow: 0 6px 18px rgba(59, 42, 38, 0.14);
}

.contact-primary-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.contact-secondary-btn {
    border: 1px solid var(--primary-dark);

    color: var(--primary-dark);
}

.contact-secondary-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}


/* =========================================================
   SHARED SECTION TYPOGRAPHY
========================================================= */

.section-header {
    max-width: 650px;

    margin: 0 auto 45px;

    text-align: center;
}

.section-tag {
    display: block;

    margin-bottom: 8px;

    color: var(--accent-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.section-title {
    margin-bottom: 14px;

    color: var(--primary-dark);

    font-size: 38px;

    line-height: 1.25;
}

.section-desc {
    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-main {
    padding: 90px 0;

    background: var(--bg-main);
}

.contact-info-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.contact-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 250px;

    padding: 25px 22px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: var(--white);

    box-shadow: 0 7px 22px rgba(59, 42, 38, 0.04);

    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-7px);

    border-color: var(--accent-pink);

    box-shadow:
        0 15px 35px rgba(59, 42, 38, 0.09);
}


/* =========================================================
   CONTACT ICONS
========================================================= */

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #faf2ed;

    color: var(--accent-dark);

    font-size: 20px;
}

.whatsapp-icon {
    color: #25d366;
}

.phone-icon {
    color: var(--accent-dark);
}

.location-icon {
    color: var(--accent-dark);
}

.facebook-icon {
    color: #1877f2;
}


/* =========================================================
   CONTACT CARD TEXT
========================================================= */

.contact-card-label {
    margin-bottom: 5px;

    color: var(--accent-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.contact-card h3 {
    margin-bottom: 7px;

    color: var(--primary-dark);

    font-size: 19px;
}

.contact-card p {
    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.7;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: auto;
    padding-top: 18px;

    color: var(--accent-dark);

    font-size: 11px;
    font-weight: 700;
}

.contact-card-link i {
    font-size: 9px;

    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-link i {
    transform: translateX(4px);
}


/* =========================================================
   MESSAGE SECTION
========================================================= */

.message-section {
    padding: 90px 0;

    background: var(--bg-soft);
}

.message-wrapper {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 60px;

    align-items: center;

    max-width: 1100px;

    margin: 0 auto;
}

.message-intro h2 {
    margin-bottom: 18px;

    color: var(--primary-dark);

    font-size: 40px;
    line-height: 1.2;
}

.message-intro h2 span {
    display: block;

    color: var(--accent-dark);

    font-style: italic;
}

.message-intro > p {
    margin-bottom: 28px;

    color: var(--text-muted);

    font-family: 'Tiro Bangla', serif;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   MESSAGE POINTS
========================================================= */

.message-points {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.message-points div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--text-dark);

    font-size: 13px;
}

.message-points i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #ead7cd;

    color: var(--accent-dark);

    font-size: 9px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-card {
    padding: 32px;

    border: 1px solid #eadbd3;

    border-radius: 24px;

    background: var(--white);

    box-shadow:
        0 15px 40px rgba(59, 42, 38, 0.07);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--primary-dark);

    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #e1d3cb;

    border-radius: 10px;

    outline: none;

    background: #fffdfb;

    color: var(--text-dark);

    font-size: 13px;

    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-pink);

    box-shadow:
        0 0 0 3px rgba(216, 138, 128, 0.10);
}

.form-group textarea {
    resize: vertical;

    min-height: 120px;
}


/* =========================================================
   FORM SUBMIT BUTTON
========================================================= */

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    gap: 9px;

    padding: 13px 20px;

    border: 0;

    border-radius: 30px;

    background: var(--primary-dark);

    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.form-submit:hover {
    background: var(--accent-dark);

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(59, 42, 38, 0.15);
}


/* =========================================================
   BUSINESS HOURS
========================================================= */

.hours-section {
    padding: 65px 0;

    background: var(--bg-main);
}

.hours-card {
    display: flex;
    align-items: center;

    gap: 25px;

    padding: 32px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #fffdfb,
            #f8eee8
        );

    box-shadow:
        0 10px 30px rgba(59, 42, 38, 0.05);
}

.hours-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #f3e2da;

    color: var(--accent-dark);

    font-size: 23px;
}

.hours-content {
    flex: 1;
}

.hours-content h2 {
    margin-bottom: 5px;

    color: var(--primary-dark);

    font-size: 25px;
}

.hours-content p {
    color: var(--text-muted);

    font-size: 12px;
}

.hours-time {
    display: flex;
    align-items: center;

    gap: 28px;
}

.hours-time div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.hours-time span {
    color: #8d7a73;

    font-size: 10px;

    letter-spacing: 0.5px;
}

.hours-time strong {
    color: var(--primary-dark);

    font-family: 'Playfair Display', serif;

    font-size: 16px;
}

.hours-time .closed-day strong {
    color: var(--accent-dark);
}


/* =========================================================
   LOCATION SECTION
========================================================= */

.location-section {
    padding: 95px 0;

    background:
        linear-gradient(
            180deg,
            #fdfbf7 0%,
            #f5eeea 100%
        );
}

.location-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 60px;

    align-items: center;

    max-width: 1100px;

    margin: 0 auto;
}

.location-content h2 {
    margin-bottom: 18px;

    color: var(--primary-dark);

    font-size: 38px;

    line-height: 1.25;
}

.location-content h2 span {
    display: block;

    color: var(--accent-dark);

    font-style: italic;
}

.location-content > p {
    margin-bottom: 25px;

    color: var(--text-muted);

    font-family: 'Tiro Bangla', serif;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   ADDRESS BOX
========================================================= */

.address-box {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;

    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: var(--white);
}

.address-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 40px;
    height: 40px;

    border-radius: 10px;

    background: #faf0eb;

    color: var(--accent-dark);
}

.address-box strong {
    display: block;

    margin-bottom: 4px;

    color: var(--primary-dark);

    font-size: 13px;
}

.address-box p {
    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   MAP BUTTON
========================================================= */

.map-button {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 11px 20px;

    border-radius: 30px;

    background: var(--primary-dark);

    color: var(--white);

    font-size: 12px;
    font-weight: 600;

    transition: var(--transition);
}

.map-button:hover {
    background: var(--accent-dark);

    transform: translateY(-2px);
}


/* =========================================================
   MAP CARD
========================================================= */

.map-card {
    position: relative;

    min-height: 390px;

    overflow: hidden;

    border: 1px solid #e2d3cb;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(216, 138, 128, 0.12),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #eee1d9,
            #f9f4ef
        );

    box-shadow:
        0 15px 40px rgba(59, 42, 38, 0.07);
}

.map-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -100px;
    right: -80px;

    border: 1px dashed rgba(196, 109, 98, 0.25);

    border-radius: 50%;
}

.map-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -90px;
    left: -50px;

    border: 1px dashed rgba(196, 109, 98, 0.2);

    border-radius: 50%;
}

.map-placeholder {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    z-index: 2;
}

.map-placeholder > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin-bottom: 16px;

    border-radius: 50%;

    background: var(--white);

    color: var(--accent-dark);

    font-size: 25px;

    box-shadow:
        0 8px 20px rgba(59, 42, 38, 0.09);
}

.map-placeholder h3 {
    margin-bottom: 4px;

    color: var(--primary-dark);

    font-size: 24px;
}

.map-placeholder p {
    margin-bottom: 18px;

    color: var(--text-muted);

    font-size: 12px;
}

.map-placeholder a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 10px 17px;

    border-radius: 25px;

    background: var(--primary-dark);

    color: var(--white);

    font-size: 11px;
    font-weight: 600;

    transition: var(--transition);
}

.map-placeholder a:hover {
    background: var(--accent-dark);

    transform: translateY(-2px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-contact-section {
    padding: 40px 0 90px;

    background: var(--bg-soft);
}

.final-contact-card {
    position: relative;

    overflow: hidden;

    padding: 65px 30px;

    border-radius: 28px;

    background: var(--primary-dark);

    text-align: center;

    color: var(--white);
}

.final-contact-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -130px;
    left: -70px;

    border: 1px solid rgba(216, 138, 128, 0.22);

    border-radius: 50%;
}

.final-contact-card::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    right: -70px;
    bottom: -110px;

    border: 1px solid rgba(216, 138, 128, 0.18);

    border-radius: 50%;
}

.final-contact-card > * {
    position: relative;
    z-index: 2;
}

.final-contact-card .section-tag {
    color: var(--accent-pink);
}

.final-contact-card h2 {
    margin-bottom: 14px;

    font-size: 40px;

    line-height: 1.25;
}

.final-contact-card h2 span {
    color: var(--accent-pink);

    font-style: italic;
}

.final-contact-card p {
    max-width: 570px;

    margin: 0 auto 28px;

    color: rgba(255, 255, 255, 0.68);

    font-family: 'Tiro Bangla', serif;

    font-size: 14px;
}

.final-buttons {
    display: flex;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.final-whatsapp,
.final-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 22px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.final-whatsapp {
    background: var(--accent-dark);

    color: var(--white);
}

.final-whatsapp:hover {
    background: #d27b70;

    transform: translateY(-2px);
}

.final-call {
    border: 1px solid rgba(255,255,255,0.35);

    color: var(--white);
}

.final-call:hover {
    background: var(--white);

    color: var(--primary-dark);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 45px 0 20px;

    border-top: 1px solid #e8ded5;

    background: var(--bg-main);

    color: var(--text-muted);

    font-size: 13px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 50px;

    margin-bottom: 40px;
}

.footer-brand p {
    max-width: 310px;

    margin-top: 12px;

    line-height: 1.7;
}

.footer-grid h4 {
    margin-bottom: 14px;

    color: var(--primary-dark);

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-dark);

    padding-left: 3px;
}


/* =========================================================
   FOOTER SOCIAL
========================================================= */

.footer-social {
    display: flex;

    gap: 8px;

    margin-top: 18px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid #e0d2ca;

    border-radius: 50%;

    background: var(--white);

    color: var(--primary-dark);

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-dark);

    border-color: var(--accent-dark);

    color: var(--white);

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;

    gap: 8px;
}

.footer-contact i {
    width: 15px;

    color: var(--accent-dark);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    padding-top: 20px;

    border-top: 1px solid #e8ded5;

    text-align: center;

    font-size: 12px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 900;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 12px 19px;

    border-radius: 30px;

    background: var(--primary-dark);

    color: var(--white);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.16);

    font-size: 12px;
    font-weight: 600;

    transition: var(--transition);
}

.floating-whatsapp i {
    color: #25d366;

    font-size: 18px;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);

    background: var(--accent-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .message-wrapper,
    .location-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .message-intro {
        text-align: center;
    }

    .message-intro .section-tag {
        text-align: center;
    }

    .message-points {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        max-width: 500px;

        margin: 0 auto;

        text-align: left;
    }

    .hours-card {
        flex-wrap: wrap;
    }

    .hours-content {
        min-width: 300px;
    }

    .hours-time {
        width: 100%;

        justify-content: center;

        padding-top: 20px;

        border-top: 1px solid var(--border);
    }
}


/* =========================================================
   MOBILE NAVIGATION
   SAME SYSTEM AS GALLERY / ORDER GUIDE
========================================================= */

@media (max-width: 768px) {

    .container {
        padding: 0 18px;
    }


    /* =========================
       HEADER
    ========================= */

    header {
        padding: 16px 0;
    }

    .nav-container {
        position: relative;
    }

    .menu-toggle {
        display: block;

        border: 0;
        background: transparent;

        color: var(--primary-dark);

        font-size: 22px;

        cursor: pointer;

        padding: 5px;
    }

    .nav-links {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 16px;

        padding: 20px;

        border-radius: var(--radius-md);

        background-color: var(--white);

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.10);

        text-align: center;

        z-index: 200;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding: 5px 0;

        font-size: 14px;
    }

    .btn-header {
        display: none;
    }


    /* =========================
       HERO
    ========================= */

    .contact-hero {
        padding: 70px 0 80px;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .hero-contact-actions {
        flex-direction: column;

        width: 100%;
    }

    .contact-primary-btn,
    .contact-secondary-btn {
        width: 100%;
    }


    /* =========================
       SECTIONS
    ========================= */

    .contact-main,
    .message-section,
    .location-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
    }


    /* =========================
       CONTACT CARDS
    ========================= */

    .contact-info-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .contact-card {
        min-height: auto;

        padding: 22px;
    }


    /* =========================
       MESSAGE
    ========================= */

    .message-intro h2 {
        font-size: 34px;
    }

    .message-points {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 23px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* =========================
       BUSINESS HOURS
    ========================= */

    .hours-card {
        flex-direction: column;

        align-items: center;

        text-align: center;
    }

    .hours-content {
        min-width: 0;
    }

    .hours-time {
        flex-direction: column;

        gap: 15px;
    }


    /* =========================
       LOCATION
    ========================= */

    .location-content {
        text-align: center;
    }

    .location-content .section-tag {
        text-align: center;
    }

    .address-box {
        text-align: left;
    }

    .map-card {
        min-height: 320px;
    }


    /* =========================
       FINAL CTA
    ========================= */

    .final-contact-card {
        padding: 50px 20px;
    }

    .final-contact-card h2 {
        font-size: 31px;
    }


    /* =========================
       FOOTER
    ========================= */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;

        text-align: center;
    }

    .footer-brand p {
        margin-right: auto;
        margin-left: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }


    /* =========================
       FLOATING WHATSAPP
    ========================= */

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;

        padding: 11px 15px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 600px) {

    .container {
        padding: 0 18px;
    }

    header {
        padding: 16px 0;
    }

    .logo {
        font-size: 21px;
    }

    .menu-toggle {
        font-size: 21px;
    }

    .contact-tag {
        font-size: 8px;

        letter-spacing: 1.8px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 13px;

        line-height: 1.8;
    }

    .section-title {
        font-size: 28px;
    }

    .message-intro h2 {
        font-size: 31px;
    }

    .location-content h2 {
        font-size: 31px;
    }

    .map-card {
        min-height: 300px;
    }

    .map-placeholder h3 {
        font-size: 21px;
    }

    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;

        justify-content: center;

        padding: 0;
    }

    .floating-whatsapp i {
        font-size: 20px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }

    .contact-hero {
        padding: 60px 0 70px;
    }

    .contact-hero h1 {
        font-size: 29px;
    }

    .section-title {
        font-size: 26px;
    }

    .message-intro h2 {
        font-size: 29px;
    }

    .location-content h2 {
        font-size: 29px;
    }

    .contact-form-card {
        padding: 20px 15px;
    }

    .map-card {
        min-height: 280px;
    }

    .final-contact-card h2 {
        font-size: 28px;
    }
}