﻿/* ============================================================
   SITE-OVERRIDES.CSS — SEO.technoocean.in site-specific styles
   Color scheme: #2563eb (blue) + #ff6b35 (orange)
   ============================================================ */

:root {
    --seo-blue: #2563eb;
    --seo-blue-dark: #1d4ed8;
    --seo-orange: #ff6b35;
    --seo-orange-dark: #e55a2b;
}

/* ── Base ── */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    line-height: 1.2;
}

h1 { font-size: var(--text-4xl); margin-bottom: 1.5rem; }
h2 { font-size: var(--text-3xl); margin-bottom: 1.5rem; position: relative; padding-bottom: 15px; }
h2:after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 80px; height: 4px;
    background: linear-gradient(to right, var(--seo-blue), var(--seo-orange));
    border-radius: 2px;
}
h2.text-center:after { left: 50%; transform: translateX(-50%); }
h3 { font-size: var(--text-2xl); margin-bottom: 1rem; }

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

section { padding: 90px 0; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--seo-blue);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--text-base);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn:before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
    z-index: -1;
}
.btn:hover:before { left: 100%; }
.btn:hover {
    background-color: var(--seo-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--seo-blue);
    color: var(--seo-blue);
    box-shadow: none;
}
.btn-outline:hover {
    background-color: var(--seo-blue);
    color: white;
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ── Header & Navigation ── */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: var(--z-sticky);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}
.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--seo-blue);
}

.navbar-nav {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    margin-left: 25px;
    position: relative;
}

.navbar-nav li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: var(--fw-medium);
    transition: color 0.3s;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}
.navbar-nav li a.active {
    color: var(--seo-blue);
    font-weight: var(--fw-semibold);
}
.navbar-nav li a:after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background-color: var(--seo-blue);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.navbar-nav li a:hover:after,
.navbar-nav li a.active:after { width: 100%; }
.navbar-nav li a:hover { color: var(--seo-blue); }

.navbar-nav li:last-child a.btn-outline {
    padding: 10px 20px;
    margin-left: 10px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a i { font-size: 0.7rem; margin-left: 5px; }

.dropdown {
    position: absolute;
    top: 120%; left: 0;
    background: #ffffff;
    min-width: 260px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: var(--z-dropdown);
    flex-direction: column;
    list-style: none;
}
.dropdown li { margin: 0; width: 100%; list-style: none; }
.dropdown li a {
    padding: 12px 20px;
    width: 100%;
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
}
.dropdown li a:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--seo-blue);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 1001;
}
.mobile-menu-toggle:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 80px 25px 25px;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: var(--z-fixed);
    overflow-y: auto;
}
.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    display: block;
}
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu ul li { margin-bottom: 25px; }
.mobile-menu ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: var(--fw-semibold);
    font-size: 1.3rem;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.mobile-menu ul li a:hover {
    color: var(--seo-blue);
    padding-left: 10px;
}
.mobile-menu ul li:last-child a {
    background-color: var(--seo-blue);
    color: white;
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 20px;
    border: none;
}

body.menu-open { overflow: hidden; }

/* ── Hero Section ── */
.hero {
    position: relative;
    padding: 160px 0 100px;
    color: white;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-carousel {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-carousel .splide__slide {
    position: relative;
    height: 100vh;
}
.hero-carousel .splide__slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.hero-carousel .splide__slide:after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.splide__pagination { bottom: 40px !important; }
.splide__pagination__page {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 8px !important;
}
.splide__pagination__page.is-active {
    background: white !important;
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    color: white;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 1.1rem;
    font-weight: 500;
}
.hero-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 22px;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-contact a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* ── Stats Counter ── */
.stats {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, var(--seo-blue), var(--seo-orange));
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 80px auto;
    max-width: 1000px;
}
.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

/* ── Services Section ── */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border-top: 5px solid var(--seo-blue);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.service-card:before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom right, rgba(37, 99, 235, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.service-card:hover:before { opacity: 1; }
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--seo-blue);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    color: var(--seo-orange);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--seo-blue);
}

.service-deliver {
    margin: 20px 0;
    color: var(--color-text-light);
    text-align: left;
}
.service-deliver ul { list-style: none; padding-left: 0; }
.service-deliver li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}
.service-deliver li:before {
    content: "\2713";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.service-cta { margin-top: 25px; }

/* ── Why Choose Us ── */
.why-us {
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}
.why-us:before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--seo-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
}
.why-card:hover .why-icon {
    color: var(--seo-orange);
    background: rgba(255, 107, 53, 0.1);
}

