*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --terra-500: #C0603A;
    --terra-600: #A34C2D;
    --terra-700: #863B24;
    --sand-100: #FAF6EC;
    --sand-200: #F4ECD4;
    --cream: #FDF8F0;
    --bark: #3D1F10;
    --sidebar-width: 260px;
    --sidebar-width-collapsed: 80px;
}

body {
    margin: 0;
    min-height: 100vh;
}

/* ─── Sidebar Navigation ─── */
.sidenav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, #3D1F10 0%, #5A291D 100%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
}

.sidenav-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidenav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #FDF8F0;
    margin-bottom: 0.5rem;
}

.sidenav-logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.3;
}

.sidenav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidenav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.875rem;
    border-radius: 12px;
    color: rgba(253, 248, 240, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.sidenav-link:hover,
.sidenav-link.active {
    color: #FDF8F0;
    background: rgba(192, 96, 58, 0.3);
}

.sidenav-link.active {
    background: rgba(192, 96, 58, 0.45);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.sidenav-link svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.sidenav-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(253, 248, 240, 0.12);
}

.sidenav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(253, 248, 240, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.2s;
}

.sidenav-phone:hover {
    color: #F7CBB3;
}

/* ─── Mobile Header ─── */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(61, 31, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 1rem;
}

.mobile-header-inner {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #FDF8F0;
    text-decoration: none;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.95rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FDF8F0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    background: rgba(61, 31, 16, 0.98);
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    color: rgba(253, 248, 240, 0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.2s;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: #FDF8F0;
    background: rgba(192, 96, 58, 0.3);
}

.mobile-menu-contact {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(192, 96, 58, 0.15);
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 2;
}

.mobile-menu-contact a {
    color: #F7CBB3;
    text-decoration: none;
}

/* ─── Main Content ─── */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ─── Section shared ─── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 96, 58, 0.1);
    color: var(--terra-500);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--bark);
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6B4226;
    max-width: 560px;
}

.text-terra-500 {
    color: var(--terra-500);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #C0603A 0%, #A34C2D 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(192, 96, 58, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 96, 58, 0.45);
}

.btn-secondary {
    background: rgba(192, 96, 58, 0.1);
    color: var(--terra-600);
    border: 2px solid rgba(192, 96, 58, 0.25);
}

.btn-secondary:hover {
    background: rgba(192, 96, 58, 0.18);
    border-color: var(--terra-500);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── Hero ─── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, #FBE5D9 50%, #F7CBB3 100%);
    padding-top: 2rem;
    padding-bottom: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(192, 96, 58, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212, 175, 96, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.container-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 96, 58, 0.12);
    color: var(--terra-600);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    color: var(--bark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #6B4226;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--terra-500);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #863B24;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(192, 96, 58, 0.25);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(61, 31, 16, 0.2);
}

.hero-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, transparent 50%, rgba(61, 31, 16, 0.3) 100%);
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bark);
    z-index: 2;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

/* ─── About ─── */
.about-section {
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(61, 31, 16, 0.15);
}

.about-img-main img {
    display: block;
    width: 100%;
    height: auto;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(61, 31, 16, 0.2);
    border: 5px solid var(--cream);
}

.about-img-secondary img {
    display: block;
    width: 100%;
    height: auto;
}

.about-exp-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(135deg, #C0603A, #A34C2D);
    color: #fff;
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(192, 96, 58, 0.4);
}

