:root {
    --beige: #F5F5DC;
    --sand: #EAD8B1;
    --wood: #6B4E31;
    --dark-wood: #3D2B1F;
    --white: #ffffff;
    --light-cream: #fdfaf5;
    --bg-color: #F5F2EB;
    --primary-text: #3D2B1F;
    --accent-color: #BFA07A;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--dark-wood);
    overflow-x: hidden;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-beige-light {
    background-color: var(--light-cream);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5000 !important;
    padding: 25px 0;
    transition: 0.4s ease;
    background: transparent;
}

header.header-scrolled {
    background: rgba(245, 245, 220, 0.98);
    padding: 12px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-text h1 {
    font-size: 1.6rem;
    color: var(--dark-wood);
    font-weight: 900;
    line-height: 1;
}

.brand-text h1 span {
    color: var(--wood);
    display: block;
    font-size: 1.1rem;
}

.brand-text small {
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--dark-wood);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-cta {
    background: var(--wood);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--dark-wood);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-accent {
    color: var(--wood);
}

.btn-primary {
    background: var(--wood);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

.btn-outline {
    border: 2px solid var(--wood);
    color: var(--wood);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 900;
    display: inline-block;
    margin: 10px;
    text-decoration: none;
}

/* Location Strip */
.location-strip {
    background: var(--sand);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 900;
    color: var(--dark-wood);
}

.track {
    display: inline-block;
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

.location-strip span {
    margin: 0 25px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.s-card {
    background: white;
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #eee;
}

.s-card:hover {
    transform: translateY(-15px);
    border-color: var(--sand);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.s-icon {
    font-size: 3.5rem;
    color: var(--sand);
    margin-bottom: 25px;
}

/* Custom Masonry Gallery */
.custom-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-rows: 300px;
    margin-top: 50px;
}

.g-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
    cursor: pointer;
}

.g-item:hover img {
    transform: scale(1.1);
}

.g-item.tall {
    grid-row: span 2;
}

/* Floating Buttons */
.fixed-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-wa {
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.btn-call {
    background: var(--sand);
    color: var(--dark-wood);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* Footer */
.main-footer {
    background: var(--dark-wood);
    color: var(--beige);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        z-index: 5000 !important;
        display: flex !important;
        flex-direction: column;
        padding: 100px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .menu-btn {
        display: block;
        font-size: 1.8rem;
        color: var(--dark-wood);
        cursor: pointer;
    }

    .close-menu {
        display: block !important;
        position: absolute;
        top: 30px;
        left: 30px;
        color: var(--wood);
        font-size: 1.8rem;
    }

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

    .custom-gallery {
        grid-auto-rows: 250px;
    }

    .g-item.tall {
        grid-row: span 1;
    }
}

.close-menu {
    display: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-text);
    overflow-x: hidden;
}

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

header {
    padding: 25px 0;
    width: 100%;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
}

.logo-text span {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0.8;
}

.logo-icon-box {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 700;
}

.btn-call-nav {
    background: var(--primary-text);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-text h2 {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 450px;
}

.btn-shop {
    background: var(--accent-color);
    color: white;
    padding: 15px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    display: inline-block;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cities-strip {
    background: #EAE5DB;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.scroll-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
    font-weight: 700;
    opacity: 0.6;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

.cities-strip span {
    margin: 0 25px;
}

.floating-contact {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wa-icon,
.phone-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.wa-icon {
    background: #25d366;
}

.phone-icon {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .desktop-nav {
        display: none;
    }
}


.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

@media (max-width: 768px) {
    .hero-image img {
        height: 300px;
        max-width: 100%;
    }

    .hero {
        height: auto;
        padding-top: 100px;
    }
}

.about-section {
    background-color: var(--white);
    overflow: hidden;
}

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

.about-img-frame {
    position: relative;
    padding-right: 20px;
}

.about-img-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 20px 20px 0px var(--bg-color);
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-text);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.experience-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.experience-box p {
    font-size: 0.8rem;
    margin: 0;
    font-weight: 700;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-text);
}

.badge-gold {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    margin-bottom: 40px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-text);
}

.about-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.btn-primary-about {
    background: var(--primary-text);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary-about:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-list li {
        justify-content: center;
    }

    .about-img-frame {
        padding: 0;
    }

    .about-img-frame img {
        height: 350px;
    }

    .experience-box {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
    }
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    border-bottom: 5px solid var(--accent-color);
    transition: 0.3s;
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-text);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.process-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.2;
    display: block;
    margin-bottom: -30px;
}

.process-step h4 {
    color: var(--primary-text);
    font-weight: 900;
    margin-bottom: 15px;
}

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

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.faq-item h4 {
    color: var(--primary-text);
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.review-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    border-right: 6px solid var(--primary-text);
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
}

.line-center {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto;
    border-radius: 10px;
}

.badge-gold {
    color: var(--accent-color);
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

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


.section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-text);
    margin: 10px 0;
    text-align: center;
}

.badge-gold {
    color: var(--accent-color);
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin: 0 auto 10px auto;
    text-align: center;
}

.line-center {
    width: 70px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0 !important;
    border-radius: 50px;
}


.process-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(191, 160, 122, 0.1);
}

.process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(61, 43, 31, 0.08);
    border-color: var(--accent-color);
}

.step-num {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.1;
    display: block;
    line-height: 1;
    margin-bottom: -40px;
    transition: 0.4s;
}

.process-step:hover .step-num {
    opacity: 0.3;
    transform: scale(1.1);
}

.process-step h4 {
    color: var(--primary-text);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
}

.process-step p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
    }

    .process-step {
        margin-bottom: 20px;
    }
}

