/* ===============================================
   DSCRATE MEDIA - STYLESHEET
   Modern, Minimal, Professional Website
   =============================================== */

/* ===============================================
   1. ROOT VARIABLES & IMPORTS
   =============================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-accent: #8086bc;
    --base-dark: #000000;
    --secondary-white: #ffffff;
    --bg-dark: #0a0a0a;
    --text-light: #e0e0e0;
    --border-color: rgba(128, 134, 188, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================================
   2. RESET & BASE STYLES
   =============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

/* ===============================================
   3. NAVBAR STYLES
   =============================================== */



.logo-image {
    height: 25px;   /* adjust to fit your navbar */
    width: auto;    /* keeps aspect ratio */
    display: block; /* prevents extra spacing */
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-white);
    letter-spacing: -0.5px;
}

.highlight {
    color: #8086bc;
}

.logo-placeholder {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-accent);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--secondary-white);
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

/* ===============================================
   4. MOBILE MENU
   =============================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
    }
}

/* ===============================================
   5. FLOATING WHATSAPP BUTTON
   =============================================== */

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-button {
    color: #ffffff; /* ensures svg using currentColor will be white */
}

.whatsapp-button svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor; /* use the button color */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

/* ===============================================
   6. CONTAINERS & SPACING
   =============================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===============================================
   7. TYPOGRAPHY
   =============================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-white);
    letter-spacing: -1px;
}

.section-text {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===============================================
   8. HERO SECTION
   =============================================== */

.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary-white);
    letter-spacing: -2px;
}

.hero-subheading {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-accent);
    color: var(--secondary-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    box-shadow: 0 8px 30px rgba(128, 134, 188, 0.4);
    transform: translateY(-3px);
}

/* ===============================================
   9. FADE-IN ANIMATIONS
   =============================================== */

.fade-in {
    animation: fadeIn 0.8s ease-in-out forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================
   10. ABOUT SECTION
   =============================================== */

.about {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.about .section-text {
    font-size: 1.2rem;
    font-weight: 300;
}

/* ===============================================
   11. SERVICES SECTION
   =============================================== */

.services {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem;
    background: rgba(128, 134, 188, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-accent);
    background: rgba(128, 134, 188, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(128, 134, 188, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-white);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===============================================
   12. WHY CHOOSE US SECTION
   =============================================== */

.why-choose-us {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    background: rgba(128, 134, 188, 0.03);
    border-left: 3px solid var(--primary-accent);
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    background: rgba(128, 134, 188, 0.08);
    transform: translateX(10px);
}

.feature-check {
    font-size: 1.5rem;
    color: var(--primary-accent);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.feature h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-white);
}

.feature p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===============================================
   13. FOOTER
   =============================================== */

.footer {
    border-top: 2px solid var(--border-color);
    padding: 5rem 0 3rem;
    margin-top: 4rem;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 26, 46, 0.2) 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--secondary-white);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.95;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Decorative subtle gradient underline under footer headings */
.footer-section h4::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 6px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-accent) 50%, transparent 100%);
    border-radius: 3px;
    opacity: 0.95;
}

@media (max-width: 480px) {
    .footer-section h4::after {
        width: 52px;
        height: 2.5px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-white);
    letter-spacing: -0.5px;
}

.footer-logo .logo-placeholder {
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-light);
    transition: color 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

/* Do not show underline animation for social icon links */
.footer-section a:not(.social-icon)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.footer-section a:not(.social-icon):hover {
    color: var(--primary-accent);
}

.footer-section a:not(.social-icon):hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-light);
    flex-shrink: 0;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(128, 134, 188, 0.25);
}

.instagram-icon {
    position: relative;
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(240, 148, 51, 0.3);
}

.instagram-icon:hover svg {
    color: white;
}

.whatsapp-icon {
    position: relative;
}

.whatsapp-icon:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon:hover svg {
    color: white;
    stroke: white;
}

.facebook-icon {
    position: relative;
}

.facebook-icon:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.facebook-icon:hover svg {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* ===============================================
   14. PRICING PAGE STYLES
   =============================================== */

.pricing-section {
    padding: 100px 0 80px;
    min-height: 100vh;
}

.pricing-title {
    margin-top: 2rem;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    padding: 2.5rem;
    background: rgba(128, 134, 188, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary-accent);
    background: rgba(128, 134, 188, 0.1);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(128, 134, 188, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary-accent);
    color: var(--secondary-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-white);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-accent);
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-white);
}

