/* ====================================
   Custom Properties (CSS Variables)
   ==================================== */
:root {
    /* Luxury Wood Color Palette */
    --color-primary: #3d2b1f;
    /* Deep Brown */
    --color-gold: #d4af37;
    /* Gold Accent */
    --color-cream: #fdf5e6;
    /* Cream Background */
    --color-dark-brown: #2a1810;
    /* Darker Brown */
    --color-light-brown: #8b6f47;
    /* Light Brown */
    --color-white: #ffffff;
    --color-black: #000000;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    --gradient-brown: linear-gradient(135deg, #3d2b1f 0%, #2a1810 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(61, 43, 31, 0.85) 0%, rgba(42, 24, 16, 0.85) 100%);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 15px;

    /* Typography */
    --font-family: 'Cairo', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(61, 43, 31, 0.1);
    --shadow-md: 0 5px 20px rgba(61, 43, 31, 0.15);
    --shadow-lg: 0 10px 40px rgba(61, 43, 31, 0.2);
    --shadow-gold: 0 5px 20px rgba(212, 175, 55, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.5s ease;
}

/* ====================================
   Global Styles & Reset
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    color: var(--color-primary);
    background-color: var(--color-cream);
    line-height: 1.8;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    color: var(--color-primary);
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ====================================
   Testimonials Section
   ==================================== */
.testimonials-section {
    background-image: url('./assets/pattern-bg.png');
    background-color: var(--color-cream);
    background-blend-mode: overlay;
    background-attachment: fixed;
}

.testimonial-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    border-top: 5px solid var(--color-gold);
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--color-light-brown);
    margin-bottom: 25px;
}

.client-info h5 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 5px;
    color: var(--color-primary);
}

.client-info span {
    font-size: 14px;
    color: var(--color-gold);
}

/* ====================================
   Section Utilities
   ==================================== */
.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-gold);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
}

.section-title {
    font-size: 42px;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--color-light-brown);
    max-width: 700px;
    margin: 0 auto;
}

/* ====================================
   Navigation Bar
   ==================================== */
.navbar {
    background: linear-gradient(180deg, rgba(61, 43, 31, 0.95) 0%, rgba(42, 24, 16, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 24px;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-gold) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gold-icon {
    color: var(--color-gold);
    font-size: 28px;
}

.navbar-nav .nav-link {
    color: var(--color-cream) !important;
    font-weight: var(--font-weight-regular);
    padding: 8px 20px !important;
    margin: 0 5px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 20px;
    left: 20px;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-gold) !important;
}

/* Buttons */
.btn-whatsapp {
    background: #25D366;
    color: var(--color-white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: var(--font-weight-bold);
    border: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-primary) !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: var(--font-weight-bold);
    border: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--color-white);
    color: var(--color-white) !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: var(--font-weight-bold);
    transition: var(--transition-fast);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary) !important;
    transform: translateY(-3px);
}

/* ====================================
   Hero Section
   ==================================== */
.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(61, 43, 31, 0.75) 0%, rgba(42, 24, 16, 0.75) 100%),
        url('./assets/new-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-title {
    font-size: 64px;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-gold);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--color-cream);
    font-weight: var(--font-weight-regular);
    margin-bottom: 40px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-fast);
}

.feature-badge:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.feature-badge i {
    font-size: 32px;
    color: var(--color-gold);
}

.feature-badge span {
    color: var(--color-cream);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--color-gold);
    font-size: 32px;
    transition: var(--transition-fast);
}

