/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: #2c2c2c;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

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

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    font-size: 16px;
}

.navbar {
    background: #fff;
    padding: 8px 0;
}

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

.logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #B8860B;
    background: transparent;
    border-bottom-color: #8B4513;
}



.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 45vh;
    background: linear-gradient(rgba(54,53,99,0.8), rgba(54,53,99,0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="%23363563"/><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 120px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #800020;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #800020, #A0002A);
}

.section-title::before {
    left: -120px;
}

.section-title::after {
    right: -120px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text p {
    margin-bottom: 25px;
}

.about-text strong {
    color: #800020;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

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

.faq-image {
    position: relative;
}

.faq-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-items {
    max-width: 600px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    letter-spacing: 0.5px;
}

.faq-question:hover {
    background: #800020;
}

.faq-answer {
    padding: 0 20px;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #800020, #A0002A);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" fill="%23ffffff" opacity="0.05">✦</text></svg>') repeat;
    background-size: 100px 100px;
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.how-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: #fff;
    color: #800020;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.how-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.how-text strong {
    font-weight: 600;
}

.how-image {
    position: relative;
}

.how-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.process-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.point {
    position: absolute;
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 15px;
    border-radius: 10px;
    max-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 12px;
}

.point h4 {
    color: #800020;
    margin-bottom: 8px;
    font-size: 14px;
}

.point-1 { top: 10%; right: -50px; }
.point-2 { top: 30%; left: -50px; }
.point-3 { bottom: 40%; right: -50px; }
.point-4 { bottom: 10%; left: -50px; }

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: #F7F3E7;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #32CD32, #228B22);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #800020, #A0002A);
    text-align: center;
}

.newsletter-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    background: #5C0016;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #400011;
}

/* Footer */
.footer {
    background: #F7F3E7;
    color: #333;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    color: #666;
}

.footer-links h4 {
    color: #800020;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #800020;
}

.footer-quote {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.footer-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #800020;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .faq-content,
    .how-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .point {
        position: static;
        margin: 10px 0;
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .how-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}


/* Home Page Styles */
.hero-home {
    padding: 40px 0;
    background: #f5f5f5;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

/* Hero Full Width */
.hero-home-fullwidth {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('assets/images/hero-woman.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 100px;
    position: relative;
}

.hero-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-quote-center {
    text-align: left;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
}

.hero-quote-center blockquote {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    font-style: normal;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    font-family: Georgia, serif;
    position: relative;
    text-align: left;
    max-width: none;
    margin: 0;
    padding-left: 80px;
}

.hero-quote-center blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 140px;
    font-family: Georgia, serif;
    font-style: italic;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    line-height: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 300px;
}

.hero-quote {
    flex: 1;
}

.hero-quote blockquote {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    font-style: italic;
    line-height: 1.2;
}

.home-sections {
    padding: 80px 0;
    background: #fff;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.home-section {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.home-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.home-section p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.section-btn {
    display: inline-block;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-red { background: #800020; }
.btn-green { background: #228B22; }
.btn-blue { background: #363563; }
.btn-orange { background: #FF8C00; }

.section-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.statistics-section {
    padding: 80px 0;
    background: #f0f0f0;
    text-align: center;
}

.stats-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.stats-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
}

.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

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

.testimonial blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 1.2rem;
    font-weight: 600;
    color: #800020;
}

/* Hero Sections for Other Pages */
.hero-about, .hero-services, .hero-blog, .hero-contact {
    height: 30vh;
    background: linear-gradient(rgba(54,53,99,0.8), rgba(54,53,99,0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="%23363563"/><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 100px;
}

.hero-about h1, .hero-services h1, .hero-blog h1, .hero-contact h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: #fff;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #333;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.about-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.about-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.3rem;
    color: #800020;
    margin-bottom: 30px;
}

.about-text p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.contact-form-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn {
    background: #800020;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #600018;
}

/* Services Page Styles */
.services-grid-section {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 30px 20px 20px;
}

.service-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.detailed-services {
    padding: 80px 0;
    background: #f5f5f5;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: #800020;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Blog Page Styles */
.breadcrumb {
    margin-top: 20px;
    color: #ccc;
}

.breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.blog-posts {
    padding: 80px 0;
    background: #fff;
}

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

.blog-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-date {
    color: #999;
    font-size: 0.9rem;
}

.post-title {
    font-size: 1.3rem;
    color: #333;
    margin: 15px 0;
    line-height: 1.4;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #800020;
    text-decoration: none;
    font-weight: 600;
}

.pagination {
    text-align: center;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: #800020;
    color: #fff;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: #fff;
}

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

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
}

.contact-form-detailed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input-red { border-left: 4px solid #DC143C; }
.form-input-green { border-left: 4px solid #32CD32; }
.form-input-blue { border-left: 4px solid #4169E1; }
.form-input-orange { border-left: 4px solid #FF8C00; }

.form-textarea {
    border-left: 4px solid #666;
    resize: vertical;
}

.contact-submit-btn {
    background: #800020;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-submit-btn:hover {
    background: #600018;
}

.contact-details {
    margin: 30px 0;
}

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

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-text a {
    color: #800020;
    text-decoration: none;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    color: #333;
    margin-bottom: 20px;
}

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

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: #800020;
    color: #fff;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .sections-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}


/* Social Icons Custom Styling */
.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon-img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}


/* Modern Contact Form Styling */
.contact-form-detailed .form-group {
    margin-bottom: 25px;
}

.contact-form-detailed label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.form-input-modern,
.form-textarea-modern {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #f5f5f5;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.form-input-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    background-color: #ebebeb;
}

.form-textarea-modern {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-submit-btn {
    background-color: #c8a882;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-submit-btn:hover {
    background-color: #b8986f;
}


/* Black Submit Button */
.contact-submit-btn-black {
    background-color: #333;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
    min-width: 120px;
}

.contact-submit-btn-black:hover {
    background-color: #222;
}

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 20px 0;
}

/* Form Group Spacing */
.contact-form-detailed .form-group:last-of-type {
    margin-bottom: 20px;
}

