/* ============================================
   THEME: Bricolage Grotesque + Warm Cream/Beige
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&display=swap');

:root {
    /* ── Core Palette ── */
    --cream: #FFF8F0;
    --cream-light: #FFFDF9;
    --beige: #F5E6D3;
    --beige-dark: #E8D5C0;
    --sand: #8b5623;
    --caramel: #46280c;
    --caramel-dark: #A67B52;
    --terracotta: #B8704A;
    --brown: #5C3D2E;
    --brown-dark: #3D2B1F;
    --muted: #8B7355;
    --white: #FFFFFF;
    --shadow-warm: rgba(61, 43, 31, 0.08);

    /* ── Typography ── */
    --font: 'Bricolage Grotesque', sans-serif;

    /* ── Spacing ── */
    --section-pad: 100px 0;

    /* ── Transitions ── */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

ul {
    list-style: none;
}

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

/* ── Container ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}


/* ============================================
   HEADER start
   ============================================ */

/* ============================================
   RESPONSIVE HEADER WITH DROPDOWN
============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 18px;
    transition: 0.4s ease;
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 248, 240, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: 0.4s ease;
}

.header.scrolled::before {
    border-color: #e7d7c7;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
    position: relative;
    max-width: 1240px;
    margin: auto;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ============================================
   LOGO
============================================ */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 100;
}

.logo-img {
    width: 170px;
    height: auto;
    object-fit: contain;
}

/* ============================================
   DESKTOP NAV
============================================ */

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    position: relative;
    padding: 10px 16px;
    border-radius: 50px;
    color: #5c3d2e;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #000;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    background: #c4956a;
    transform: scaleX(0);
    transition: 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* ============================================
   DROPDOWN
============================================ */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-icon {
    font-size: 12px;
    transition: 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 115%;
    left: 0;
    width: 260px;
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition: 0.35s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    color: #5c3d2e;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8efe7;
    color: #c07a50;
}

/* ============================================
   BUTTONS
============================================ */

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost,
.btn-primary {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 100px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-ghost {
    background: transparent;
    color: #2d2016;
    padding: 10px 18px;
}

.btn-ghost:hover {
    background: #f1e5d8;
}

.btn-primary {
    background: #2d2016;
    color: #fff;
    padding: 11px 22px;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* ============================================
   MENU TOGGLE
============================================ */

.menu-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: #2d2016;
    border-radius: 20px;
    transition: 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ============================================
   MOBILE MENU
============================================ */

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff8f0;
    padding: 120px 25px 40px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    transition: 0.45s ease;
    z-index: 99;
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.mobile-link {
    font-size: 18px;
    font-weight: 600;
    color: #2d2016;
    padding: 14px 0;
    border-bottom: 1px solid #eee2d6;
}

/* ============================================
   MOBILE DROPDOWN
============================================ */

.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-btn {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 18px;
    font-weight: 600;
    color: #2d2016;

    padding: 14px 0;
    cursor: pointer;
    border-bottom: 1px solid #eee2d6;
    font-family: inherit;
}

.mobile-dropdown-btn i {
    transition: 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
    margin-top: 10px;
}

.mobile-dropdown-menu a {
    padding: 12px 14px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 12px;

    color: #5c3d2e;
    font-size: 15px;
    font-weight: 500;

    transition: 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    background: #f3e4d7;
    color: #c07a50;
}

/* ============================================
   TABLET
============================================ */

@media (max-width: 992px) {

    .nav-desktop {
        gap: 2px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-primary,
    .btn-ghost {
        padding: 10px 16px;
        font-size: 14px;
    }

    .logo-img {
        width: 150px;
    }
}

/* ============================================
   MOBILE
============================================ */

@media (max-width: 768px) {

    .header {
        padding: 0 14px;
    }

    .header-inner {
        height: 72px;
    }

    .nav-desktop,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-img {
        width: 140px;
    }
}

/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 480px) {

    .header-inner {
        height: 68px;
    }

    .logo-img {
        width: 125px;
    }

    .mobile-link,
    .mobile-dropdown-btn {
        font-size: 17px;
    }

    .mobile-dropdown-menu a {
        font-size: 14px;
    }
}

/* ============================================
   HEADER ENDED
   ============================================ */










   /* ============================================
   BLOG & ADMIN STYLES
   ============================================ */

   body {
    font-family: 'Bricolage Grotesque', sans-serif;
}

.blog-page {
    padding: 110px 0 60px;
}

.blog-hero {
    text-align: center;
    /* padding: 80px 0 40px; */
}

.blog-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    margin-bottom: 16px;
    color: var(--brown-dark);
}

.blog-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
    padding: 0 24px;
}

