/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #1a2526;
    padding: 1rem 0;
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37 !important;
}
.nav-link {
    color: #fff !important;
    font-weight: 400;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: #d4af37 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/mine-photo.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    color: #fff;
}
.hero-img {
    max-width: 50%;
    border-radius: 10px;
    margin: 2rem auto;
}
.animate-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    animation: fadeIn 2s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.blockquote {
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}
.blockquote-footer {
    color: #d4af37;
}

/* Section Styles */
.section-preview, .mistakes-section, .myths-section, .priority-section, .segments-section, .consultation-section, .segments-solutions, .testimonials-section {
    padding: 4rem 0;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a2526;
}
.section-img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Cards */
.modern-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.modern-card:hover {
    transform: translateY(-5px);
}
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1a2526;
}
.classic-card {
    background: #fff;
    padding: 2rem;
    border-left: 4px solid #d4af37;
    border-radius: 5px;
}
.classic-list {
    list-style-type: square;
    padding-left: 1.5rem;
}
.myth-card .card-title {
    color: #d4af37;
}

/* Buttons */
.btn-primary {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #1a2526;
    font-weight: 700;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #b8962e;
    border-color: #b8962e;
    color: #fff;
}

/* Segments Scroller */
.segments-scroller {
    overflow: hidden;
    white-space: nowrap;
}
.segments-list {
    display: inline-block;
    animation: scroll 20s linear infinite;
}
.segments-list span {
    display: inline-block;
    margin: 0 2rem;
    font-weight: 700;
    color: #d4af37;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Form */
.modern-input {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 0.75rem;
}

/* Footer */
.classic-footer {
    /*background-color: #1a2526;*/
    font-family: 'Georgia', serif;
}
.text-gold {
    color: #d4af37 !important;
}
.footer-link {
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #d4af37 !important;
    text-decoration: underline;
}
.footer-menu li {
    margin-bottom: 8px;
}
.social-link {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.social-link:hover {
    color: #d4af37 !important;
}
.border-gold {
    border-color: #d4af37 !important;
}
.footer-quote {
    font-size: 1rem;
}

/* Add to existing styles.css */

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
}
.map-section iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

/* Achievements Section */
.achievements-section {
    padding: 4rem 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}