/* Nord Breeze Media – Earthy green-to-blue gradient, nature-inspired */
:root {
    --primary-color: #006994;
    --secondary-color: #0288D1;
    --success-color: #2d6a4f;
    --breeze-green: #2d6a4f;
    --breeze-green-light: #95d5b2;
    --logo-blue-light: #b3e5fc;
    --dark-color: #1b4332;
    --text-color: #344e41;
    --light-color: #f1faee;
    --border-radius: 16px;
    --shadow: 0 4px 24px rgba(45, 106, 79, 0.08);
    --shadow-card: 0 8px 32px rgba(27, 67, 50, 0.06);
    --transition: all 0.3s ease;
    /* Earthy gradient steps (lighter green → blue) – one shade darker at top for seamless header */
    --gradient-1: #d4e8d4;
    --gradient-2: #c8e6c9;
    --gradient-3: #b2dfdb;
    --gradient-4: #b3e5fc;
    --gradient-5: #e1f5fe;
}
html, body {
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
}
/* Animated Blobs for Services Section */

/* Conjoined Green Background for Main Sections */
.conjoined-bg {
    background: linear-gradient(135deg, #A8D5BA 0%, #C8E6D4 100%);
    min-height: 100vh;
    position: relative;
    z-index: 0;
    padding-top: 0;
}

/* Floating Blob Styles */
.floating-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.28;
    z-index: 0;
    animation: blobMove 12s ease-in-out infinite;
    pointer-events: none;
}
.floating-blob.blob1 {
    top: 10%;
    left: 5%;
    width: 220px;
    height: 180px;
    background: radial-gradient(circle, #B3E5FC 60%, transparent 100%);
}
.floating-blob.blob2 {
    bottom: 8%;
    right: 8%;
    width: 180px;
    height: 140px;
    background: radial-gradient(circle, #A8D5BA 60%, transparent 100%);
}
.floating-blob.blob3 {
    top: 40%;
    left: 60%;
    width: 120px;
    height: 100px;
    background: radial-gradient(circle, #00D9FF 60%, transparent 100%);
    opacity: 0.18;
}
@keyframes blobMove {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.07); }
}
/* Unified Section Styles */
.unified-section {
    background: linear-gradient(135deg, #f5fafc 0%, #eaf6f6 100%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* Floating Shapes (example, can be customized) */
.unified-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f7e9d7 60%, transparent 100%);
    opacity: 0.35;
    z-index: 1;
}
.unified-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #d7e9f7 60%, transparent 100%);
    opacity: 0.25;
    z-index: 1;
}

/* Section Content Layer */
.unified-section > * {
    position: relative;
    z-index: 2;
}

/* Scroll Animation */
.fade-slide {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-slide.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle glowing button animation */
@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 0 rgba(45, 106, 79, 0);
    }
    50% {
        box-shadow: 0 0 18px rgba(45, 106, 79, 0.6);
    }
    100% {
        box-shadow: 0 0 0 rgba(45, 106, 79, 0);
    }
}

.btn-flash {
    animation: pulse-flash 0.8s ease-in-out infinite;
}

/* Team Illustration Animations */
@keyframes float-card-1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes float-card-2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes float-card-3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

@keyframes pulse-screen {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

@keyframes typing-hand {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.card-1 { animation: float-card-1 3s ease-in-out infinite; }
.card-2 { animation: float-card-2 3.5s ease-in-out infinite; }
.card-3 { animation: float-card-3 3.2s ease-in-out infinite; }
.monitor { animation: pulse-screen 2s ease-in-out infinite; }
.typing { animation: typing-hand 0.6s ease-in-out infinite; }

@keyframes screen-flash {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 5px rgba(27, 110, 58, 0)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 35px rgba(27, 110, 58, 0.9)) brightness(1.15);
    }
}