.blog-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #efe4d7;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
}

.blog-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--brown-dark);
}

.blog-card p {
    color: var(--muted);
    line-height: 1.40;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--brown-dark);
    color: #fff;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease;
}

.blog-button:hover {
    transform: translateY(-2px);
    background: var(--caramel-dark);
}

.blog-detail {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.blog-detail h1 {
    margin-bottom: 16px;
    font-size: clamp(2.6rem, 5vw, 4rem);
}

.blog-detail img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 0 20px 0;
  object-fit: cover;
}

.blog-detail .post-meta {
    color: var(--muted);
    margin-bottom: 24px;
}

.blog-detail .post-content {
    line-height: 1.85;
    font-size: 1.02rem;
    color: #3c2f21;
}

.admin-panel {
    min-height: 100vh;
    background: #fff8f0;
    padding: 120px 0 80px;
}

.admin-panel .panel-inner {
    padding: 28px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.admin-panel h1,
.admin-panel h2 {
    color: var(--brown-dark);
    margin-bottom: 18px;
}

.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.admin-table th,
.admin-table td {
    padding: 16px 14px;
    border-bottom: 1px solid #efe4d7;
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: var(--brown-dark);
    font-weight: 700;
}

.admin-table tr:hover {
    background: #fff7ec;
}

.admin-actions a,
.admin-actions button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.admin-actions a {
    background: #2d2016;
    color: #fff;
}

.admin-actions button {
    background: #c07a50;
    color: #fff;
}

.admin-form {
    display: grid;
    gap: 18px;
}

.admin-form label {
    font-weight: 700;
    color: var(--brown-dark);
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    border-radius: 18px;
    border: 1px solid #e7d7c7;
    padding: 14px 16px;
    background: #fff;
    color: var(--brown-dark);
    font-family: inherit;
}

.admin-form textarea {
    min-height: 220px;
    resize: vertical;
}

.alert {
    padding: 14px 18px;
    border-radius: 18px;
    background: #f4e0d0;
    color: #5c3d2e;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .blog-grid,
    .admin-form {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

@media (max-width: 680px) {
    .blog-detail,
    .admin-panel .panel-inner {
        padding: 24px;
    }
}




























   


:root {
    --caramel: #c4956a;
    --caramel-light: #d4ad84;
    --caramel-dark: #a87d55;
    --brown-dark: #2b1d17;
    --brown-medium: #4a3728;
    --cream: #f5e6d3;
    --cream-light: #faf3eb;
    --cream-white: #fdf8f2;
    --sand: #b8a08a;
    --sand-light: #d4c4b0;
    --footer-bg: #f6ede3;
    --footer-bg2: #ead7c3;
    --footer-surface: rgba(43,29,23,0.04);
    --footer-border: rgba(43,29,23,0.09);
    --footer-text: #4a3728;
    --footer-text-muted: #8a7565;
  }

  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    background: linear-gradient(135deg, var(--footer-bg) 0%, var(--footer-bg2) 100%);
    color: var(--footer-text);
    position: relative;
    overflow: hidden;
  }

  .footer::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -120px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(196,149,106,0.14) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }

  .footer::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184,112,74,0.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }

  .footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }

  /* =========================
     MAIN FOOTER GRID — MOBILE FIRST
     ========================= */
  .footer-main {
    padding: 40px 0 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* =========================
     BRAND COLUMN
     ========================= */
  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
    text-decoration: none;
  }

  .footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
  }

  .footer-brand > p {
    color: var(--footer-text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 340px;
  }

  /* Social Links */
  .footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  .social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--cream-white);
    border: 1px solid var(--footer-border);
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: 0.35s ease;
  }

  .social-link:hover {
    background: var(--caramel);
    color: #fff;
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 10px 25px rgba(196,149,106,0.3);
    border-color: var(--caramel);
  }

  .social-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* =========================
     FOOTER COLUMNS (shared)
     ========================= */
  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--caramel-dark);
    margin-bottom: 18px;
    font-weight: 700;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1px;
    list-style: none;
    align-items: center;
  }

  .footer-col ul li a {
    color: var(--footer-text);
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    position: relative;
    transition: 0.3s ease;
  }

  .footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--caramel);
    border-radius: 2px;
    transition: 0.3s ease;
  }

  .footer-col ul li a:hover {
    color: var(--caramel-dark);
    transform: translateX(5px);
  }

  .footer-col ul li a:hover::after {
    width: 14px;
  }

  .link-arrow {
    font-size: 0.6rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.3s ease;
    color: var(--caramel);
  }

  .footer-col ul li a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* =========================
     CONTACT COLUMN
     ========================= */
  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    background: var(--cream-white);
    border: 1px solid var(--footer-border);
    transition: 0.35s ease;
    width: 100%;
    max-width: 340px;
    text-align: left;
  }

  .contact-item:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: rgba(196,149,106,0.22);
    box-shadow: 0 8px 20px rgba(196,149,106,0.12);
  }

  .contact-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(196,149,106,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--caramel-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .contact-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--caramel-dark);
    font-weight: 600;
  }

  .contact-text a,
  .contact-text p {
    margin: 0;
    color: var(--footer-text);
    font-size: 0.86rem;
    line-height: 1.6;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .contact-text a:hover {
    color: var(--caramel-dark);
  }

  /* =========================
     FOOTER BOTTOM
     ========================= */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 0;
    border-top: 1px solid var(--footer-border);
    text-align: center;
  }

  .footer-bottom p {
    color: var(--footer-text-muted);
    font-size: 0.82rem;
  }

  .footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom-links a {
    color: var(--footer-text-muted);
    font-size: 0.82rem;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .footer-bottom-links a:hover {
    color: var(--caramel-dark);
  }

  /* =========================
     BACK TO TOP
     ========================= */
  .back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--caramel), var(--caramel-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 24px rgba(196,149,106,0.35);
    transition: 0.35s ease;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
  }

  .back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(196,149,106,0.45);
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* =========================
     ANIMATIONS
     ========================= */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .footer-brand  { animation: fadeUp 0.6s 0.08s ease both; }
  .footer-col:nth-child(2) { animation: fadeUp 0.6s 0.14s ease both; }
  .footer-col:nth-child(3) { animation: fadeUp 0.6s 0.2s ease both; }
  .footer-col:nth-child(4) { animation: fadeUp 0.6s 0.26s ease both; }
  .footer-col:nth-child(5) { animation: fadeUp 0.6s 0.3s ease both; }
  .footer-bottom { animation: fadeUp 0.6s 0.34s ease both; }

  

  /* ============================================
     RESPONSIVE — 480px+ (Large Mobile)
     ============================================ */
  @media (min-width: 480px) {
    .footer-cta-form {
      flex-direction: row;
      gap: 0;
    }

    .footer-cta-form input {
      border-radius: 14px 0 0 14px;
      width: auto;
    }

    .footer-cta-form button {
      border-radius: 0 14px 14px 0;
      width: auto;
    }

    .footer-cta h3 {
      font-size: 1.5rem;
    }
  }

  /* ============================================
     RESPONSIVE — 640px+ (Small Tablet)
     ============================================ */
  @media (min-width: 640px) {
    .footer .container {
      padding: 0 28px;
    }

    .footer-cta {
      padding: 52px 0 44px;
      gap: 16px;
    }

    .footer-cta h3 {
      font-size: 1.6rem;
    }

    .footer-main {
      padding: 48px 0 36px;
      grid-template-columns: 1fr 1fr;
      gap: 40px 28px;
    }

    /* Brand spans full width on first row */
    .footer-brand {
      grid-column: 1 / -1;
      text-align: left;
      align-items: flex-start;
      max-width: 100%;
    }

    .footer-brand > p {
      max-width: 500px;
    }

    .footer-socials {
      justify-content: flex-start;
    }

    .footer-col {
      text-align: left;
    }

    .footer-col ul {
      align-items: flex-start;
    }

    .footer-contact-info {
      align-items: flex-start;
    }

    .contact-item {
      max-width: 100%;
    }

    .footer-logo {
      justify-content: flex-start;
    }

    .footer-logo-img {
      height: 44px;
    }
  }

  /* ============================================
     RESPONSIVE — 768px+ (Tablet)
     ============================================ */
  @media (min-width: 768px) {
    .footer .container {
      padding: 0 32px;
    }

    .footer-cta {
      padding: 56px 0 48px;
    }

    .footer-main {
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 36px 28px;
    }

    /* Brand in first column, not full width */
    .footer-brand {
      grid-column: auto;
      grid-row: 1 / 2;
    }

    .footer-brand > p {
      max-width: 300px;
    }

    /* Contact in row 2, spanning 2 cols */
    .footer-col.footer-contact-col {
      grid-column: 2 / 4;
    }

    .footer-col.footer-contact-col .footer-contact-info {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-col.footer-contact-col .contact-item {
      flex: 1;
      min-width: 200px;
    }
  }

  /* ============================================
     RESPONSIVE — 1024px+ (Desktop)
     ============================================ */
  @media (min-width: 1024px) {
    .footer .container {
      padding: 0 40px;
    }

    .footer-main {
      grid-template-columns: 1.5fr 0.8fr 1fr 1fr 1.3fr;
      gap: 32px;
    }

    .footer-brand {
      grid-row: auto;
    }

    .footer-brand > p {
      max-width: 280px;
    }

    .footer-col.footer-contact-col {
      grid-column: auto;
    }

    .footer-col.footer-contact-col .footer-contact-info {
      flex-direction: column;
    }

    .footer-col.footer-contact-col .contact-item {
      min-width: 0;
    }

    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }

    .footer-logo-img {
      height: 46px;
    }
  }

  /* ============================================
     RESPONSIVE — 1280px+ (Large Desktop)
     ============================================ */
  @media (min-width: 1280px) {
    .footer-main {
      gap: 40px;
    }

    .footer-brand > p {
      max-width: 300px;
    }
  }




