/* ============================================================
   MINDBORN SOFTWARE SOLUTIONS — Complete Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   CSS VARIABLES & THEMING
   ========================================================================== */

:root,
[data-theme="light"] {
    /* Brand */
    --primary: #E63946;
    --primary-dark: #C62828;
    --primary-light: #FF6B6B;
    --accent: #FF6B35;

    /* Backgrounds */
    --bg-main: #FAFAFA;
    --bg-secondary: #F0F0F5;
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-solid: #FFFFFF;
    --bg-navbar: rgba(255, 255, 255, 0.88);

    /* Text */
    --text-main: #1A1A2E;
    --text-muted: #444;
    --text-light: #777;
    --text-inverse: #FFFFFF;

    /* Borders & Shadows */
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.25);

    /* Hero */
    --hero-gradient-1: #ffecd2;
    --hero-gradient-2: #fcb69f;
    --hero-gradient-3: #ff9a9e;
    --hero-gradient-4: #fad0c4;
}

[data-theme="dark"] {
    --bg-main: #0A0A1A;
    --bg-secondary: #111128;
    --bg-card: rgba(26, 26, 46, 0.65);
    --bg-card-solid: #16162A;
    --bg-navbar: rgba(10, 10, 26, 0.9);

    --text-main: #E8E8F0;
    --text-muted: #B0B0C0;
    --text-light: #8A8A9A;
    --text-inverse: #FFFFFF;

    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.5);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.4);

    --hero-gradient-1: #1A1A2E;
    --hero-gradient-2: #2A1525;
    --hero-gradient-3: #35101A;
    --hero-gradient-4: #111128;
}

/* ==========================================================================
   BASE RESET & TYPOGRAPHY
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

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

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

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background-color: var(--primary);
    color: var(--text-inverse);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

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

section {
    padding: 7rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-inverse) !important;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-glow), 0 8px 25px rgba(230, 57, 70, 0.35);
    color: var(--text-inverse) !important;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-inverse) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Intermittent spin: spins once, pauses, repeats */
@keyframes intermittent-spin {
    0% { transform: rotate(0deg); }
    5% { transform: rotate(90deg); }
    25% { transform: rotate(90deg); }
    30% { transform: rotate(180deg); }
    50% { transform: rotate(180deg); }
    55% { transform: rotate(270deg); }
    75% { transform: rotate(270deg); }
    80% { transform: rotate(360deg); }
    100% { transform: rotate(360deg); }
}

.spin-logo {
    animation: intermittent-spin 40s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: 50% 50%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    will-change: transform;
}

/* Floating particles */
@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translate(-20px, -70px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.6;
    }
}

.particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle var(--duration) ease-in-out var(--delay) infinite;
    pointer-events: none;
    z-index: 1;
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.35s ease;
}

.navbar.scrolled {
    background: var(--bg-navbar);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

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

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(230, 57, 70, 0.05);
}

/* Show/hide sun/moon icons based on theme */
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hamburger */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    background: linear-gradient(-45deg,
        var(--hero-gradient-1),
        var(--hero-gradient-2),
        var(--hero-gradient-3),
        var(--hero-gradient-4)
    );
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-main);
    opacity: 0.82;
    z-index: 1;
}

[data-theme="dark"] .hero::before {
    opacity: 0.88;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(230, 57, 70, 0.15));
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services {
    background-color: var(--bg-secondary);
}

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

/* Center the 7th card in the last row */
.services-grid .service-card:last-child {
    grid-column: 2;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230,57,70,0.06) 0%, rgba(255,107,53,0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 57, 70, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-inverse);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about {
    background-color: var(--bg-main);
}

.about .section-title,
.about .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: -1rem;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-list {
    margin-top: 1.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-main);
}

.about-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    background: var(--bg-card-solid);
    padding: 2.25rem 1.5rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */

.why-choose-us {
    background-color: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.feature-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 57, 70, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(230,57,70,0.08), rgba(255,107,53,0.06));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-inverse);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact {
    background-color: var(--bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-form {
    padding: 3rem;
}

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

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

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-info {
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-card-solid), var(--bg-secondary));
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: var(--primary);
    color: var(--text-inverse);
}

.info-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.info-text p {
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.map-container {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    height: 220px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background-color: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

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

.footer-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
}

.footer-tagline {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-main);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablets & smaller desktops */
@media (max-width: 1100px) {
    .hero .container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .services-grid .service-card:last-child {
        grid-column: auto;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets */
@media (max-width: 900px) {
    section {
        padding: 5rem 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
    }

    .hero-image {
        max-width: 260px;
    }

    .about .section-title,
    .about .section-subtitle {
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-list li {
        justify-content: center;
    }

    .about-stats {
        max-width: 450px;
        margin: 0 auto;
    }

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

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    /* Mobile Nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-navbar);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.35s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.35rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-image {
        max-width: 200px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact */
    .contact-form,
    .contact-info {
        padding: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.92rem;
    }
}