.about-exp-number {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.about-exp-text {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6B4226;
    margin-bottom: 1.25rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(192, 96, 58, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature strong {
    display: block;
    color: var(--bark);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.about-feature p {
    font-size: 0.88rem;
    color: #863B24;
    line-height: 1.5;
    margin: 0;
}

/* ─── Products ─── */
.products-section {
    background: linear-gradient(180deg, var(--cream) 0%, #FBE5D9 100%);
}

.section-header {
    margin-bottom: 3.5rem;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 31, 16, 0.08);
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(61, 31, 16, 0.15);
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #C0603A, #A34C2D);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.product-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.product-info h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--bark);
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #863B24;
    margin: 0;
}

/* ─── Services ─── */
.services-section {
    background: var(--cream);
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(192, 96, 58, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-item:hover .service-icon {
    background: var(--terra-500);
}

.service-item:hover .service-icon svg {
    stroke: #fff;
}

.service-item h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    color: var(--bark);
    margin-bottom: 0.3rem;
}

.service-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #863B24;
    margin: 0;
}

.services-visual {
    position: relative;
}

.services-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(61, 31, 16, 0.15);
}

.services-img-main img {
    display: block;
    width: 100%;
    height: auto;
}

.services-quote {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: linear-gradient(135deg, #C0603A, #A34C2D);
    color: #fff;
    border-radius: 20px;
    padding: 1.75rem 2rem;
    max-width: 320px;
    box-shadow: 0 15px 40px rgba(192, 96, 58, 0.4);
}

.services-quote p {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.5;
    font-style: italic;
    margin: 0.75rem 0 0.5rem;
}

.services-quote span {
    font-size: 0.8rem;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    opacity: 0.8;
}

/* ─── Schedule ─── */
.schedule-section {
    background: linear-gradient(135deg, #3D1F10 0%, #5A291D 100%);
    padding: 5rem 2rem;
}

.schedule-card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.schedule-content .section-tag {
    background: rgba(192, 96, 58, 0.25);
    color: #F7CBB3;
}

.schedule-content .section-title {
    color: #FDF8F0;
}

.schedule-content .section-subtitle {
    color: rgba(253, 248, 240, 0.7);
}

.schedule-table-wrapper {
    background: rgba(253, 248, 240, 0.07);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(253, 248, 240, 0.1);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: rgba(192, 96, 58, 0.3);
    color: #F7CBB3;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.5rem;
    text-align: left;
}

.schedule-table td {
    padding: 0.875rem 1.5rem;
    color: rgba(253, 248, 240, 0.85);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(253, 248, 240, 0.06);
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tr:hover td {
    background: rgba(192, 96, 58, 0.1);
}

.schedule-time {
    font-weight: 700;
    color: #FDF8F0;
}

.schedule-closed {
    background: rgba(192, 96, 58, 0.2);
    color: #F7CBB3;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
}

/* ─── Contact ─── */
.contact-section {
    background: linear-gradient(180deg, #FBE5D9 0%, var(--cream) 100%);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(192, 96, 58, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail strong {
    display: block;
    color: var(--bark);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-detail p {
    margin: 0;
    font-size: 0.9rem;
    color: #863B24;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--terra-500);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: var(--terra-700);
    text-decoration: underline;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(61, 31, 16, 0.1);
}

.contact-form-card h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--bark);
    margin-bottom: 0.5rem;
}

.form-hint {
    font-size: 0.9rem;
    color: #863B24;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--bark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(192, 96, 58, 0.15);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--bark);
    background: var(--sand-50);
    transition: all 0.25s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terra-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #C4974A;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    margin-bottom: 1rem;
}

.form-success h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--bark);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #863B24;
    font-size: 0.95rem;
}

/* ─── Map ─── */
.map-section {
    background: var(--bark);
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 350px;
    filter: grayscale(30%) contrast(1.05);
}

/* ─── Footer ─── */
.footer {
    background: #2A1508;
    color: rgba(253, 248, 240, 0.6);
    padding: 4rem 2rem 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FDF8F0;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.3;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer h4 {
    color: #FDF8F0;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer ul li svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.footer ul a {
    color: rgba(253, 248, 240, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer ul a:hover {
    color: #F7CBB3;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 248, 240, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}

/* ─── Animations ─── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 200px;
    }

    .container-hero,
    .about-grid,
    .services-grid,
    .contact-grid,
    .schedule-card {
        gap: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidenav {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding-top: 60px;
    }

    .section {
        padding: 4rem 1.25rem;
    }

    .container-hero {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.25rem 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
    }

    .about-grid,
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-secondary {
        right: 0;
        bottom: -30px;
    }

    .services-quote {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .schedule-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .schedule-content .section-subtitle {
        margin: 0 auto;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-card {
        padding: 1.5rem;
    }
}
