:root {
    --primary: #2563eb;       /* Corporate Blue */
    --primary-dark: #1d4ed8;
    --accent: #f59e0b;        /* Amber Accent */
    --dark: #0f172a;          /* Slate Dark */
    --slate: #475569;
    --light-bg: #f8fafc;      /* Light Soft Gray */
    --white: #ffffff;
    --border: #e2e8f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate);
    background-color: var(--white);
    line-height: 1.6;
}

/* Floating "Go Back" Circle Button */
.back-to-templates {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 99999;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #a8201a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
    animation: flashPulse 1.8s infinite;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.back-to-templates i {
    font-size: 1rem;
    margin-bottom: 2px;
}

.back-to-templates:hover {
    background-color: #801813;
    color: #ffffff;
    transform: scale(1.1);
    animation: none;
}

@keyframes flashPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 32, 26, 0.8);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 0 14px rgba(168, 32, 26, 0);
        opacity: 0.8;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(168, 32, 26, 0);
        opacity: 1;
    }
}

/* Top Social Header Bar */
.top-social-bar {
    background-color: var(--dark);
    color: #94a3b8;
    padding: 8px 5%;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-social-bar a {
    color: #94a3b8;
    margin-left: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.top-social-bar a:hover {
    color: var(--white);
}

/* Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1200&q=80') center/cover;
    color: var(--white);
    padding: 120px 5% 140px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.hero p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 35px;
}

/* Global Section Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--dark);
    margin-top: 5px;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--slate);
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
}

.feature-list i {
    color: var(--primary);
}

/* Services Section */
.bg-light {
    background-color: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 35px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--slate);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-info {
    background-color: var(--dark);
    color: var(--white);
    padding: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 35px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.contact-socials a:hover {
    background-color: var(--primary);
}

.contact-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--primary);
}
/* Redesigned Dark Modern Contact Section */
.contact-section-redesign {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 60px 5%;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-redesign-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Left Column - Floating Contact Info Badges */
.contact-redesign-info h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-redesign-info p {
    color: #94a3b8;
    margin-bottom: 35px;
    font-size: 1rem;
}

.info-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.info-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateX(6px);
}

.badge-icon {
    width: 46px;
    height: 46px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid var(--primary);
    color: #60a5fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.badge-text span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    font-weight: 700;
}

.badge-text p {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Floating Social Row */
.social-pill-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-pill-row span {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-right: 8px;
}

.social-pill-row a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-pill-row a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Right Column - Modern Form Container */
.contact-redesign-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    color: var(--dark);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-header-text {
    margin-bottom: 25px;
}

.form-header-text h3 {
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 700;
}

.form-header-text p {
    font-size: 0.85rem;
    color: var(--slate);
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-redesign-form-box .form-group {
    margin-bottom: 18px;
}

.contact-redesign-form-box label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-redesign-form-box .form-control {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.contact-redesign-form-box .form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-submit-glow {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-glow:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

@media (max-width: 900px) {
    .contact-redesign-grid {
        grid-template-columns: 1fr;
    }
    .form-row-2col {
        grid-template-columns: 1fr;
    }
}

/* Side-by-Side Dual Container Layout */
.about-dual-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; /* Increased gap between the two containers from 30px to 50px */
    align-items: stretch;
}

.about-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px; /* Increased internal card padding from 40px to 50px */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.08);
    border-color: #bfdbfe;
}

.about-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 25px;
    width: fit-content;
}

.about-card h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.about-card p {
    color: var(--slate);
    font-size: 0.98rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Card 1 Mini Image */
.about-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}

/* Feature Check List */
.about-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-feature-list li {
    font-size: 0.92rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-list li i {
    color: #10b981;
    font-size: 1rem;
}

/* Card 2 Metric Grid */
.about-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.metric-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.metric-box h4 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 4px;
}

.metric-box p {
    font-size: 0.82rem;
    color: var(--slate);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 900px) {
    .about-dual-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Modern Small Business Footer */
footer {
    background-color: #090d16;
    color: #94a3b8;
    padding-top: 70px;
    border-top: 1px solid #1e293b;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

/* Accent Underline for Column Titles */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #94a3b8;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Footer Contact Details */
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--primary);
    margin-top: 4px;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Copyright Bar */
.footer-bottom {
    background-color: #05080e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 5%;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #94a3b8;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .about-wrapper, .contact-wrapper { grid-template-columns: 1fr; }
    .contact-form { padding: 30px; }
    .top-social-bar, .nav-links { display: none; }
}