/* =========================================
   1. Theme Variables & Reset (Light/Dark Mode)
========================================= */
:root {
    /* Colors */
    --primary: #e5322d;
    --primary-hover: #c92a25;
    --secondary: #4a5568;
    --success: #38a169;
    --danger: #e53e3e;

    /* Light Theme Backgrounds & Text */
    --bg-main: #f7fafc;
    --bg-card: #ffffff;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --border-color: #e2e8f0;

    /* Icon Colors */
    --color-green: #2f855a;
    --color-red: #e5322d;
    --color-blue: #3182ce;
    --color-purple: #805ad5;
    --color-orange: #dd6b20;
    --color-yellow: #d69e2e;
}

/* Dark Mode Overrides */
html.dark-mode {
    --bg-main: #0f172a;
    --bg-card: #1e293b;
    --text-dark: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

/* =========================================
   2. Global Utilities & Buttons
========================================= */
.view-hidden {
    display: none !important;
}

.view-active {
    display: block !important;
}

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

.text-bold {
    font-weight: 700;
}

.text-muted {
    color: var(--text-muted);
}

.text-green {
    color: var(--color-green);
}

.text-red {
    color: var(--color-red);
}

.text-blue {
    color: var(--color-blue);
}

.text-purple {
    color: var(--color-purple);
}

.text-orange {
    color: var(--color-orange);
}

.text-dark {
    color: var(--text-dark);
}

button,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(229, 50, 45, 0.2);
}


/* Specific Home Page Grid Styling */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.tool-card {
    display: block;
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.tool-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.tool-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tool-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.category-title {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 20px;
    font-size: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

/* =========================================
   3. Navbar, Dropdown & Dark Mode Toggle
========================================= */
.navbar {
    background: var(--bg-card);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    margin-left: 20px;
    transition: 0.2s;
}

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

/* Dropdown =========================================================
   COMPACT 3-COLUMN MEGA MENU (Right-Side Safe)
========================================================= */
.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.dropbtn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 0;
    font-family: inherit;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.dropdown:hover .dropbtn {
    color: var(--primary);
}

/* Dropdown Box - Sleek aur Screen Safe */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-card);
    width: 700px;
    max-width: 90vw;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
    z-index: 200;
    border-radius: 10px;
    top: 100%;

    /* 🔥 THE ULTIMATE FIX 🔥 */
    right: 0;
    /* Isey right edge par lock kar diya */
    left: auto;
    /* Left ko free chhod diya taaki wo andar ki taraf khule */

    border: 1px solid var(--border-color);
    padding: 10px;
}

/* Hover karne par Grid (3 Columns) */
.dropdown:hover .dropdown-content {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    animation: fadeIn 0.2s ease;
}

/* Links (Tools) ka Design - Compact */
.dropdown-content a {
    color: var(--text-dark);
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    border-radius: 6px;
    margin: 0;
    transition: 0.2s;
}

/* Icon alignment */
.dropdown-content a i {
    width: 20px;
    text-align: center;
    font-size: 1.05rem;
}

.dropdown-content a:hover {
    background-color: rgba(229, 50, 45, 0.05);
    color: var(--primary);
    transform: translateX(3px);
}

/* ==========================================
   RESPONSIVE DESIGN (Mobiles & Tablets)
========================================== */

/* Tablet & Chote Laptops (2 Columns) */
@media (max-width: 992px) {
    .dropdown-content {
        width: 500px;
    }

    .dropdown:hover .dropdown-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Phones (1 Column - List Format) */
@media (max-width: 768px) {
    .dropdown-content {
        width: 100%;
        min-width: 100%;
        right: auto;
        /* Mobile par reset kar diya */
        left: 0;
        transform: none;
        position: static;
        box-shadow: none;
        border: none;
        padding: 5px 0;
    }

    .dropdown:hover .dropdown-content {
        display: flex !important;
        flex-direction: column;
        gap: 2px;
    }

    .dropdown-content a:hover {
        transform: none;
        padding-left: 18px;
    }
}

/* Dark Mode Toggle */
.theme-btn {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 20px;
    transition: 0.3s;
    font-size: 1.1rem;
}

.theme-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   4. Home Page (Hero, Search, Grid)
========================================= */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 1.1rem;
    background: var(--bg-card);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    outline: none;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(229, 50, 45, 0.1);
}

