:root {
    --ivory: #fdf8f4;
    --porcelain: #fffdfb;
    --nude: #f3d9cf;
    --blush: #e9b7b1;
    --rose: #d99b9a;
    --taupe: #7e6a66;
    --charcoal: #352c2a;
    --shadow: 0 24px 60px rgba(57, 44, 41, 0.12);
    --radius: 28px;
    --radius-sm: 18px;
    --radius-lg: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--charcoal);
    background: var(--ivory);
    overflow-x: clip;
}

.page {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at top left, #fff9f6 0%, #fdf8f4 50%, #f7efe9 100%);
    overflow-x: clip;
    animation: pageReveal 0.9s ease-out both;
}

.page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(217, 155, 154, 0.14) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes pageReveal {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page > * {
    position: relative;
    z-index: 1;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    background: rgba(255, 253, 251, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 155, 154, 0.25);
    z-index: 1000;
    max-width: 100vw;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    width: 150px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(217, 155, 154, 0.3);
    box-shadow: 0 12px 26px rgba(57, 44, 41, 0.12);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text p {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--taupe);
}

.brand-text span {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 26px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.nav-links a {
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rose), var(--blush));
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(217, 155, 154, 0.4);
    display: grid;
    place-items: center;
    color: var(--rose);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--rose);
    color: white;
}

.menu-icon {
    display: none;
    font-size: 26px;
    color: var(--rose);
    cursor: pointer;
}

.btn-primary,
.btn-ghost {
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose), var(--blush));
    color: white;
    box-shadow: 0 12px 30px rgba(217, 155, 154, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 40px rgba(217, 155, 154, 0.45);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(217, 155, 154, 0.6);
    color: var(--rose);
}

.btn-ghost:hover {
    background: rgba(217, 155, 154, 0.15);
    transform: translateY(-1px);
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fffdfb;
    box-shadow: -20px 0 60px rgba(57, 44, 41, 0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1200;
    padding: 90px 30px;
}

.sidebar.open-sidebar {
    transform: translateX(0);
}

.sidebar.close-sidebar {
    transform: translateX(100%);
}

.sidebar .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--rose);
    cursor: pointer;
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-size: 16px;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 40px;
    padding: 120px 6vw 80px;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    line-height: 1.05;
    margin: 20px 0;
}

.hero-logo {
    width: min(260px, 70%);
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(217, 155, 154, 0.3);
    box-shadow: 0 14px 32px rgba(57, 44, 41, 0.12);
    margin-bottom: 18px;
}

.hero-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-copy {
    font-size: 18px;
    color: var(--taupe);
    line-height: 1.8;
    max-width: 520px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 12px;
    color: var(--rose);
}

.hero-actions {
    margin: 28px 0 18px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--taupe);
    justify-content: center;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    padding: 8px 14px;
    border: 1px solid rgba(217, 155, 154, 0.3);
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    justify-self: center;
    padding-top: 24px;
}

.hero-image {
    width: min(420px, 90%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-mini {
    position: absolute;
    right: 4%;
    bottom: 5%;
    width: 160px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 6px solid var(--porcelain);
    box-shadow: 0 20px 40px rgba(57, 44, 41, 0.2);
}

.hero-card {
    position: absolute;
    left: -6%;
    top: 6%;
    background: rgba(255, 255, 255, 0.9);
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    max-width: 240px;
}

.hero-card p {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.8px;
    color: var(--rose);
}

.hero-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin: 6px 0 4px;
}

.hero-card span {
    font-size: 12px;
    color: var(--taupe);
}

section {
    padding: 80px 6vw;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head p {
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 10px;
}

.section-head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.section-subcopy {
    max-width: 640px;
    margin: 16px auto 0;
    color: var(--taupe);
    line-height: 1.7;
    font-size: 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-text p {
    color: var(--taupe);
    line-height: 1.8;
    margin-bottom: 18px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.stat {
    background: white;
    border-radius: var(--radius-sm);
    padding: 22px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(57, 44, 41, 0.1);
}

.stat h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: var(--rose);
}

.stat span {
    font-size: 13px;
    color: var(--taupe);
}

.why-choose {
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.why-card {
    background: #fffdfb;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid rgba(217, 155, 154, 0.2);
    box-shadow: 0 16px 36px rgba(57, 44, 41, 0.1);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 46px rgba(57, 44, 41, 0.16);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: #fffdfb;
    background: #6a5a3f;
    box-shadow: 0 12px 24px rgba(106, 90, 63, 0.25);
    flex-shrink: 0;
}

.why-text h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin-bottom: 6px;
}

.why-text p {
    color: var(--taupe);
    line-height: 1.7;
    font-size: 15px;
}

.portfolio-slider,
.media-slider {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.portfolio-track,
.media-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 6px 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.portfolio-track::-webkit-scrollbar,
.media-track::-webkit-scrollbar {
    height: 8px;
}

.portfolio-track::-webkit-scrollbar-thumb,
.media-track::-webkit-scrollbar-thumb {
    background: rgba(217, 155, 154, 0.55);
    border-radius: 999px;
}

.portfolio-track::-webkit-scrollbar-track,
.media-track::-webkit-scrollbar-track {
    background: rgba(217, 155, 154, 0.15);
    border-radius: 999px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(217, 155, 154, 0.5);
    background: #fffdfb;
    color: var(--rose);
    display: grid;
    place-items: center;
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 30px rgba(57, 44, 41, 0.12);
}

.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(57, 44, 41, 0.18);
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex: 0 0 clamp(220px, 28vw, 320px);
}

.media-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex: 0 0 clamp(260px, 34vw, 420px);
    background: #fffdfb;
}

.media-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.portfolio-card img {
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 44, 42, 0.55);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(57, 44, 41, 0.18);
}

.portfolio-overlay h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: calc(var(--radius) - 8px);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(57, 44, 41, 0.18);
}