.screen-flash {
    animation: screen-flash 0.9s ease-in-out infinite !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Animations */
@keyframes pulse-flash {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
}

.btn-flash {
    animation: pulse-flash 1.5s ease-in-out infinite;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero .btn-primary {
    background-color: var(--success-color);
    color: white;
    padding: 15px 45px;
    font-size: 1.15rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.35);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: #1b4332;
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.45);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Navigation – same as hero start for one consistent background */
.navbar {
    background: var(--gradient-1);
    box-shadow: none;
    position: relative;
    top: 0;
    z-index: 100;
    overflow: visible;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    overflow: visible;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.nav-brand img {
    height: 160px;
    width: auto;
    background-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
}

.nav-menu a:hover {
    color: #006994;
}

.translate-widget {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.translate-widget .goog-te-gadget {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.translate-widget select {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    background: #fff;
    color: var(--dark-color);
    font-size: 0.9rem;
    outline: none;
}

.translate-widget select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 105, 148, 0.15);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    min-width: 250px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 10px;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    color: var(--text-color);
    display: block;
    font-size: 1rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section – start of gradient, keep illustration */
.hero {
    background: linear-gradient(160deg, var(--gradient-1) 0%, var(--gradient-2) 100%);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 80"><path d="M0 80 L0 40 Q300 0 600 40 T1200 40 L1200 80 Z" fill="%23b2dfdb" opacity="0.6"/><path d="M0 80 L0 55 Q400 20 800 55 T1200 55 L1200 80 Z" fill="%23b2dfdb" opacity="0.4"/></svg>') no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Shared hero for service pages */
.service-hero {
    background: linear-gradient(160deg, var(--gradient-1) 0%, var(--gradient-2) 100%);
    padding: 80px 20px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 80"><path d="M0 80 L0 40 Q300 0 600 40 T1200 40 L1200 80 Z" fill="%23b2dfdb" opacity="0.6"/><path d="M0 80 L0 55 Q400 20 800 55 T1200 55 L1200 80 Z" fill="%23b2dfdb" opacity="0.4"/></svg>') no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.service-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-hero p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 24px;
}

/* Services Section */
.services {
    padding: 72px 20px 80px;
    background: linear-gradient(180deg, var(--gradient-2) 0%, var(--gradient-3) 50%);
    position: relative;
    overflow: hidden;
}

/* SEO packages main section – match services gradient */
#seo-packages {
    padding: 72px 20px 80px;
    background: linear-gradient(180deg, var(--gradient-2) 0%, var(--gradient-3) 50%);
}

.services::before {
    content: none; /* Removed background image */
}

.services .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.service-card .btn {
    margin-top: auto;
    width: 100%;
    background-color: transparent;
    color: #1B6E3A;
    font-weight: 700;
    border: none;
    box-shadow: none;
    padding: 0;
}

.service-card .btn:hover {
    background-color: transparent;
    color: #145a2f;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(168, 213, 186, 0.1) 100%);
    border-radius: 50%;
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 217, 255, 0.6) 60deg, rgba(168, 213, 186, 0.4) 120deg, transparent 180deg);
    animation: icon-spin 4s linear infinite;
    z-index: -1;
    opacity: 0.5;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes icon-spin {
    to {
        transform: rotate(360deg);
    }
}

.service-card:hover .service-icon {
    animation: icon-float 1.5s ease-in-out infinite;
    color: var(--success-color);
}

.service-card:hover .service-icon::before {
    animation: icon-spin 2s linear infinite;
    opacity: 1;
}

.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.features a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.features i {
    color: var(--success-color);
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
}

.pricing .container {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(168, 213, 186, 0.6);
}

.pricing-card h3 {
    background-color: #1B6E3A;
    color: white;
    padding: 20px;
    margin: 0;
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.price-tier {
    padding: 30px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    position: relative;
    transition: var(--transition);
}

.price-tier:hover {
    border-color: var(--primary-color);
}

.price-tier.highlight {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--breeze-green-light) 100%);
    border-color: #1B6E3A;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1B6E3A;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-tier h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #1B6E3A;
    margin: 15px 0;
}

.currency {
    font-size: 1.2rem;
}

.period {
    font-size: 0.8rem;
    color: #666;
}

.package-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
    border-bottom: none;
}