.plan-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.payment-option {
    background: rgba(128, 134, 188, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.payment-text {
    font-size: 0.9rem;
    color: var(--primary-accent);
    font-weight: 600;
    text-align: center;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(128, 134, 188, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.check {
    color: var(--primary-accent);
    font-weight: 700;
}

.cross {
    color: #ff6b6b;
    font-weight: 700;
}

.not-included {
    opacity: 0.6;
    text-decoration: line-through;
}

.plan-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-accent);
    color: var(--secondary-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.plan-button:hover {
    background: #7078a7;
    transform: translateY(-2px);
}

/* ===============================================
   14.5. PLAN RECOMMENDATION BADGE
   =============================================== */

.plan-recommendation {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(128, 134, 188, 0.15) 0%, rgba(128, 134, 188, 0.05) 100%);
    border: 2px solid var(--primary-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    cursor: default;
}

.plan-recommendation:hover {
    background: linear-gradient(135deg, rgba(128, 134, 188, 0.2) 0%, rgba(128, 134, 188, 0.1) 100%);
    box-shadow: 0 8px 24px rgba(128, 134, 188, 0.2);
    transform: translateY(-2px);
}

.recommendation-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recommendation-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-white);
    line-height: 1.4;
}

.recommendation-subtext {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* ===============================================
   15. ADD-ONS SECTION
   =============================================== */

.addons-section {
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.addons-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.addon-item {
    padding: 2rem;
    background: rgba(128, 134, 188, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.addon-item:hover {
    border-color: var(--primary-accent);
    background: rgba(128, 134, 188, 0.1);
    transform: translateY(-5px);
}

.addon-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-white);
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.addon-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===============================================
   16. UPDATE DEFINITIONS
   =============================================== */

.update-definitions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.definition-card {
    padding: 2rem;
    background: rgba(128, 134, 188, 0.03);
    border-left: 3px solid var(--primary-accent);
    border-radius: 8px;
}

.definition-card h4 {
    font-size: 1.15rem;
    color: var(--secondary-white);
    margin-bottom: 1rem;
}

.definition-card ul {
    list-style: none;
}

.definition-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===============================================
   17. CONTACT PAGE STYLES
   =============================================== */

.contact-section {
    padding: 100px 0 80px;
    min-height: 100vh;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-item {
    padding: 2.5rem;
    background: rgba(128, 134, 188, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-accent);
    background: rgba(128, 134, 188, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(128, 134, 188, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: var(--secondary-white);
    margin-bottom: 0.75rem;
}

.contact-item p {
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-accent);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-white);
}

/* ===============================================
   18. CTA SECTION
   =============================================== */

.contact-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(128, 134, 188, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-cta h2 {
    font-size: 2rem;
    color: var(--secondary-white);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ===============================================
   19. MOBILE RESPONSIVENESS
   =============================================== */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .update-definitions {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-section h4 {
        margin-bottom: 1rem;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .social-icons {
        justify-content: center;
        gap: 1rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        border-width: 1.5px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-heading {
        font-size: 1.75rem;
        letter-spacing: 0;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .service-card,
    .feature,
    .contact-item,
    .addon-item {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .plan-price {
        margin-bottom: 1rem;
    }

    .plan-recommendation {
        padding: 1rem;
        gap: 0.75rem;
    }

    .recommendation-icon {
        font-size: 1.5rem;
    }

    .recommendation-text {
        font-size: 0.85rem;
    }

    .recommendation-subtext {
        font-size: 0.75rem;
    }

    .amount {
        font-size: 2rem;
    }

    .contact-cta {
        padding: 2rem 1rem;
    }

    .contact-cta h2 {
        font-size: 1.5rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-logo {
        font-size: 1rem;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        border-width: 1.5px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .social-icons {
        gap: 0.75rem;
    }
}

/* ===============================================
   20. SCROLL ANIMATIONS
   =============================================== */

@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .feature,
    .contact-item,
    .addon-item,
    .pricing-card {
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }

    .service-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .feature:nth-child(1) {
        animation-delay: 0.1s;
    }

    .feature:nth-child(2) {
        animation-delay: 0.2s;
    }

    .feature:nth-child(3) {
        animation-delay: 0.3s;
    }

    .feature:nth-child(4) {
        animation-delay: 0.4s;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================
   21. LOADING & TRANSITIONS
   =============================================== */

body.page-transition {
    animation: pageTransition 0.5s ease;
}

@keyframes pageTransition {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
