/* =============== GLOBAL ANIMATION (SCROLL-BASED) =============== */
.gallery-item,
.service-card,
.feature,
.step,
.about-text,
.about-img,
.slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* OPTIONAL: Add delay by inline style or custom classes if needed */

/* =============== KEYFRAMES (Legacy Support) =============== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    /* Light Mode Colors */
    --primary: #8b4513;
    --secondary: #d2b48c;
    --accent: #a0522d;
    --light: #f5f5dc;
    --dark: #333;
    --background: #ffffff;
    --text: #333333;
    --card-bg: #f9f9f9;
    --shadow: rgba(0, 0, 0, 0.1);

    /* Transisi */
    --transition: all 0.3s ease;
}

.dark-mode {
    /* Dark Mode Colors */
    --primary: #d2b48c;
    --secondary: #5d4037;
    --accent: #8d6e63;
    --light: #121212;
    --dark: #3344;
    --background: #1e1e1e;
    --text: #f5f5f5;
    --card-bg: #2d2d2d;
    --shadow: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: var(--transition);
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* padding-top: 80px; */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px var(--shadow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background);
    box-shadow: 0 2px 15px var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.menu-toggle {
    font-size: 1.6rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    margin-left: 10px;
    display: none;
}

.dark-mode-toggle {
    font-size: 1.6rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    margin-left: 10px;
    display: block;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 20;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.dark-mode-toggle {
    margin-left: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

/* Hero Section - Slideshow */
.hero {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 800px;
    padding: 40px;
    background-color: rgba(var(--background-rgb), 0.7);
    border-radius: 10px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(5px);
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text);
}

/* Slide backgrounds */
.slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3)),
        url("https://images.unsplash.com/photo-1598300042247-d088f8ab3a91?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
}

.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3)),
        url("https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
}

.slide-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3)),
        url("https://images.unsplash.com/photo-1538688525198-9b88f6f53126?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: white;
    transform: scale(1.3);
}

/* Services Section */
.services {
    background-color: var(--card-bg);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-content p {
    color: var(--text);
    margin-bottom: 20px;
}

.service-content li {
    list-style: none;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    text-align: center;
}

.about-text h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    height: 400px;
    background-image: url("https://images.unsplash.com/photo-1601760561441-16420502c7e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
    background-size: cover;
    background-position: center;
}

/* Consultation Section */
.consultation {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-align: center;
    padding: 100px 0;
}

.consultation h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.consultation p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: white;
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.services-gallery-hero {
    background-image: url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.services-gallery-hero .container {
    z-index: 2;
}

.services-gallery-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.services-gallery-hero p {
    font-size: 1.3rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Services Section */
.services-intro {
    text-align: center;
    padding: 80px 0 50px;
    background-color: var(--card-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.service-card .service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-card .service-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--background);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.pad {
    margin-top: 20px;
}

.gallery-filter {
    background: var(--card-bg);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter.active,
.gallery-filter:hover {
    background: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 5px 15px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h4 {
    margin-bottom: 5px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--card-bg);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 10px 30px var(--shadow);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Additional styles for profile page */
.profile-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1601760561441-16420502c7e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.profile-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.profile-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.profile-section {
    padding: 80px 0;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.profile-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    height: 500px;
    background-size: cover;
    background-position: center;
    background-image: url("https://images.unsplash.com/photo-1601760561441-16420502c7e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
}

.profile-text h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.profile-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.profile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.profile-feature {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
}

.profile-feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-section {
    background-color: var(--card-bg);
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background-color: var(--background);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-info-box h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-detail {
    display: flex;
    margin-bottom: 25px;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--primary);
    min-width: 50px;
}

.contact-detail-content h4 {
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--background);
    color: var(--text);
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.order-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.order-hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.order-hero-content p {
    font-size: 1.3rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 30px;
}

.order-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.order-container {
    max-width: 1000px;
    margin: 0 auto;
}

.order-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.order-steps::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    z-index: 0;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.step-label {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-form {
    background-color: var(--background);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    background-color: var(--background);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.file-upload {
    border: 2px dashed var(--secondary);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload:hover {
    border-color: var(--primary);
    background-color: rgba(139, 69, 19, 0.05);
}

.file-upload i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.file-input {
    display: none;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-prev {
    background-color: var(--secondary);
}

.btn-prev:hover {
    background-color: var(--accent);
}

.order-summary {
    background-color: var(--background);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    margin-top: 40px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-total {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
    color: var(--primary);
}

.confirmation-message {
    text-align: center;
    padding: 50px 0;
}

.confirmation-message i {
    font-size: 5rem;
    color: #25D366;
    margin-bottom: 30px;
}

.confirmation-message h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.progress-bar-wrapper {
    width: 100%;
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background-color: #8b4513;
    width: 0%;
    transition: width 0.3s ease-in-out;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .slide-content {
        margin: 0 auto;
        text-align: center;
        backdrop-filter: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 300px;
    }

    .profile-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .profile-img {
        height: 300px;
    }

    .profile-text {
        text-align: center;
    }

    .pad-2 {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
        /* Adjust for fixed navbar */
    }

    .menu-toggle,
    .dark-mode-toggle {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 99;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links.open {
        max-height: 300px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .services-gallery-hero h1 {
        font-size: 2.5rem;
    }

    .services-gallery-hero p {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .services-gallery-hero h1 {
        font-size: 2.5rem;
    }

    .services-gallery-hero p {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .profile-hero-content h1 {
        font-size: 2.5rem;
    }

    .profile-hero-content p {
        font-size: 1.1rem;
    }

    .order-hero-content h1 {
        font-size: 2.5rem;
    }

    .order-hero-content p {
        font-size: 1.1rem;
    }

    .order-form {
        padding: 25px;
    }

    .order-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .step {
        width: 100%;
        text-align: center;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .step-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .hero {
        height: 70vh;
    }

    .slide-content {
        padding: 20px;
    }

    .services-gallery-hero {
        height: 50vh;
    }

    .services-gallery-hero h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .order-hero {
        height: 40vh;
    }

    .order-hero-content h1 {
        font-size: 2rem;
    }

    .btn-container {
        flex-direction: column;
    }

    .btn-container .btn {
        width: 100%;
    }
}