@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #E66B32;
    /* Rundzee Orange */
    --secondary-color: #FFFDF9;
    /* Warm Cream Background */
    --accent-color: #0EAE4E;
    /* Green (from Rundzee theme) */
    --text-dark: #2D3436;
    /* Charcoal */
    --text-light: #636E72;
    /* Grey text */
    --white-color: #FFFFFF;

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft diffuse shadow */
    --shadow-hover: 0 15px 45px rgba(230, 107, 50, 0.15);
    /* Orange tinted shadow */

    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-pill: 50px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1240px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

.logo img {
    width: 200px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.hamburger {
    display: none;
    /* Hidden by default on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    /* Use dark text color for visibility */
    margin: 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(230, 107, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background-color: #d65a25;
    /* Darker orange */
}

.btn-secondary {
    background-color: var(--text-dark);
    color: var(--white-color);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ===== HEADER ===== */
header {
    background-color: var(--white-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    /* Smaller, cleaner logo */
    width: auto;
}

.nav-links li {
    margin-left: 0;
    /* Reset margin, controlled by gap in parent */
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    display: none;
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
    padding: 10px 25px;
    border-radius: var(--radius-pill);
    font-weight: 600 !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: #d65a25;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(230, 107, 50, 0.3);
}

.hamburger {
    display: none;
    /* Force hidden on desktop */
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 80px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    /* Cream bg */
    overflow: visible;
    /* Allow images to pop out */
}

/* Remove old pseudo elements */
.hero::before,
.hero::after {
    display: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

/* Hero Image Side */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transform: rotate(2deg);
    /* Slight playful tilt */
    transition: var(--transition);
}

.hero-image-wrapper:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* Decorative circle behind image */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    background-color: rgba(230, 107, 50, 0.05);
    /* Very light orange */
    border-radius: 50%;
    z-index: -1;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white-color);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(211, 84, 0, 0.1);
    /* Light Primary */
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
    background-image: var(--pattern-bg);
    background-size: var(--pattern-size);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    /* Cream color for contrast */
    margin-bottom: 5px;
}

/* ... existing stats styles ... */

/* ===== REFERRAL BANNER ===== */
.referral-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.referral-banner::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 107, 50, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.referral-banner .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.referral-content {
    text-align: left;
}

.referral-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(14, 174, 78, 0.1);
    color: var(--accent-color);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.referral-banner h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.referral-banner p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.referral-cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.referral-banner .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 20px;
}

.referral-bonus-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--accent-color);
}

.referral-bonus-tag i {
    font-size: 1.2rem;
}

.referral-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.referral-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.referral-image-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(14, 174, 78, 0.05) 0%, transparent 70%);
    z-index: -1;
}

@media (max-width: 992px) {
    .referral-banner .container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
        text-align: center;
    }

    .referral-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .referral-banner h2 {
        font-size: 2.5rem;
    }

    .referral-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .referral-banner .btn {
        width: 100%;
    }
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(230, 107, 50, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background-color: rgba(230, 107, 50, 0.1);
    /* Circle bg */
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
    /* Pushes button down */
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 100px 0;
    background-color: var(--light-color);
    border-top: 5px solid var(--primary-color);
    border-bottom: 5px solid var(--secondary-color);
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-content h2::after {
    left: 0;
    transform: none;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background-color: var(--white-color);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
}

/* ===== FAQ SECTION ===== */
.faq-preview {
    padding: 80px 0;
    background-color: var(--secondary-color);
    /* Light cream/orange tint */
}

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

.faq-item {
    background-color: var(--white-color);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    /* Add bottom padding when open */
    max-height: 200px;
    /* Approximate max height */
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    min-width: 350px;
    flex: 1;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.cta-section h2 {
    color: var(--white-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 100px 0;
    /* Taller */
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(20, 90, 50, 0.8), rgba(20, 90, 50, 0.8)), url('../images/hero-bg.jpg');
    /* Use Secondary color overlay */
    background-size: cover;
    background-position: center;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(-45deg,
            var(--accent-color),
            var(--accent-color) 10px,
            var(--white-color) 10px,
            var(--white-color) 20px);
}

.page-banner h1 {
    color: var(--white-color);
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

/* ===== SERVICES FULL PAGE ===== */
.services-full {
    padding: 80px 0;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    /* Masonry-like grid */
    gap: 30px;
}

.service-item {
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    align-items: center;
    /* Center align */
    text-align: center;
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Full height */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-item .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 0;
    margin-bottom: 25px;
    min-width: auto;
    width: 80px;
    height: 80px;
    background-color: rgba(211, 84, 0, 0.1);
    /* Light primary bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.custom-services {
    margin-top: 50px;
    text-align: center;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.custom-services h3 {
    margin-bottom: 15px;
}

.custom-services p {
    margin-bottom: 20px;
}

/* ===== ABOUT FULL PAGE ===== */
.about-full {
    padding: 80px 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-main-image {
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
}

.values-section {
    margin-bottom: 80px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

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

.info-card {
    display: flex;
    align-items: flex-start;
    background: var(--light-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.info-content h3 {
    margin-bottom: 5px;
}

.form-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-card h2 {
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 40px 0 80px;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 80px 0 20px;
    background-image: linear-gradient(rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.95)), var(--pattern-bg);
    background-size: var(--pattern-size);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--white-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--accent-color);
}

.footer-contact p,
.footer-links li {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

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

.footer-social h3 {
    color: var(--white-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {

    .about-preview .container,
    .about-full .container,
    .contact-section .container {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        /* Show hamburger on mobile */
        z-index: 1001;
        /* Ensure above nav */
    }

    .hamburger span {
        background-color: var(--text-dark);
        /* Ensure visible against white header */
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .hero {
        padding: 40px 0;
        min-height: auto;
        text-align: center;
        /* Center text on mobile */
    }

    .hero .container {
        grid-template-columns: 1fr;
        /* Stack visually */
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        order: 1;
        /* Text comes first or second? Let's put text 1st as per standard */
    }

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

    .hero-image-wrapper {
        order: 2;
        /* Image below text */
        margin-top: 20px;
    }

    .hero-image-wrapper img {
        max-width: 80%;
        /* Don't be too huge */
        transform: rotate(0deg);
        /* No tilt on mobile */
    }

    /* About Section Mobile */
    .about-preview .container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        /* Show image top on mobile? or bottom. defaulting to bottom (normal flow) is ok usually, but user said disappearing. */
        margin-bottom: 30px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        /* Limit height so it doesn't take up whole screen */
        object-fit: cover;
    }

    /* Ensure other grids stack */
    .about-content-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        margin-top: 20px;
        display: inline-block;
    }

    /* Footer adjustments for mobile */
    .footer-content {
        grid-template-columns: 1fr;
        /* Stack footer columns on mobile */
        text-align: center;
        gap: 30px;
    }

    .footer-contact i {
        margin-bottom: 5px;
        display: block;
        /* Stack icon above text if needed */
    }
}

.hamburger {
    display: flex;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero h1 {
    font-size: 2.2rem;
}

.section-title {
    font-size: 1.8rem;
}

.testimonial-slider {
    flex-direction: column;
}

.testimonial-card {
    min-width: auto;
}

@media (max-width: 576px) {
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-item .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

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