.hero-text h2 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-text);
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    position: relative;
}

.floating-btn.whatsapp {
    width: 60px !important;
    height: 60px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25d366;
}

.btn-text {
    font-size: 1rem;
    font-weight: 700;
}

.floating-btn.phone {
    background: var(--accent-color);
    width: 60px;
}

.floating-btn.whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50px;
    z-index: -1;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.main-footer {
    color: #EAE5DB;
    padding: 80px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
}

.footer-col h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #EAE5DB;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-right: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--accent-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-text);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 25px 0;
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.accent-text {
    color: var(--accent-color);
    font-weight: 700;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .flex-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .floating-contact {
        bottom: 20px;
        left: 20px;
    }

    .floating-btn.whatsapp .btn-text {
        display: none;
    }

    .floating-btn.whatsapp {
        width: 60px;
        padding: 0;
    }
}

.main-footer {
    background-color: var(--primary-text);
    color: #EAE5DB;
    padding: 80px 0 120px !important;
    margin-top: 50px;
}

header {
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 4000;
}

@media (max-width: 768px) {

    .nav-wrap {
        padding: 10px 0;
    }

    .menu-btn {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-text);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 5000 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links li {
        width: 100%;
        margin-bottom: 20px;
        text-align: right;
    }

    .close-menu {
        display: block !important;
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 1.8rem;
        color: var(--primary-text);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding-top: 50px;
    }

    .hero-text h2 {
        font-size: 2.8rem !important;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .hero-image img {
        height: 300px;
        max-width: 100%;
    }

    .btn-shop {
        width: 100%;
        padding: 15px;
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4000;
    display: none;
    backdrop-filter: blur(4px);
}

.menu-overlay.active {
    display: block;
}

@media (max-width: 768px) {

    .nav-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px !important;
        width: 100%;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 !important;
    }

    .brand-text h1 {
        font-size: 1.2rem !important;
    }

    .brand-text span {
        font-size: 0.65rem !important;
    }

    .menu-btn {
        margin: 0 !important;
        font-size: 1.6rem;
    }

    .hero-grid {
        padding: 100px 20px 40px !important;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2.5rem !important;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }

    .hero-image img {
        height: 250px !important;
        margin-top: 20px;
    }
}

.fixed-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.close-menu {
    z-index: 5100 !important;
}

.menu-btn {
    display: none !important;
}

.nav-cta {
    background-color: var(--primary-text) !important;
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    border: none;
}

.nav-cta:hover {
    background-color: var(--accent-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .menu-btn {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-text);
    }

    .nav-links .nav-cta {
        margin-top: 20px;
        text-align: center;
        width: 100%;
    }
}