/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-button.primary {
    background-color: #dc2626;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cta-button.primary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.cta-button.secondary:hover {
    background-color: #dc2626;
    color: white;
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-cta {
    background-color: #dc2626;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

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

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-name {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.credentials {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.credential-item i {
    color: #dc2626;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== LEAD MAGNET SECTION ===== */
.lead-magnet {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    position: relative;
    overflow: hidden;
}

.lead-magnet::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pdf-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.pdf-cover {
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.pdf-cover:hover {
    transform: rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.pdf-spine {
    position: absolute;
    left: -8px;
    top: 0;
    width: 8px;
    height: 280px;
    background: linear-gradient(180deg, #333 0%, #000 100%);
    border-radius: 2px 0 0 2px;
}

.pdf-front {
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #ddd;
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.pdf-front::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid #dc2626;
    border-radius: 4px;
}

.pdf-title h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdf-title p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pdf-author {
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
    margin-top: auto;
}

.lead-magnet-form-container {
    color: white;
}

.lead-magnet-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.lead-magnet-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.guide-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: white;
}

.benefit-item i {
    color: #fbbf24;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
}

.lead-magnet-form {
    margin-top: 2rem;
}

.lead-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lead-input {
    padding: 18px 20px;
    border: none;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    background: white;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lead-input::placeholder {
    color: #999;
}

.lead-input:focus {
    outline: none;
    background: #f8f9fa;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
    transform: translateY(-1px);
}

.lead-magnet-btn {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 18px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.lead-magnet-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.privacy-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 1rem;
}

.privacy-text i {
    margin-right: 8px;
    color: #10b981;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background-color: white;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: #dc2626;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.service-description {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

/* ===== APPROACH SECTION ===== */
.approach {
    padding: 100px 0;
    background-color: #111;
    color: white;
}

.approach .section-title {
    color: white;
}

.approach-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-icon {
    margin-bottom: 1.5rem;
}

.approach-icon i {
    font-size: 3rem;
    color: #dc2626;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.approach-item p {
    color: #ccc;
    line-height: 1.6;
}

.approach-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #000;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 100px 0;
    background-color: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    background-color: #f8f9fa;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.gallery-item.transformation {
    grid-column: span 2;
    aspect-ratio: 8/3;
    background-color: #f8f9fa;
}

.transformation-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.transformation-before,
.transformation-after {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.transformation-before img,
.transformation-after img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
}

.transformation-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.transformation-badge {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Testimonial transformation photos */
.testimonial-card.featured-transformation {
    border: 2px solid #dc2626;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.02));
}

.transformation-photos {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.before-after-mini {
    text-align: center;
}

.mini-photo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    border: 2px solid #dc2626;
}

.before-after-mini span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #dc2626;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PAYMENT SECTION ===== */
.payment {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.payment-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-item i {
    font-size: 2.5rem;
    color: #dc2626;
}

.payment-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background-color: #111;
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-item i {
    color: #dc2626;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: white;
    text-align: center;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: rgba(255, 255, 255, 0.15);
}

.contact-buttons-alt {
    margin-top: 1rem;
    text-align: center;
}

.contact-note {
    background: rgba(220, 38, 38, 0.1);
    border-left: 4px solid #dc2626;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.contact-note p {
    margin: 0;
    color: #ccc;
}

.contact-note a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-icon {
    display: flex;
    align-items: center;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #dc2626;
}

.social-icon i {
    margin-right: 10px;
    font-size: 1.2rem;
    width: 25px;
}

.footer-social a {
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #dc2626;
}

.form-help {
    margin-top: 0.5rem;
    text-align: center;
}

.form-help p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.form-help a {
    color: #dc2626;
    text-decoration: none;
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: #000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #dc2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Typography */
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Sections */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-img {
        height: 400px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-item.transformation {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .transformation-container {
        flex-direction: column;
    }

    .transformation-label {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

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

    /* Approach */
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Lead Magnet */
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .lead-magnet-title {
        font-size: 2rem;
    }

    .lead-form-inputs {
        gap: 0.8rem;
    }

    .lead-magnet-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .pdf-cover {
        transform: none;
        scale: 0.8;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Payment */
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

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

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

.service-card,
.testimonial-card,
.approach-item {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL EFFECTS ===== */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 10px 0;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-red {
    color: #dc2626;
}

.bg-red {
    background-color: #dc2626;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}