.price-tier .btn {
    margin-top: 20px;
    width: 100%;
}

/* Services Section Enhancement – keep gradient, no solid override */
.services {
    background: linear-gradient(180deg, var(--gradient-2) 0%, var(--gradient-3) 50%);
    position: relative;
}

.services::before {
    content: none; /* Removed content */
}

.services h2 {
    position: relative;
    display: inline-block;
}

.services h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 2px;
}

/* Foundation Section – gradient step 3–4, earthy */
.foundation-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--gradient-3) 0%, var(--gradient-4) 100%);
    position: relative;
    border-top: none;
    overflow: hidden;
}
.foundation-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0 120 L0 80 L200 40 L400 70 L600 30 L800 60 L1000 25 L1200 55 L1200 120 Z" fill="%232d6a4f" opacity="0.06"/><path d="M0 120 L0 95 L150 60 L350 85 L550 55 L750 80 L950 50 L1200 75 L1200 120 Z" fill="%231b4332" opacity="0.04"/></svg>') no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.foundation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.foundation-text h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.foundation-text p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.foundation-call-btn {
    margin-left: 16px;
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.foundation-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.foundation-svg {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(10, 26, 36, 0.15));
}

.block-1, .block-2, .block-3, .block-4, .block-5, .block-6 {
    transform-origin: center;
}

.block-1 {
    animation: block-pop 0.6s ease-out 0s;
}

.block-2 {
    animation: block-pop 0.6s ease-out 0.1s;
}

.block-3 {
    animation: block-pop 0.6s ease-out 0.2s;
}

.block-4 {
    animation: block-pop 0.6s ease-out 0.3s;
}

.block-5 {
    animation: block-pop 0.6s ease-out 0.4s;
}

.block-6 {
    animation: block-pop 0.6s ease-out 0.5s;
}

@keyframes block-pop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon {
    animation: success-bounce 2s ease-in-out infinite;
}

@keyframes success-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