.scroll-indicator a:hover {
    color: var(--color-white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
}

.about-image-wrapper img {
    transition: var(--transition-smooth);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-gold);
    color: var(--color-primary);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {

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

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

.about-badge i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.about-badge h3 {
    font-size: 42px;
    font-weight: var(--font-weight-extra-bold);
    margin-bottom: 5px;
    line-height: 1;
}

.about-badge p {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.about-text {
    font-size: 18px;
    color: var(--color-light-brown);
    margin-bottom: 20px;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
    border-right: 3px solid var(--color-gold);
}

.feature-item i {
    color: var(--color-gold);
    font-size: 20px;
}

.feature-item span {
    font-weight: var(--font-weight-regular);
    font-size: 16px;
}

/* ====================================
   Services Section
   ==================================== */
.services-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, #f5ebe0 100%);
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-fast);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.service-card.featured {
    background: var(--gradient-brown);
    color: var(--color-cream);
    border-color: var(--color-gold);
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-list li {
    color: var(--color-cream);
}

.service-card.featured .service-icon {
    background: var(--gradient-gold);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--color-gold);
}

.service-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    font-size: 16px;
    color: var(--color-light-brown);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    color: var(--color-light-brown);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--color-gold);
    font-size: 14px;
}

/* ====================================
   Gallery Section
   ==================================== */
.gallery-section {
    background: var(--color-cream);
}

.gallery-filter {
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-light-brown);
    padding: 10px 25px;
    margin: 5px;
    border-radius: 50px;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-overlay h4 {
    color: var(--color-gold);
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.gallery-card:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-overlay p {
    color: var(--color-cream);
    font-size: 16px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition-fast);
    transition-delay: 0.1s;
}

.gallery-card:hover .gallery-overlay p {
    transform: translateY(0);
}

.btn-zoom {
    background: var(--gradient-gold);
    color: var(--color-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    transform: translateY(20px);
    transition-delay: 0.2s;
}

.gallery-card:hover .btn-zoom {
    transform: translateY(0) rotate(360deg);
}

.btn-zoom:hover {
    box-shadow: var(--shadow-gold);
}

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

.contact-info-wrapper {
    background: var(--gradient-brown);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--color-primary);
}

.contact-info-item h4 {
    color: var(--color-gold);
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--color-cream);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-item a:hover {
    color: var(--color-gold);
}

.btn-map {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: var(--font-weight-bold);
    transition: var(--transition-fast);
    display: inline-block;
}

.btn-map:hover {
    background: var(--gradient-gold);
    color: var(--color-primary);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--color-primary);
    transform: translateY(-5px) rotate(360deg);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0d5c7;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 16px;
    transition: var(--transition-fast);
    background: var(--color-cream);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ====================================
   Why Choose Us Section
   ==================================== */
.why-section {
    background: var(--gradient-brown);
    padding: 60px 0;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card i {
    font-size: 48px;
    color: var(--color-gold);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.why-card:hover i {
    transform: scale(1.2);
}

.why-card h4 {
    color: var(--color-gold);
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--color-cream);
    font-size: 14px;
    margin: 0;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--color-dark-brown);
    color: var(--color-cream);
    padding: 60px 0 0;
}

.footer-title {
    color: var(--color-gold);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--color-cream);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--color-primary);
    transform: translateY(-5px) rotate(360deg);
}

.footer-heading {
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: var(--font-weight-bold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-cream);
    font-size: 15px;
    transition: var(--transition-fast);
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-right: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--color-cream);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--color-gold);
    font-size: 16px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--color-cream);
    font-size: 14px;
    opacity: 0.8;
}

/* ====================================
   Floating Elements
   ==================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--color-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-features {
        gap: 20px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .feature-badge {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .gallery-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        font-size: 14px;
        padding: 8px 20px;
    }
}

/* ====================================
   Utility Classes
   ==================================== */
.rounded-custom {
    border-radius: var(--radius-lg);
}

.text-gold {
    color: var(--color-gold);
}

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

.bg-brown {
    background: var(--gradient-brown);
}

.ltr-text {
    direction: ltr;
    display: inline-block;
    unicode-bidi: embed;
    /* Ensures the bidirectional algorithm respects the direction */
}

/* Print Styles */
@media print {

    .navbar,
    .scroll-top,
    .whatsapp-float,
    .scroll-indicator {
        display: none !important;
    }
}