/* =====================================================
   The Technology Mechanics - Main Stylesheet
   ===================================================== */

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

:root {
    --primary-color: #001a4d;
    --primary-light: #0033a0;
    --secondary-color: #f50057;
    --accent-color: #ff6b35;
    --accent-light: #ff8a5b;
    --dark-bg: #0a0e27;
    --light-bg: #f0f4ff;
    --text-dark: #1a2332;
    --text-light: #6b7686;
    --border-color: #e0e6f2;
    --success-color: #00d97e;
    --danger-color: #ff4444;
    --card-shadow: 0 10px 30px rgba(0, 26, 77, 0.15);
    --card-shadow-hover: 0 20px 50px rgba(0, 26, 77, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* =====================================================
   Typography
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* =====================================================
   Navigation Bar
   ===================================================== */

.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #002080 100%);
    color: white;
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 26, 77, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    flex: 1;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: fit-content;
}

.logo-wrapper:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1rem;
    margin-bottom: 0;
    color: white;
    font-family: 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    text-align: center;
}

.tagline {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 0.15rem;
    border-bottom: 2px solid transparent;
    font-size: 0.9rem;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: white;
    border-bottom-color: var(--accent-light);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* =====================================================
   Hero Section
   ===================================================== */

.hero {
    background: linear-gradient(135deg, #1e90ff 0%, #1873cc 50%, #004da6 100%);
    background-attachment: fixed;
    color: white;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.75rem;
    font-family: 'Georgia', 'Garamond', 'Palatino Linotype', serif;
    font-weight: 400;
    font-style: italic;
}

.company-name-hero {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-style: normal;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* =====================================================
   Custom Banners
   ===================================================== */

.custom-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.banner-container {
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    color: white;
}

.banner-container:first-child {
    background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
}

.banner-container:last-child {
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
}

.banner-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 0;
}

.banner-container h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0;
    font-weight: 600;
}

.banner-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-self: flex-start;
    width: 100%;
}

.banner-container ul li {
    color: white;
    font-size: 1rem;
    text-align: left;
    padding-left: 1.5rem;
    position: relative;
}

.banner-container ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.banner-learn-more {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 0.5rem;
}

.banner-learn-more:hover {
    background: white;
    color: #0099cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-elegant-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: white;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.ai-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    font-style: normal;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.highlight-essential {
    font-family: 'Georgia', 'Garamond', serif;
    color: #ff6b35;
    font-style: italic;
    font-weight: 700;
}

.business-package {
    color: white;
    font-weight: 600;
}

.highlight-special {
    font-family: 'Copperplate', 'Palatino Linotype', serif;
    color: #ff4444;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.banner-text-button h3 {
    margin-bottom: 0;
}

/* =====================================================
   CTA Buttons
   ===================================================== */

.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-secondary {
    background-color: var(--secondary-color);
    color: white;
    margin-top: 1.5rem;
}

.cta-button-secondary:hover {
    background-color: #d4003f;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 0, 87, 0.4);
}

.cta-button-secondary:hover::before {
    width: 300px;
    height: 300px;
}

/* =====================================================
   Container Utilities
   ===================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =====================================================
   Banners
   ===================================================== */

.banner {
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 1.5rem 2rem;
}

.banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.banner-header h2 {
    margin: 0;
    color: white;
    font-size: 2rem;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.banner-actions h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

/* AI Strategy Banner */
.ai-strategy-banner {
    background: #f5f5f5;
    background-attachment: fixed;
}

.ai-strategy-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.banner-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.banner-cta {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.75rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    text-align: center;
    margin-top: 2rem;
}

.banner-cta p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Business Essentials Banner */
.business-essentials-banner {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f0ff 100%);
    border-top: 3px solid var(--accent-color);
}

.business-essentials-banner h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
}

/* =====================================================
   AI Strategy (Legacy - Maintained for compatibility)
   ===================================================== */

.ai-strategy {
    background-color: var(--light-bg);
    padding: 2.5rem 2rem;
}

.ai-strategy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-strategy-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.ai-strategy-header h2 {
    margin-bottom: 0;
}

.ai-intro {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.business-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.business-card {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 26, 77, 0.08);
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.business-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Removed - now using banner-cta instead */

/* =====================================================
   Services Overview / Section
   ===================================================== */

.services-overview {
    padding: 2.5rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 26, 77, 0.08);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-top-color: var(--accent-color);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-container > .cta-button {
    display: block;
    margin: 2rem auto 0;
}

/* =====================================================
   Services Content Page
   ===================================================== */

.services-content {
    padding: 2rem 2rem;
}

.service-section {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-section:last-child {
    border-bottom: none;
}

.service-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-list {
    list-style-position: inside;
    list-style-type: none;
    margin-left: 0;
}

.service-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-light);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* =====================================================
   Page Header
   ===================================================== */

.page-header {
    background: linear-gradient(135deg, #00bfff 0%, #0099cc 50%, #0077aa 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   About Page
   ===================================================== */

.about-content {
    padding: 2rem 2rem;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.about-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefits-list {
    list-style-position: inside;
    list-style-type: none;
    margin-left: 0;
}

.benefits-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.expertise-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-top: 3px solid var(--accent-color);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.expertise-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

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

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* =====================================================
   Contact Page
   ===================================================== */

.contact-content {
    padding: 2rem 2rem;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info h3,
.contact-form-wrapper h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* =====================================================
   Contact Form
   ===================================================== */

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 26, 77, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 51, 160, 0.1), 0 0 10px rgba(0, 51, 160, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d3f9d8;
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

/* =====================================================
   Quick Links Section
   ===================================================== */

.quick-links-section {
    background: var(--light-bg);
    padding: 2rem 2rem;
}

.quick-links-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-link-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 26, 77, 0.08);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.quick-link-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.quick-link-card a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* =====================================================
   CTA Section
   ===================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #003dbf 100%);
    background-attachment: fixed;
    color: white;
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* =====================================================
   Footer
   ===================================================== */

.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    color: #c9d1d9;
    padding: 2rem 2rem 0.75rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #c9d1d9;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #30363d;
    color: #8b949e;
}

/* =====================================================
   Responsive Design
   ===================================================== */

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .business-types,
    .services-grid,
    .values-grid,
    .expertise-grid,
    .testimonials-grid,
    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 2.5rem 1.5rem;
    }

    .page-header h2 {
        font-size: 1.75rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container,
    .navbar-container,
    .ai-strategy-container,
    .services-container,
    .footer-container {
        padding: 0 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 0.25rem;
    }

    .nav-menu li a {
        font-size: 0.9rem;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .business-card,
    .service-item,
    .value-item,
    .expertise-item {
        padding: 1.5rem;
    }
}
