/* css/style.css - Versión Elegante y Clara */
:root {
    --primary: #8B6B4D;      /* Marrón elegante */
    --primary-light: #B89B7E;  /* Marrón claro */
    --gold: #C5A572;          /* Dorado suave */
    --gold-light: #E5D5B5;    /* Dorado muy claro */
    --cream: #FDF8F2;         /* Crema */
    --white: #FFFFFF;          /* Blanco puro */
    --off-white: #FAF7F2;      /* Blanco roto */
    --gray-light:#4A4A4A /*  #F0F0F0;     /* Gris muy claro */
    --gray:#4A4A4A /*  #E5E5E5;           /* Gris claro */
    --gray-medium:#4A4A4A  /*  #9B9B9B;    /* Gris medio */
    --dark: #4A4A4A;           /* Gris oscuro (no negro) */
    --text: #2C2C2C;           /* Color de texto principal */
    --shadow: rgba(0, 0, 0, 0.05);
    --shadow-hover: rgba(0, 0, 0, 0.1);
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--off-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-light));
    border-radius: 2px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader p {
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.loader-inner {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 20px;
}

.loader-line-wrap {
    animation: spin 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
    box-sizing: border-box;
    height: 50px;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    width: 100px;
}

.loader-line {
    border: 2px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: relative;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap:nth-child(1) { animation-delay: -0.05s; }
.loader-line-wrap:nth-child(2) { animation-delay: -0.1s; }
.loader-line-wrap:nth-child(3) { animation-delay: -0.15s; }
.loader-line-wrap:nth-child(4) { animation-delay: -0.2s; }
.loader-line-wrap:nth-child(5) { animation-delay: -0.25s; }

.loader-line-wrap:nth-child(1) .loader-line {
    border-color: var(--primary);
    height: 90px;
    width: 90px;
    top: 7px;
}
.loader-line-wrap:nth-child(2) .loader-line {
    border-color: var(--gold);
    height: 76px;
    width: 76px;
    top: 14px;
}
.loader-line-wrap:nth-child(3) .loader-line {
    border-color: var(--primary-light);
    height: 62px;
    width: 62px;
    top: 21px;
}
.loader-line-wrap:nth-child(4) .loader-line {
    border-color: var(--gold-light);
    height: 48px;
    width: 48px;
    top: 28px;
}
.loader-line-wrap:nth-child(5) .loader-line {
    border-color: var(--cream);
    height: 34px;
    width: 34px;
    top: 35px;
}

@keyframes spin {
    0%, 15% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 10px;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 30px;
}

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

.dropdown-menu {
    background: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-hover);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 8px 20px;
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--primary);
    padding-left: 25px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
    color: white;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    height: 100vh; /* Altura completa de la ventana */
    position: relative;
    overflow: hidden;
    margin-top: -76px; /* Compensa la altura de la navbar si es fija */
}
.hero-slider {
    height: 100%;
    width: 100%;
}


.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slide {
    height: 100vh; /* Fuerza la altura en cada slide */
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
}


/* Si usas imágenes <img> en lugar de background, usa esto */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%); /* Ajusta opacidad */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: #333; /* Ajusta color de texto según overlay */
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-arrows {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow);
}

.hero-arrows button:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 107, 77, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

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

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

/* About Section */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.about-image img {
    width: 100%;
    transition: transform 0.5s;
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 500;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin: 20px 0;
    line-height: 1.8;
}

.about-feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s;
    margin-bottom: 20px;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.about-feature i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin: 0;
}

/* Services Section */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 107, 77, 0.8) 0%, rgba(197, 165, 114, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-content p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.service-features li {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Gallery Section */
.gallery-filter {
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    margin: 0 5px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-medium);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--primary);
    background: white;
    box-shadow: 0 5px 15px var(--shadow);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 107, 77, 0.9) 0%, rgba(197, 165, 114, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
}

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

.gallery-overlay h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-overlay .btn-outline-light {
    border-color: white;
    color: white;
    padding: 5px 20px;
    font-size: 0.9rem;
}

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

/* Projects Carousel */
.projects-carousel {
    margin: 0 -15px;
}

.project-item {
    padding: 15px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.project-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    color: var(--text);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.project-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--gray-medium);
}

/* Testimonials */
.testimonials-carousel {
    margin: 0 -15px;
}

.testimonial-item {
    padding: 15px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--gold-light);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

#contact, .testimonials {
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--gold-light);
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.client-info p {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin: 0;
    font-style: normal;
}

/* Contact Section */
.contact-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.info-item p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin: 0;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px var(--shadow);
}

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

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: var(--off-white);
}

.form-control:focus {
    border-color: var(--gold);
    outline: none;
    background: white;
    box-shadow: 0 5px 15px var(--shadow);
}

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

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-label a {
    color: var(--primary);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: white;
    padding: 60px 0 20px;
    border-top: 1px solid var(--gray);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

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

.footer p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--gray);
    border-radius: 30px;
    font-size: 0.9rem;
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
    text-align: center;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
    border-bottom: 1px solid var(--gray);
    padding: 20px 30px;
}

.modal-header .modal-title {
    color: var(--primary);
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px;
}

.modal-body img {
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px var(--shadow);
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-arrows,
    .hero-dots {
        bottom: 20px;
    }
    
    .hero-arrows {
        right: 20px;
    }
    
    .hero-dots {
        left: 20px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .filter-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
        margin: 2px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .project-card img {
        height: 300px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease;
}

/* Utility Classes */
.text-gold {
    color: var(--gold) !important;
}

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

.bg-gradient {
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}

.shadow-hover {
    transition: box-shadow 0.3s;
}

.shadow-hover:hover {
    box-shadow: 0 20px 40px var(--shadow-hover) !important;
}
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--cream) !important;
}
/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
}

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

.testimonial-card i {
    font-size: 2rem;
    color: #C5A572;
    opacity: 0.3;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: #C5A572;
    box-shadow: none;
}

.btn-gold {
    background: #C5A572;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #8B6B4D;
    color: white;
    transform: translateY(-2px);
}