/* ==========================================
   Design System & Theme Settings
   ========================================== */
:root {
    /* Accent color variables (Pink-Purple Theme) */
    --accent-h: 325;
    --accent-s: 90%;
    --accent-l: 81%;
    --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
    --accent-dark: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) - 15%));
    --accent-light: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) + 12%));
    
    /* Mode colors: Default to Light mode (Warm Pastel) */
    --bg-base: #fef9f6;
    --bg-surface: rgba(255, 255, 255, 0.65);
    --border-color: rgba(255, 255, 255, 0.45);
    --text-primary: #4f4645;
    --text-secondary: #8c7d7b;
    --text-light: #bfaea8;
    --shadow: 0 10px 30px rgba(220, 200, 195, 0.12);
    --shadow-hover: 0 20px 40px rgba(220, 200, 195, 0.22);
    --card-glow: 0 0 25px rgba(240, 160, 210, 0.2);
    --glass-blur: 16px;
    
    /* Global transition timing */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Maru Gothic', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background-color 0.5s ease, color 0.3s ease;
}

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

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

/* ==========================================
   Background Pastel Orbs (Ambient Animations)
   ========================================== */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
    mix-blend-mode: multiply;
    transition: var(--transition), opacity 0.8s ease;
}

[data-theme="dark"] .bg-orb {
    opacity: 0.18;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -50px;
    right: -100px;
    animation: floatOrb1 25s infinite ease-in-out alternate;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #c7d2fe 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
    animation: floatOrb2 30s infinite ease-in-out alternate;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #fbcfe8 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: floatOrb3 20s infinite ease-in-out alternate;
}

@keyframes floatOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 80px) scale(1.15); }
}
@keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(100px, -80px) scale(0.9); }
}
@keyframes floatOrb3 {
    0% { transform: translate(-50px, -50px) scale(0.85); }
    100% { transform: translate(80px, 60px) scale(1.1); }
}

/* ==========================================
   Header & Navigation
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: var(--bg-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

.header-logo {
    width: 170px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo dotlottie-wc {
    width: 170px;
    height: 80px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-dark);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--text-primary);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.btn-nav-contact {
    background: var(--accent);
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 170, 149, 0.25);
    font-weight: 600 !important;
}

.btn-nav-contact::after {
    display: none !important;
}

.btn-nav-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 170, 149, 0.4);
}

/* Mobile Hamburger Menu */
.menu-trigger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-trigger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: var(--transition);
}

/* Morph Hamburger to Close X */
.menu-trigger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}
.menu-trigger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Side Menu Drawer */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: hsla(285, 55%, 95%, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid hsla(285, 50%, 88%, 0.6);
    box-shadow: -10px 0 40px rgba(80, 50, 100, 0.1);
    z-index: 999;
    padding: 120px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition);
}

.side-menu.active {
    transform: translateX(0);
}

.side-menu h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.side-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.side-menu li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
}

.side-menu li a:hover {
    color: var(--accent-dark);
    padding-left: 8px;
}

/* ==========================================
   Loader & Main Display Controller
   ========================================== */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.progress-container {
    width: 200px;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

#progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 10px;
    transition: width 0.2s cubic-bezier(0.1, 0.8, 0.2, 1);
}

#main-content {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    padding-top: 90px;
}

body.loaded #loader-wrapper {
    opacity: 0;
    visibility: hidden;
}

body.loaded #main-content {
    opacity: 1;
}

/* ==========================================
   Global Section Layout Styles
   ========================================== */
section {
    padding: 6rem 8% 6rem 8%;
    position: relative;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-dark);
    margin-bottom: 0.8rem;
    display: inline-block;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: calc(100vh - 90px);
    gap: 3rem;
}

.hero-content {
    flex: 1.1;
    max-width: 550px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 20%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 170, 149, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 170, 149, 0.55);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Organic Morphing Picture Frame (Image fits fully inside) */
.blob-frame {
    width: 380px;
    height: 380px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphBlob 16s infinite ease-in-out alternate;
    border: 6px solid var(--bg-surface);
    background: var(--bg-surface);
    transition: border-color 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-frame img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.blob-frame:hover img {
    transform: scale(1.06);
}

@keyframes morphBlob {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 50% 60% 40% 50% / 40% 60% 50% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* ==========================================
   About Us Section
   ========================================== */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    background: var(--bg-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 4rem 0;
}

.about-image-wrapper {
    flex: 0.8;
}

.about-img {
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 4px solid #fff;
    transition: var(--transition);
}

.about-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ==========================================
   Continuous Horizontal Marquee (Product Slider)
   ========================================== */
.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    background: var(--bg-surface);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-color);
}

.slider-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 32s linear infinite;
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

.slider-set {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.slider-set img {
    width: 240px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid var(--bg-base);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.slider-set img:hover {
    transform: scale(1.06) rotate(1deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

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

/* ==========================================
   Products Grid (Interactive Filtering)
   ========================================== */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 4rem;
}

.filter-tab {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    color: var(--text-primary);
    background: var(--border-color);
}

.filter-tab.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(255, 170, 149, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease,
                scale 0.4s ease;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.product-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

/* Card Badge Tags */
.badge-group {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.card-badge {
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50px;
    color: #4f4645;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.tag-pastel { background: #ffddeb; }
.tag-baby { background: #d0e1fd; }
.tag-keychain { background: #fdf0cc; }
.tag-order { background: #e3dbfd; }

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.card-summary {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

/* Accordion Expander Details button */
.btn-detail-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-dark);
    cursor: pointer;
    padding: 4px 0;
    transition: var(--transition);
}

.btn-detail-toggle:hover {
    color: var(--text-primary);
}

.btn-detail-toggle .chevron-icon {
    transition: transform 0.3s ease;
}

.btn-detail-toggle.active .chevron-icon {
    transform: rotate(180deg);
}

/* Accordion slide animation */
.card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.details-content {
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
}

.details-content p {
    margin-bottom: 0.6rem;
}

.details-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Services Section
   ========================================== */
.service-section {
    background: var(--bg-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 4rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 2rem;
    border-radius: 20px;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.service-img-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 16px;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.service-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ==========================================
   Qualifications Section
   ========================================== */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.qual-card {
    background: var(--bg-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    padding: 2.2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.qual-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.qual-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.qual-detail {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.qual-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.qual-link:hover {
    text-decoration: underline;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: var(--bg-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.contact-card h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.btn-contact-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.btn-instagram {
    background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

.btn-instagram:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(238, 42, 123, 0.35);
}

.btn-googleform {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}

.btn-googleform:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
}

.social-icon {
    width: 22px;
    height: 22px;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    padding: 3rem 5%;
    background: var(--bg-surface);
    backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid var(--border-color);
    text-align: center;
    margin-top: auto;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-light);
}



/* ==========================================
   Scroll Reveal Fade-In Animation Utilities
   ========================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive Breakpoints & Layout Adapters
   ========================================== */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
        gap: 4rem;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-section {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 450px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 6% 4rem 6%;
    }
    
    .site-header {
        height: 75px;
    }
    
    #main-content {
        padding-top: 75px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .menu-trigger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-br {
        display: none;
    }
    
    .blob-frame {
        width: 300px;
        height: 300px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }
    
    .contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .btn-contact-action {
        width: 100%;
        justify-content: center;
    }
}