@media (max-width: 768px) {
    .foundation-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .foundation-text h2 {
        font-size: 2rem;
    }

    .foundation-text p {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    /* Move the Start Building Today button visually into the foundation block area on mobile */
    .foundation-btn {
        position: absolute;
        left: 50%;
        bottom: 108px; /* nudge slightly lower */
        transform: translateX(-50%);
        z-index: 2;
        width: 220px;
        max-width: 80%;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 10px 0;
    }

    .foundation-call-btn {
        display: block;
        margin: 10px auto 0 auto;
        width: 220px;
        max-width: 80%;
        text-align: center;
    }

    /* Ensure the mobile foundation button text stays readable on the bar */
    .foundation-btn.btn-primary {
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .foundation-svg {
        max-width: 280px;
        margin: 0 auto 20px auto;
    }
}

/* Process Section */
.process {
    padding: 80px 20px;
    background-color: #a8dfd2; /* Changed background color */
}

.process .container {
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
    align-items: center;
}

.step {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: #666;
}

.step-arrow {
    display: flex;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Testimonials Section – gradient step 4–5, cleaner */
.testimonials {
    padding: 56px 20px 64px;
    background: linear-gradient(180deg, var(--gradient-4) 0%, var(--gradient-5) 100%);
    position: relative;
    margin-top: 0;
}
.testimonials::before {
    content: none;
}
.testimonials::after {
    content: none;
}

.testimonials h2 {
    position: relative;
    display: inline-block;
}

.testimonials h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 2px;
}

.testimonials .container {
    text-align: center;
    position: relative;
    z-index: 1;
}


.testimonials h2 {
    color: var(--dark-color);
}

.testimonials .section-subtitle {
    color: var(--text-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 28px 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 24px rgba(27, 67, 50, 0.06);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid var(--success-color);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(27, 67, 50, 0.08);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}
.google-review-card::before {
    content: none;
}

/* Google-style review cards */
.testimonials-google {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.google-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 1px 3px rgba(60,64,67,.08), 0 4px 8px rgba(60,64,67,.06);
    border: 1px solid rgba(60,64,67,.08);
    border-left: none;
}
.google-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
.google-stars {
    display: flex;
    gap: 2px;
}
.google-star {
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23FBBC04" d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>') no-repeat center;
    background-size: contain;
}
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #5f6368;
    font-weight: 500;
}
.google-icon {
    width: 18px;
    height: 18px;
    display: block;
}
.google-review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #202124;
    margin: 0 0 12px 0;
    font-style: normal;
}
.google-review-meta {
    font-size: 0.8125rem;
    color: #5f6368;
}
.google-reviewer-name {
    font-weight: 600;
    color: #202124;
}
.google-review-date {
    color: #5f6368;
    font-weight: 400;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.stars i {
    margin-right: 5px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 2px;
    position: relative;
    z-index: 2;
}

.testimonial-author strong {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #999;
    font-size: 0.95rem;
    margin-top: 2px;
}

/* CTA Section */
.cta-section {
    background: var(--logo-blue-light);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Contact Section – ultra simple, no extra box */
.contact {
    padding: 40px 16px 48px;
    background: linear-gradient(180deg, var(--gradient-4) 0%, var(--gradient-5) 100%);
    margin-top: 0;
}

.contact::before,
.contact::after {
    content: none;
}

.contact .container {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 18px;
    box-sizing: border-box;
}

.contact h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact .section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact-email-display {
    display: none;
}

.contact-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.contact-illustration {
    display: none;
}

.contact-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.contact-form {
    text-align: left;
    background: transparent;
    padding: 0 0 8px 0;
    border-radius: 0;
    position: relative;
    z-index: 1;
    box-shadow: none;
    max-width: 640px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form .btn {
    width: 100%;
}

.contact-info {
    text-align: left;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: #0052a3;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: #0052a3;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 24px 0;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-logo {
    display: none;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    max-width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0;
    padding-right: 0;
}

.footer-left {
    flex: 0 0 auto;
    text-align: center;
}

.footer-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
}

.footer-contact-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
    align-items: flex-end;
}

.footer-heading {
    display: none;
}

.footer-subheading {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.footer-contact-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    align-items: center;
}

.footer-copyright-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 50px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 8px;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-copyright {
    font-size: 0.85rem;
    margin: 0;
    color: white;
}

.footer-location {
    font-size: 0.85rem;
    margin: 0;
    color: white;
}

.footer-map {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

.footer-logo {
    height: 35px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-right: 0;
}

.footer-simple p {
    font-size: 0.85rem;
    margin: 0;
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--success-color);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        background: var(--gradient-1);
        overflow-x: hidden;
    }

    .nav-brand img {
        height: 120px;
        width: auto;
    }

    .nav-brand {
        order: 1;
        width: 100%;
        flex: 0 0 100%;
        justify-content: center;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(45, 106, 79, 0.12);
    }

    .navbar {
        overflow: visible;
        background: var(--gradient-1);
    }

    .navbar .container {
        padding: 10px 0;
        overflow: visible;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .hamburger {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 6px auto 0;
    }

    .nav-menu {
        order: 3;
        display: none;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 420px;
        margin: 8px 0 0;
        background-color: var(--gradient-2);
        flex-direction: column;
        padding: 0 16px;
        gap: 0;
        box-shadow: none;
        z-index: 999;
        margin-top: 0;
        border-top: 1px solid rgba(45, 106, 79, 0.12);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        border-bottom: 1px solid rgba(45, 106, 79, 0.1);
        width: 100%;
        padding: 0;
    }

    .nav-menu > li > a {
        padding: 15px 12px;
        display: block;
        text-align: center;
    }

    .translate-widget {
        order: 4;
        width: 100%;
        margin: 0;
        padding: 10px 20px;
        border-top: 1px solid rgba(45, 106, 79, 0.12);
        justify-content: center;
        background: var(--gradient-1);
    }

    .translate-widget .goog-te-gadget {
        max-width: 100%;
    }

    .translate-widget select {
        max-width: 100%;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-toggle::after {
        content: '';
        display: inline-block;
        margin-left: auto;
    }

    .dropdown-menu {
        display: none !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: rgba(255,255,255,0.4);
        border: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-sizing: border-box;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: flex !important;
        flex-direction: column;
        max-height: 500px;
    }

    .dropdown-menu li {
        padding: 0;
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(45, 106, 79, 0.08);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
        display: block;
        background-color: transparent;
        border: none !important;
        word-break: break-word;
        text-align: center;
    }

    /* SEO packages layout on mobile */
    #seo-packages {
        padding: 56px 16px 72px;
    }

    #seo-packages .packages-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
        justify-content: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .hero-icon img {
        height: 200px;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text .btn {
        align-self: center;
    }

    .service-hero {
        padding: 70px 16px 70px;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-hero p {
        font-size: 0.98rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .pricing-content {
        grid-template-columns: 1fr;
    }

    .price-tier.highlight {
        transform: scale(1);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }

    /* Mobile Contact Form - Modern Card Style */
    .contact {
        padding: 40px 15px 60px;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        padding: 0;
        background: transparent;
        box-shadow: none;
        animation: none;
    }

    .contact-illustration {
        display: none;
    }

    /* Mobile contact form – centered, simple, no outer box */
    .contact-form {
        border-radius: 0;
        padding: 0 0 8px 0;
        box-shadow: none;
        background: transparent;
        max-width: 520px;
        margin: 0 auto;
        text-align: left;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(26, 58, 82, 0.1);
    }

    .contact-form .btn {
        width: 100%;
        padding: 16px;
        font-size: 1.05rem;
        font-weight: 600;
        animation: buttonGlow 1.8s ease-in-out infinite;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Clean, compact footer contact info on mobile */
    .footer-heading {
        display: none;
    }

    .footer-contact-info {
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .footer-link {
        font-size: 0.85rem;
        display: block;
    }

    .testimonials {
        padding: 40px 20px 48px;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

    .testimonials .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .footer {
        padding: 30px 0;
        text-align: center;
    }

    .footer .container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        padding-right: 0;
        gap: 15px;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-right {
        padding-right: 0;
        width: 100%;
    }

    .footer-contact-right {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-contact-info {
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 10px;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin: 0 0 10px 0;
    }

    .footer-link {
        font-size: 0.9rem;
        display: block;
        margin: 5px 0;
    }

    .footer-copyright {
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
        margin: 15px auto 0;
        max-width: 100%;
    }

    .footer-simple {
        flex-direction: column;
        gap: 10px;
        padding-right: 0;
        margin-top: 0;
        align-items: center;
        justify-content: center;
    }

    .footer-logo {
        height: 30px;
        margin: 10px auto;
    }

    .footer-link {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .footer-copyright {
        font-size: 0.8rem;
        white-space: nowrap;
        margin: 10px 0 0 0;
    }

    .footer-simple {
        flex-direction: column;
        gap: 10px;
        padding-right: 0;
        margin-top: 0;
        align-items: center;
        justify-content: center;
    }

    .footer-logo {
        height: 25px;
    }

    .footer-heading {
        font-size: 1.2rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-simple {
        flex-direction: column;
        gap: 10px;
        padding-right: 0;
        margin-top: 10px;
    }

    .footer-logo {
        height: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 10px 15px;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }

    .service-card,
    .testimonial-card {
        padding: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .price-tier {
        padding: 20px 15px;
    }
}

/* Additional Animation Classes for Laptop/Icons */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-slide-left {
    animation: slide-in-left 0.8s ease-out;
}

.animate-slide-right {
    animation: slide-in-right 0.8s ease-out;
}

.animate-fade {
    animation: fade-in 1s ease-out;
}

.animate-spin {
    animation: spin 4s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
