:root {
    --dark-brown: #624a2e; /* Brun du texte du logo */
    --gold: #e4b448; /* Jaune doré du blé */
    --accent1: #c14b3d; /* Rouge/Terre cuite */
    --accent2: #a7a94a; /* Vert des feuilles */
    --off-white: #fcfaf5; /* Blanc cassé très clair pour le fond */
    --light-beige: #fdf8e1; /* Beige clair inspiré du blé */
}

body {
    font-family: "Roboto", sans-serif;
    color: #333;
    background-color: var(--off-white);
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", serif;
    color: var(--dark-brown);
}

/* Navbar */
.navbar {
    background-color: rgba(
        252,
        250,
        245,
        0.95
    ); /* Utilisation de --off-white avec transparence */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 8px 0;
    background-color: rgba(252, 250, 245, 0.98);
}

/* .navbar-brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark-brown) !important;
}

.navbar-brand span {
  color: var(--gold);
} */

.navbar-brand img {
    height: 80px;
    width: 180px;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    color: var(--dark-brown) !important;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    bottom: 30%;
    background-color: rgba(252, 250, 245, 0.9);
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-brown);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.btn-gold {
    background-color: var(--gold);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold:hover {
    background-color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

/* About Section */
.about-section {
    background-color: var(--light-beige);
    position: relative;
}

/* About Story Styling */
.about-story {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    line-height: 1.9;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

/* About Cards (Mission/Vision/Values) */
.about-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border-top: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(228, 180, 72, 0.05) 0%,
        rgba(167, 169, 74, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a438 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 15px rgba(228, 180, 72, 0.3);
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Enhanced Feature Cards */
.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 0.05;
}

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

.feature-icon-wrapper {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.15);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%,
    100% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(1.25);
    }
}

.about-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-card:hover .about-icon {
    color: var(--dark-brown);
}

.feature-card h4 {
    margin-bottom: 10px;
    color: var(--dark-brown);
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Products Section */
.products-section {
    background-color: var(--off-white);
}

.product-showcase {
    margin-top: 30px;
}

.product-image-wrapper {
    position: relative;
    padding: 20px;
    background: linear-gradient(
        135deg,
        rgba(228, 180, 72, 0.05) 0%,
        rgba(167, 169, 74, 0.05) 100%
    );
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.product-image-wrapper:hover {
    transform: scale(1.02);
}

.product-hero-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.product-details {
    padding: 20px;
}

.product-name {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 25px;
    font-weight: 700;
}

/* Product Badges */
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a438 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(228, 180, 72, 0.3);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 180, 72, 0.4);
}

.badge-item i {
    font-size: 1.1rem;
}

/* Product Sections */
.product-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-section:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.section-heading {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.section-heading i {
    color: var(--gold);
    font-size: 1.2rem;
}

.section-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1rem;
}

.ingredients-list {
    font-style: italic;
    color: var(--dark-brown);
    font-weight: 500;
}

/* Legacy Product Card Styles (kept for backward compatibility) */
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: white;
    width: 100%;
}

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

.product-img {
    height: 320px;
    object-fit: cover;
    width: 100%;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
    text-align: center;
}

.card-text {
    text-align: center;
    margin-bottom: 20px;
}

.btn-gold {
    background-color: var(--gold);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #b8941f;
    transform: scale(1.05);
}

/* Animation d'apparition */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

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

/* Délais d'animation pour chaque carte */
.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}
.fade-in:nth-child(5) {
    animation-delay: 0.5s;
}
.fade-in:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive Styles for Product Showcase */
@media (max-width: 991px) {
    .product-name {
        font-size: 2rem;
        text-align: center;
    }

    .product-badges {
        justify-content: center;
    }

    .product-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .product-name {
        font-size: 1.8rem;
    }

    .badge-item {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .section-heading {
        font-size: 1.1rem;
    }

    .section-text {
        font-size: 0.95rem;
    }
}
/* Contact Section */
.contact-section {
    background-color: var(--light-beige);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.contact-form {
    position: relative;
}

/* Loading Overlay */
.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 10;
    animation: fadeIn 0.3s ease;
}

.overlay-content {
    text-align: center;
}

.overlay-content p {
    color: var(--dark-brown);
    font-weight: 500;
    margin: 0;
}

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

/* Floating Label Custom */
.form-floating-custom {
    position: relative;
    min-height: 65px; /* Changed from height to min-height */
}

.form-control-custom {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 28px 20px 10px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    line-height: normal;
}

/* Hide placeholder when not focused to avoid overlap with label */
.form-control-custom::placeholder {
    color: transparent;
}

.form-control-custom:focus {
    background: white;
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(228, 180, 72, 0.15);
    outline: none;
}

/* Show placeholder on focus if needed, usually mostly relying on label */
.form-control-custom:focus::placeholder {
    color: #ccc;
}

.form-control-custom:not(:placeholder-shown),
.form-control-custom:focus {
    padding-top: 32px;
    padding-bottom: 8px;
}

.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    width: auto;
    height: auto;
}

