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

:root {
    --primary: #0223c8;
    --primary-dark: #021ca0;
    --dark: #212121;
    --light: #ffffff;
    --gray: #d3d3d3;
    --text: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--dark);
    z-index: 1000;
}

.nav-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0.5rem 1rem;
}

.shop-btn {
    background: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.shop-btn:hover {
    background: var(--primary-dark);
    color: var(--light) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    padding: 0 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: var(--light);
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-content .tagline {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: var(--light);
    color: var(--primary);
}

/* Bio */
.bio {
    padding: 6rem 0;
    background: var(--light);
}

.bio h2, .services h2, .testimonials h2, .contact h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

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

.bio-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Services */
.services {
    padding: 6rem 0;
    background: var(--gray);
}

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

.service-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--primary);
}

.testimonials h2 {
    color: var(--light);
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.testimonial-card .quote {
    font-size: 1.4rem;
    color: var(--light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-card .author {
    color: var(--light);
    font-weight: 500;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: var(--light);
    text-align: center;
}

.contact > .container > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--light);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 2rem 5%;
    text-align: center;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    margin-left: 1rem;
}

footer a:hover {
    color: var(--light);
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        padding-left: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Page Hero */
.page-hero {
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 70px;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
}

/* Intro Section */
.intro, .service-intro {
    padding: 4rem 0;
    background: var(--light);
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Cards with Images */
.service-card {
    text-decoration: none;
    display: block;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Gallery */
.gallery-section {
    padding: 4rem 0;
    background: var(--light);
}

.gallery-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.gallery-section h2:first-of-type {
    margin-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item p {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--text);
}

/* Bio Content */
.bio-content {
    padding: 4rem 0;
}

.bio-text {
    max-width: 800px;
    margin: 0 auto;
}

.bio-text h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 2rem;
}

.bio-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Testimonials Page */
.testimonials-page {
    padding: 4rem 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonials-page .testimonial-card {
    background: white;
    max-width: none;
    text-align: left;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--gray);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 2rem;
}

/* Testimonial Highlight */
.testimonial-highlight {
    padding: 4rem 0;
    background: var(--primary);
    text-align: center;
}

.testimonial-highlight .testimonial-card {
    margin-bottom: 2rem;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--light);
}

.cta-btn.secondary:hover {
    background: var(--light);
    color: var(--primary);
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary);
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 250px;
    }
    .page-hero .hero-content h1 {
        font-size: 2rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Page - Black Text */
.testimonials-page .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonials-page .testimonial-card .quote {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonials-page .testimonial-card .author {
    color: #333;
    font-weight: 600;
    margin-top: 1rem;
}

.testimonials-page .stars {
    color: #ffc107;
}

/* Hero Image Mobile Fix */
.hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero {
        background-size: cover;
        background-position: center top;
        min-height: 100vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Trust Signals */
.trust-signals {
    background: var(--dark);
    padding: 1rem 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    color: var(--light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item span {
    color: #ccc;
}

/* Why Choose / Benefits */
.why-choose {
    padding: 4rem 0;
    background: var(--light);
}

.why-choose h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.benefit h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit a {
    color: var(--primary);
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: var(--gray);
}

.faq h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item a {
    color: var(--primary);
}

/* Testimonial stars */
.testimonial-highlight .stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* Footer enhancements */
footer .container {
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f5f5f5;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs span {
    color: #666;
}

/* Theme List */
.theme-list {
    columns: 2;
    margin: 1rem 0 2rem;
    padding-left: 1.5rem;
}

.theme-list li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-page {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-methods h2,
.contact-form-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1da851;
}

.email-btn {
    background: var(--primary);
    color: white;
}

.email-btn:hover {
    background: var(--primary-dark);
}

.phone-btn {
    background: var(--dark);
    color: white;
}

.phone-btn:hover {
    background: #333;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-links-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.location-info {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: var(--gray);
    border-radius: 8px;
}

.location-info h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Hero text overlay fade */
.hero .hero-content {
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 70%);
    padding: 4rem;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero .hero-content {
        background: radial-gradient(ellipse at center, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 60%, transparent 80%);
        padding: 2rem;
    }
}

/* CTA Buttons row */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Secondary button - white background */
.cta-btn.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-btn.secondary:hover {
    background: var(--primary);
    color: white;
}

/* Bio grid with image */
.bio-grid-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .bio-grid-with-image {
        grid-template-columns: 1fr;
    }
}

.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bio-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.bio-text li {
    margin-bottom: 0.5rem;
}

/* Review Summary */
.review-summary {
    padding: 3rem 0;
    background: var(--light);
    text-align: center;
}

.rating-box {
    display: inline-block;
    background: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.big-rating {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.stars-big {
    font-size: 2rem;
    color: #ffc107;
    margin: 0.5rem 0;
}

.rating-box p {
    color: #666;
    margin-bottom: 1rem;
}

.google-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.google-link:hover {
    text-decoration: underline;
}

/* Review source tag */
.review-source {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 1rem;
}

.more-reviews {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

.more-reviews a {
    color: var(--primary);
}

/* Testimonials page heading */
.testimonials-page h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Testimonial highlight heading white */
.testimonial-highlight h2 {
    color: white;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.footer-socials a {
    color: white;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-socials svg {
    width: 22px;
    height: 22px;
}

.footer-location {
    color: #999;
    font-size: 0.9rem;
}

/* Intro Section Enhanced */
.intro {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

.intro .container {
    max-width: 900px;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 1rem;
}

.intro strong {
    color: var(--primary);
    font-weight: 600;
}

.intro a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s;
}

.intro a:hover {
    background: var(--primary);
    color: white;
    padding: 0 4px;
}

@media (max-width: 768px) {
    .intro h2 {
        font-size: 1.8rem;
    }
    .intro-text, .intro p {
        font-size: 1rem;
        text-align: left;
    }
}

/* Global Link Styling - Remove default blue/purple */
a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:visited {
    color: var(--primary);
}

a:hover {
    color: var(--primary-dark);
}

/* Content links (in paragraphs) */
p a, li a, .bio-text a, .faq-item a, .benefit a {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1px;
}

p a:hover, li a:hover, .bio-text a:hover, .faq-item a:hover, .benefit a:hover {
    background: var(--primary);
    color: white;
    padding: 0 4px;
    border-radius: 2px;
}

p a:visited, li a:visited {
    color: var(--primary);
}

/* Nav links already styled - ensure no purple */
.nav-links a:visited {
    color: var(--light);
}

.nav-links a.active:visited {
    color: var(--primary);
}

/* Footer links */
footer a {
    color: var(--primary);
}

footer a:visited {
    color: var(--primary);
}

footer a:hover {
    color: white;
}

/* CTA buttons - ensure no visited purple */
.cta-btn:visited {
    color: white;
}

.cta-btn.secondary:visited {
    color: var(--primary);
}

/* Service cards */
.service-card:visited h3 {
    color: var(--primary);
}

/* Social links */
.social-icon:visited {
    color: var(--primary);
}

/* Bio Page Fixes */
.bio-content {
    padding: 4rem 0;
    background: var(--light);
}

.bio-content .container {
    max-width: 1100px;
}

.bio-grid-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bio-image {
    position: sticky;
    top: 100px;
}

.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.bio-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.25rem;
}

.bio-text strong {
    color: var(--primary);
}

.bio-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.bio-text li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #444;
}

.bio-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .bio-grid-with-image {
        grid-template-columns: 1fr;
    }
    
    .bio-image {
        position: relative;
        top: 0;
    }
    
    .bio-text ul {
        grid-template-columns: 1fr;
    }
    
    .bio-text h2 {
        font-size: 1.6rem;
    }
}

/* CTA Button Fixes - Consolidated */
.cta-section .cta-btn {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.cta-section .cta-btn:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
    transform: translateY(-2px);
}

.cta-section .cta-btn.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-section .cta-btn.secondary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.cta-section .cta-btn:visited,
.cta-section .cta-btn.secondary:visited {
    color: inherit;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   UNIFIED BUTTON STYLES - FINAL OVERRIDES
   ======================================== */

/* Primary Button - Default State */
.cta-btn,
a.cta-btn,
button.cta-btn {
    display: inline-block;
    background: var(--primary) !important;
    color: #fff !important;
    padding: 1rem 2.5rem;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary) !important;
    cursor: pointer;
}

/* Primary Button - Hover State */
.cta-btn:hover,
a.cta-btn:hover,
button.cta-btn:hover {
    background: var(--dark) !important;
    color: #fff !important;
    border-color: var(--dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Primary Button - Visited State */
.cta-btn:visited,
a.cta-btn:visited {
    color: #fff !important;
}

/* Secondary Button - Default State */
.cta-btn.secondary,
a.cta-btn.secondary {
    background: #fff !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

/* Secondary Button - Hover State */
.cta-btn.secondary:hover,
a.cta-btn.secondary:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Secondary Button - Visited State */
.cta-btn.secondary:visited,
a.cta-btn.secondary:visited {
    color: var(--primary) !important;
}

.cta-btn.secondary:hover:visited {
    color: #fff !important;
}

/* Shop Button in Nav */
.shop-btn {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.shop-btn:hover {
    background: var(--dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.shop-btn:visited {
    color: #fff !important;
}

/* Google Link Button */
.google-link {
    display: inline-block;
    color: var(--primary) !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.google-link:hover {
    color: var(--dark) !important;
    transform: translateX(5px);
}

.google-link:visited {
    color: var(--primary) !important;
}

/* Simplified Contact Page */
.contact-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-simple h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-methods-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-methods-simple .contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-methods-simple .contact-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-methods-simple .contact-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-methods-simple .contact-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.contact-simple .location-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray);
    border-radius: 12px;
}

/* Blog Section on Homepage */
.blog-preview {
    padding: 4rem 0;
    background: var(--light);
}

.blog-preview h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 2rem;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.blog-preview-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.blog-preview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.blog-preview-card h3 a {
    color: var(--primary);
    text-decoration: none;
}

.blog-preview-card h3 a:hover {
    color: var(--dark);
}

.blog-preview-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Related Articles in Blog */
.related-articles h2 {
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
}

.related-articles a {
    color: var(--primary);
    text-decoration: none;
}

.related-articles a:hover {
    color: var(--dark);
    text-decoration: underline;
}

/* Improved Blog Preview Section */
.blog-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-preview h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.blog-preview .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}

.blog-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-preview-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-family: 'Orbitron', sans-serif;
}

.blog-preview-card h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-preview-card h3 a:hover {
    color: var(--primary);
}

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

.blog-preview-card .read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.blog-preview-card .read-more:hover {
    color: var(--dark);
}

.blog-preview .cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Module Above Footer */
.cta-module {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
    color: white;
}

.cta-module h2 {
    font-family: 'Orbitron', sans-serif;
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-module p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-module .location-info {
    margin-bottom: 2rem;
}

.cta-module .location-info p {
    margin: 0.3rem 0;
    font-size: 1rem;
}

.cta-module .contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-module .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-module .btn-whatsapp {
    background: #25D366;
    color: white !important;
}

.cta-module .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.cta-module .btn-phone {
    background: white;
    color: var(--primary) !important;
}

.cta-module .btn-phone:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-module .btn-email {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

.cta-module .btn-email:hover {
    background: white;
    color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Fix location info in CTA module - remove grey box */
.cta-module .location-info {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