.service-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.service-card p {
    color: var(--taupe);
    line-height: 1.6;
}

.service-card span {
    font-size: 13px;
    color: var(--rose);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.course-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(57, 44, 41, 0.18);
}

.course-card.featured {
    border: 1px solid rgba(217, 155, 154, 0.5);
    background: linear-gradient(160deg, #fffdfb, #fdf1ec);
}

.course-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-top h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.course-top span {
    font-size: 12px;
    color: var(--rose);
    letter-spacing: 1px;
}

.course-card p {
    color: var(--taupe);
    line-height: 1.6;
}

.course-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.course-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--taupe);
}

.course-card i {
    color: var(--rose);
}

.course-note {
    margin-top: 26px;
    text-align: center;
    color: var(--taupe);
    font-size: 14px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
}

.review-score {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
}

.review-score h3 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: var(--rose);
}

.review-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--rose);
    font-size: 18px;
}

.review-score p {
    color: var(--taupe);
    font-size: 14px;
}

.review-metrics {
    display: grid;
    gap: 14px;
}

.review-metrics div {
    background: white;
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    box-shadow: 0 12px 30px rgba(57, 44, 41, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--taupe);
}

.review-metrics strong {
    color: var(--rose);
    font-size: 18px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(57, 44, 41, 0.18);
}

.review-card p {
    color: var(--taupe);
    line-height: 1.7;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.reviewer h4 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.reviewer span {
    font-size: 13px;
    color: var(--taupe);
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(57, 44, 41, 0.18);
}

.blog-content {
    padding: 24px;
    display: grid;
    gap: 10px;
}

.blog-content span {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 11px;
    color: var(--rose);
}

.blog-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.blog-content p {
    color: var(--taupe);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.contact-details {
    display: grid;
    gap: 16px;
}

.contact-card {
    background: white;
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: 0 16px 40px rgba(57, 44, 41, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(57, 44, 41, 0.16);
}

.contact-card h4 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--taupe);
    line-height: 1.6;
    font-size: 14px;
}

.contact-form {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
}

.contact-form form {
    display: grid;
    gap: 16px;
}

.contact-info-panels {
    margin-top: 18px;
    display: grid;
    gap: 16px;
}

.contact-panel {
    background: #fffdfb;
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid rgba(217, 155, 154, 0.25);
    box-shadow: 0 10px 26px rgba(57, 44, 41, 0.08);
    display: grid;
    gap: 12px;
}

.contact-panel h4 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.service-quicklinks {
    list-style: none;
    display: grid;
    gap: 6px;
    color: var(--taupe);
}

.service-quicklinks li {
    padding: 2px 0;
    border: none;
    background: transparent;
    box-shadow: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.service-quicklinks li::before {
    content: "•";
    color: var(--rose);
    font-size: 16px;
    line-height: 1;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(217, 155, 154, 0.4);
    display: grid;
    place-items: center;
    color: var(--rose);
    transition: all 0.3s ease;
}

.contact-social-icons a:hover {
    background: var(--rose);
    color: white;
}


.contact-forms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.enquiry-forms {
    margin-top: 10px;
}

.contact-forms h4 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: var(--charcoal);
}

.contact-forms form {
    display: grid;
    gap: 14px;
    background: #fffdfb;
    border-radius: var(--radius-sm);
    padding: 18px;
    border: 1px solid rgba(217, 155, 154, 0.25);
    box-shadow: 0 10px 26px rgba(57, 44, 41, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-forms input,
.contact-forms textarea,
.contact-forms select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(217, 155, 154, 0.4);
    background: #fffdfb;
    font-family: inherit;
}

.contact-forms button {
    width: 100%;
}

.enquiry {
    position: relative;
}

.enquiry-forms {
    margin-top: 12px;
}

.site-footer {
    padding: 40px 6vw 60px;
    text-align: center;
    color: var(--taupe);
    display: grid;
    gap: 18px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
}

.footer-links a {
    color: var(--rose);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.45);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 1500;
}

.lightbox.open {
    display: grid;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 9, 0.7);
    backdrop-filter: blur(4px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    background: #fffdfb;
    border-radius: var(--radius);
    padding: 18px;
    width: min(720px, 90vw);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.lightbox-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.lightbox-caption {
    color: var(--taupe);
    font-size: 14px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--charcoal);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(57, 44, 41, 0.2);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 768px) {
    section {
        padding: 70px 6vw;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .hero-mini,
    .hero-card {
        display: none;
    }
}

@media (max-width: 640px) {
    .service-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

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

    .review-summary {
        grid-template-columns: 1fr;
    }

    .contact-forms {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        display: flex;
        right: max(16px, env(safe-area-inset-right));
        bottom: calc(32px + env(safe-area-inset-bottom));
        left: auto;
        width: 52px;
        height: 52px;
        font-size: 26px;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .portfolio-slider,
    .media-slider {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 520px) {
    .site-header {
        padding: 0 3vw;
    }

    .brand-text p {
        font-size: 14px;
        letter-spacing: 1.2px;
    }

    .brand-text span {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
    }
}