/* ============================================
   FOOTER ENDED
   ============================================ */


/* ============================================
   INDEX CSS STARTED
   ============================================ */


/* ============================================
   INDEX CSS ENDED
   ============================================ */



/* ============================================
   BACKGROUND REMOVER STARTED
   ============================================ */



/* ============================================
   BACKGROUND REMOVER ENDED
   ============================================ */



/* ============================================
   COIN FLIP STARTED
   ============================================ */



/* ============================================
   COIN FLIP ENDED
   ============================================ */




/* ============================================
   COLOR PICKER STARTED
   ============================================ */



/* ============================================
   COLOR PICKER ENDED
   ============================================ */



/* ============================================
   DICE ROLLER STARTED
   ============================================ */



/* ============================================
   DICE ROLLER ENDED
   ============================================ */


/* ============================================
   FONT GENERATOR STARTED
   ============================================ */



/* ============================================
   FONT GENERATOR ENDED
   ============================================ */




/* ============================================
   HEIC TO JPG STARTED
   ============================================ */


/* ============================================
   HEIC TO JPG ENDED
   ============================================ */



/* ============================================
   IMAGE CONVERT TO PDF STARTED
   ============================================ */



/* ============================================
   IMAGE CONVERT TO PDF ENDED
   ============================================ */