.form-control-custom:focus ~ label,
.form-control-custom:not(:placeholder-shown) ~ label {
    top: 5px;
    font-size: 0.8rem;
    color: var(--gold);
    transform: none;
    font-weight: 500;
}

.form-floating-custom label i {
    font-size: 0.9rem;
}

/* Phone Group Styling */
.input-group .country-select {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group .country-select:focus {
    border-color: var(--gold);
    box-shadow: none;
    outline: none;
}

.phone-input {
    border-left: none;
}

.input-group:focus-within .country-select,
.input-group:focus-within .phone-input {
    border-color: var(--gold);
}

.input-group:focus-within .country-select {
    border-right: 1px solid var(--gold);
}

/* Validation Icons */
.validation-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
}

.validation-icon i {
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Invalid Feedback with Animation */
.invalid-feedback {
    display: block;
    margin-top: 8px;
    font-size: 0.875rem;
    color: #dc3545;
}

.animated.fadeIn {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control-custom.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.form-control-custom.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
}

/* Form Loading State */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Button Loading State */
.btn-gold.loading {
    position: relative;
}

.btn-gold:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-control-custom {
        padding: 18px 15px 6px 15px;
    }

    .form-floating-custom label {
        left: 15px;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--accent1) 0%, #a73b2f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-content {
    color: white;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.newsletter-icon i {
    font-size: 2.5rem;
    color: white;
}

.newsletter-title {
    color: white !important;
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.benefit-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.newsletter-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.newsletter-form-modern {
    position: relative;
}

.input-group-modern {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.input-group-modern .form-floating {
    flex: 1;
    min-width: 250px;
}

.form-control-modern {
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: calc(3.5rem + 2px);
}

.form-control-modern:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(228, 180, 72, 0.25);
    background: white;
}

.form-floating > label {
    color: #666;
    padding-left: 20px;
}

.form-floating > label i {
    color: var(--gold);
}

.btn-subscribe {
    border-radius: 12px;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    min-height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
}

.btn-subscribe:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-subscribe:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-subscribe.loading {
    position: relative;
}

.loading-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-message {
    animation: slideInDown 0.5s ease;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #155724;
    padding: 15px 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map Section */
.map-section {
    background-color: var(--off-white);
}

.location-info-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.info-card-title {
    color: var(--dark-brown);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.info-card-title i {
    color: var(--gold);
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a438 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(228, 180, 72, 0.25);
}

.info-icon i {
    color: white;
    font-size: 1.3rem;
}

.info-content h5 {
    color: var(--dark-brown);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.info-content a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--dark-brown);
    text-decoration: underline;
}

.map-wrapper {
    position: relative;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

.map-container::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent2) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.map-container iframe {
    display: block;
    width: 100%;
}

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

.footer-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: white;
}

.social-icons a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 70px;
        width: 180px;
        object-fit: contain;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .carousel-caption {
        padding: 20px;
    }

    section {
        padding: 60px 0;
    }

    /* About Section Responsive */
    .about-story {
        padding: 25px;
    }

    .about-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .feature-card {
        padding: 20px 15px;
    }

    /* Map Section Responsive */
    .location-info-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .info-card-title {
        font-size: 1.5rem;
    }

    .info-item {
        padding: 15px 0;
    }

    .map-container iframe {
        height: 350px !important;
    }
}

@media (max-width: 576px) {
    .lead-text {
        font-size: 1.05rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.7rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon i {
        font-size: 1.1rem;
    }

    .about-icon {
        font-size: 2.5rem;
    }
}

/* Contact Form Enhancements */
.country-select { max-width: 110px; }
.phone-input { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.contact-message-area { height: 150px; }
.contact-submit-btn { max-width: 300px; }

/* Navbar Auth */
.nav-auth-item { margin-left: 15px; }
.btn-auth-login { border: 2px solid var(--dark-brown); color: var(--dark-brown); padding: 8px 20px; border-radius: 25px; font-weight: 500; transition: all 0.3s; }
.btn-auth-login:hover { background-color: var(--dark-brown); color: white; }
.user-dropdown-toggle { display: flex; align-items: center; color: var(--dark-brown) !important; font-weight: 500; cursor: pointer; }
.user-avatar { width: 35px; height: 35px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-right: 10px; }
.dropdown-menu-custom { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-radius: 12px; padding: 10px; margin-top: 15px; background: #fff; min-width: 220px; }
.dropdown-item-custom { padding: 10px 15px; border-radius: 8px; color: #555; font-weight: 500; transition: all 0.2s; }
.dropdown-item-custom:hover { background-color: var(--light-beige); color: var(--dark-brown); padding-left: 20px; }
.dropdown-item-custom i { color: var(--gold); width: 25px; }
.dropdown-divider { margin: 8px 0; border-top: 1px solid #eee; }