/* ── Pricing Section ── */
.plans-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(37,99,235,0.15);
    border-color: var(--seo-blue);
}
.pricing-card.featured {
    border-color: var(--seo-orange);
    border-top: 5px solid var(--seo-orange);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--seo-orange), #ff8b35);
    color: white;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--seo-blue);
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-text);
    margin: 15px 0;
}
.pricing-price span {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    flex: 1;
}
.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i {
    color: var(--seo-blue);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

/* ── Testimonials ── */
.testimonials {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8eeff 100%);
    position: relative;
    overflow: hidden;
}
.testimonials:before {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.testimonial-card:before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--seo-blue), var(--seo-orange));
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--color-text-light);
    position: relative;
    z-index: 2;
    padding-left: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: var(--fw-bold);
    color: var(--seo-blue);
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ── FAQ Section ── */
.faq-section { background-color: white; }

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    background-color: #f9f9f9;
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--color-border);
}
.faq-item:hover {
    border-color: var(--seo-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    background-color: #f9f9f9;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.faq-question:hover {
    background-color: #f0f5ff;
}
.faq-question i {
    color: var(--seo-blue);
    transition: transform 0.4s;
}

.faq-answer {
    color: var(--color-text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 25px;
    line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 500px; padding: 25px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* ── Contact Section ── */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: var(--fw-semibold);
    padding: 20px 30px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}
.contact-item:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-8px);
}
.contact-item i {
    color: var(--seo-blue);
    font-size: 1.5rem;
}

.contact-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
    background-color: var(--color-bg-dark);
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer:before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--seo-blue), var(--seo-orange));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: block;
    text-decoration: none;
    color: white;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 15px;
}
.footer-col h4:after {
    content: '';
    position: absolute;
    width: 60px; height: 3px;
    background-color: var(--seo-orange);
    bottom: 0; left: 0;
}

.footer-col a { transition: all 0.3s; }
.footer-col a:hover { color: var(--seo-orange) !important; padding-left: 5px; }

/* ── Modals ── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal-overlay.active .modal-content { transform: scale(1); }

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}
.modal-close:hover { color: var(--color-text); }

.modal-content h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.modal-content h2:after { left: 0; transform: none; }
.modal-content p { color: var(--color-text-light); margin-bottom: 25px; }

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
    color: var(--color-text);
    font-size: 0.9rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fafafa;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--seo-blue);
    background: white;
}
.form-textarea { resize: vertical; min-height: 80px; }

.modal-content .btn {
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.4s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) rotate(10deg);
}

/* ── Enquire Floating Button ── */
.enquire-float {
    position: fixed;
    bottom: 100px; right: 30px;
    background: var(--seo-orange);
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
    z-index: 998;
    transition: all 0.4s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    animation: pulseOrange 2s infinite;
}
@keyframes pulseOrange {
    0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255,107,53,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}
.enquire-float:hover {
    background: var(--seo-orange-dark);
    transform: scale(1.05);
}
.enquire-float i { font-size: 1.2rem; }

/* ── Scroll Animations ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ── Loading Spinner ── */
.spinner {
    display: inline-block;
    width: 20px; height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Typewriter ── */
.typewriter {
    display: inline-block;
    position: relative;
}
.typewriter::after {
    content: '|';
    position: absolute;
    right: -8px;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ── Floating animation ── */
.floating {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ── Particles ── */
.particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .hero-text h1 { font-size: 2.8rem; }
    .why-grid, .testimonials-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    h1 { font-size: var(--text-3xl); }
    h2 { font-size: var(--text-2xl); }

    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-12px); }
}

@media (max-width: 992px) and (min-width: 769px) {
    .navbar-nav li { margin-left: 15px; }
    .navbar-nav li a { font-size: 0.9rem; }
    .navbar-nav li:last-child a.btn-outline {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand img { height: 40px; }
    .navbar-brand { font-size: 1.5rem; gap: 8px; }

    nav ul.navbar-nav { display: none !important; }
    .mobile-menu-toggle { display: block !important; }
    .mobile-menu { display: none; }
    .mobile-menu.active {
        display: block;
        transform: translateX(0);
        opacity: 1;
    }

    .hero-cta, .contact-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-contact {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .contact-item { width: 100%; justify-content: center; }

    .hero-text h1 { font-size: 2.3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .header-container { padding: 12px 0; }
    .navbar-brand { font-size: 1.5rem; }

    .plans-container { flex-direction: column; align-items: center; }
    .pricing-card { max-width: 100%; }

    body.menu-open { overflow: hidden; }
}

@media (min-width: 1200px) {
    .navbar-nav li { margin-left: 35px; }
}

@media (max-width: 480px) {
    .navbar-brand img { height: 35px; }
    .navbar-brand { font-size: 1.3rem; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }

    section { padding: 70px 0; }

    .btn { padding: 14px 24px; width: 100%; text-align: center; }

    .hero { padding: 140px 0 80px; }
}