/* ============================================
   IMAGE RESIZER STARTED
   ============================================ */


/* ============================================
   IMAGE RESIZER ENDED
   ============================================ */



/* ============================================
   JPG TO WEBP STARTED
   ============================================ */


/* ============================================
   JPG TO WEBP ENDED
   ============================================ */



/* ============================================
   PNG TO JPG STARTED
   ============================================ */


/* ============================================
   PNG TO JPG ENDED
   ============================================ */



/* ============================================
   PNG TO WEBP STARTED
   ============================================ */


/* ============================================
   PNG TO WEBP ENDED
   ============================================ */



/* ============================================
   RANDOM LIST PICKER STARTED
   ============================================ */


/* ============================================
   RANDOM LIST PICKER ENDED
   ============================================ */



/* ============================================
   RANDOM NUMBER GENERATOR STARTED
   ============================================ */


/* ============================================
   RANDOM NUMBER GENERATOR ENDED
   ============================================ */



/* ============================================
   RANDOM PASSWORD GENERATOR STARTED
   ============================================ */


/* ============================================
   RANDOM PASSWORD GENERATOR ENDED
   ============================================ */



/* ============================================
   SPINWHEEL STARTED
   ============================================ */


/* ============================================
   SPINWHEEL ENDED
   ============================================ */




/* ============================================
   SVG CONVERTER STARTED
   ============================================ */


/* ============================================
   SVG CONVERTER ENDED
   ============================================ */




/* ============================================
   TEAM GENERATOR STARTED
   ============================================ */


/* ============================================
   TEAM GENERATOR ENDED
   ============================================ */




/* ============================================
   TEXT FETCH IMAGE STARTED
   ============================================ */


/* ============================================
   TEXT FETCH IMAGE ENDED
   ============================================ */




/* ============================================
   WEBP TO JPG STARTED
   ============================================ */


/* ============================================
   WEBP TO JPG ENDED
   ============================================ */