/* Remove old inline styles from index.html */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.tool-card {
    display: block;
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.dark-mode .tool-card:hover {
    box-shadow: 0 15px 30px rgba(229, 50, 45, 0.15);
}

.tool-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.tool-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.tool-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.category-title {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 20px;
    font-size: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Global SEO Box */
.tool-seo-box {
    margin-top: 30px;
    padding: 30px;
    background: var(--bg-main);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.tool-seo-box h3,
.tool-seo-box h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.tool-seo-box p,
.tool-seo-box ul {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1rem;
}

.tool-seo-box ul {
    margin-left: 20px;
}

.tool-seo-box strong {
    color: var(--text-dark);
}

/* =========================================
   5. Legal Pages (Privacy & Terms)
========================================= */
.legal-page-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.legal-header {
    text-align: left;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-date-tag {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1rem;
    display: block;
}

.legal-body {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.legal-body h2 {
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: justify;
}

.legal-body ul {
    margin: 20px 0 20px 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-body strong {
    color: var(--text-dark);
}

.legal-body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.legal-body a:hover {
    text-decoration: underline;
}

/* =========================================
   6. Contact Page Specific
========================================= */
/* =========================================
   6. Contact Page Specific
========================================= */
.contact-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
    background: var(--bg-main);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.info-card {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-main);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.info-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-input-field {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    outline: none;
    background: var(--bg-card);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
}

.contact-input-field:focus {
    border-color: var(--primary);
}

.contact-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: var(--primary);
    color: white;
    transition: 0.3s;
}

.contact-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 50, 45, 0.2);
}

@media (max-width: 768px) {
    .contact-container {
        padding: 25px 20px;
        margin: 30px 20px;
    }

    .contact-flex {
        gap: 30px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }
}

/* =========================================
   7. Footer
========================================= */
.footer-container {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.footer-title {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.2s;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   8. Mobile Responsiveness
========================================= */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-links a,
    .dropdown {
        margin-left: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .legal-header h1 {
        font-size: 2.2rem;
    }

    .legal-body {
        padding: 25px;
    }

    .contact-centered-box {
        padding: 30px 20px;
        margin: 30px 20px;
    }
}

/* =========================================
   9. About Page Specific (Ultra Premium)
========================================= */
.about-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Header Section */
.about-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-main) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.about-header h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Typography & Headings */
.about-body h2 {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 60px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--border-color);
}

.about-body h2 i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(229, 50, 45, 0.08);
    border-radius: 12px;
    margin-right: 15px;
    font-size: 1.5rem;
}

.about-body h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    display: flex;
    align-items: center;
}

.about-body h3::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 22px;
    background: var(--primary);
    margin-right: 12px;
    border-radius: 4px;
}

.about-body p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Modern List Cards */
.about-body ul,
.about-body ol {
    margin: 10px 0 30px 0;
    background: var(--bg-card);
    padding: 30px 30px 30px 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.about-body ul li,
.about-body ol li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.about-body ul li:last-child,
.about-body ol li:last-child {
    margin-bottom: 0;
}

/* FAQ Section Interactive */
.about-faq-section {
    margin-top: 70px;
}

.about-faq-section h2 {
    border-bottom: none;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.about-faq-item {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.about-faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.about-faq-item h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

/* =========================================
   Ultra-Premium CTA Button (About Page)
========================================= */
.about-cta-btn {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 45px;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    border-radius: 50px;
    /* Modern Pill Shape */
    box-shadow: 0 8px 25px rgba(229, 50, 45, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    border: none;
}

.about-cta-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

/* Hover Effect - Glow & Float */
.about-cta-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(229, 50, 45, 0.5);
    background: linear-gradient(135deg, #ff6b6b 0%, var(--primary) 100%);
}

.about-cta-btn:hover i {
    transform: scale(1.2);
    /* Icon thoda bada hoga hover par */
}

/* Mobile Adjustments for the new button */
@media (max-width: 768px) {
    .about-cta-btn {
        padding: 14px 35px;
        font-size: 1.05rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-header {
        padding: 30px 20px;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .about-body h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-body h2 i {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .about-body ul,
    .about-body ol {
        padding: 25px 20px 25px 40px;
    }

    .about-cta-box {
        padding: 40px 20px;
    }
}

/* =========================================
   Home Page Hero Share Button
========================================= */
.hero-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(229, 50, 45, 0.1);
    /* Halka red background */
    color: var(--primary);
    border: 1px solid rgba(229, 50, 45, 0.2);
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-share-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 50, 45, 0.3);
}

.hero-share-btn i {
    font-size: 1.2rem;
}

/* =========================================
   Homepage SEO Content Section
========================================= */
.home-seo-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: justify;
}

.home-seo-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-seo-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.home-seo-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.home-seo-heading {
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.home-seo-heading::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 22px;
    background: var(--primary);
    margin-right: 12px;
    border-radius: 4px;
}

.first-heading {
    margin-top: 0;
    border-bottom: 2px dashed var(--border-color);
    padding-bottom: 15px;
}

.first-heading::before {
    display: none;
    /* Pehli heading ke liye line hata di */
}

.home-seo-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.home-seo-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.home-seo-list {
    margin: 10px 0 30px 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.home-seo-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.home-seo-quote {
    background: rgba(229, 50, 45, 0.05);
    border-left: 8px solid var(--primary);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-dark);
    border-radius: 0 12px 12px 0;
}

.home-seo-cta {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    margin-top: 60px;
    text-align: center;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(229, 50, 45, 0.1);
}

.home-seo-cta h3 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.home-seo-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .home-seo-title {
        font-size: 2rem;
    }

    .home-seo-quote {
        padding: 20px;
        font-size: 1.05rem;
    }

    .home-seo-cta {
        padding: 30px 20px;
    }

    .home-seo-cta h3 {
        font-size: 1.8rem;
    }
}