/* ============================================
   CSS Variables - Brand Colors
   ============================================ */
:root {
    --primary-orange: #FF6B35;
    --primary-blue: #1E3A5F;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 96px 0;
    --container-max-width: 1180px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 72px;
    padding: 72px 0 48px;
    background: var(--dark-gray);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.5);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.92), rgba(44, 44, 44, 0.82));
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.hero-copy {
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 3.4vw, 2.8rem);
    line-height: 1.1;
    color: var(--white);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-pills span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

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

.btn-hero-primary {
    position: relative;
    overflow: hidden;
    font-size: 1.05rem;
    padding: 16px 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 14px 38px rgba(255, 107, 53, 0.35);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-hero-primary:hover::before {
    transform: translateX(100%);
}

.btn-phone {
    background: #ffffff;
    border: 2px solid var(--primary-orange);
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 15px 22px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.01em;
}

.btn-phone svg {
    width: 18px;
    height: 18px;
}

.btn-phone:hover {
    border-color: var(--primary-orange);
    background: #fff5f0;
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.stat-item {
    padding: 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-orange);
    margin-bottom: 0.35rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
    .hero-stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.65rem;
    }
    .hero {
        padding: 72px 0 40px;
    }
}

.hero-visual {
    display: grid;
    gap: 0.6rem;
    align-self: flex-start;
}

.hero-photo {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

.hero-caption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #E55A2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-block {
    width: 100%;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--light-gray);
    position: relative;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.25);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 1.25rem;
    background: rgba(255, 107, 53, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.service-description {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card.collapsed .service-description {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-points {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--text-light);
    font-size: 0.95rem;
    padding-left: 1rem;
}

.service-card.collapsed .service-points {
    display: none;
}

.service-points li {
    list-style: disc;
}

.service-toggle {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.95rem;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    background: #f8f9fb;
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.service-toggle:hover {
    color: var(--primary-orange);
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.08);
}

.service-toggle:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

.toggle-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.service-card:not(.collapsed) .toggle-icon {
    transform: rotate(45deg);
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.about-text {
    padding-right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.75;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-list-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fafafa;
}

.about-list-item h3 {
    margin: 0 0 0.35rem;
    color: var(--primary-blue);
    font-size: 1.05rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.about-badges span {
    background: rgba(30, 58, 95, 0.06);
    color: var(--primary-blue);
    border: 1px solid rgba(30, 58, 95, 0.15);
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
    background: var(--light-gray);
}

.process {
    background: #fdfbf9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.process-card {
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 0.65rem;
}

.process-step {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.portfolio-card {
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.portfolio-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.portfolio-card figcaption {
    padding: 1.25rem;
    display: grid;
    gap: 0.5rem;
}

.portfolio-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin: 0;
}

.portfolio-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.contact-card {
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 1.5rem;
    background: #fafafa;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.contact-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-card .small {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-card ul {
    margin: 0.25rem 0 0;
    padding-left: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    margin-top: 0.35rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--dark-gray) 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.footer-top {
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section {
    position: relative;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--primary-orange);
    padding: 2px;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    list-style: none;
}

.footer-section ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-section ul li svg {
    width: 18px;
    height: 18px;
    color: var(--primary-orange);
    flex-shrink: 0;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-section ul li a span {
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-section ul li a:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.footer-section ul li a:hover span {
    transform: translateX(3px);
}

.footer-services-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    cursor: default;
}

.footer-services-list li span {
    color: rgba(255, 255, 255, 0.85);
    display: inline-block;
}

.footer-services-list li:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: block;
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--primary-orange);
}

.footer-contact-item div {
    flex: 1;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Mobile Responsive Design
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Navigation */
    .navbar {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        padding: 8px;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        padding: 1.25rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        transition: all 0.3s ease;
    }
    
    .nav-link:active {
        background: var(--light-gray);
        color: var(--primary-orange);
        padding-left: 1.5rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Hero */
    .hero {
        margin-top: 0;
        padding: 64px 0 56px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
    }
    
    .hero-pills span {
        font-size: 0.9rem;
        width: 100%;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.65rem;
    }
    
    .btn-hero-primary,
    .btn-phone {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .hero-photo img {
        max-height: 260px;
    }
    
    /* Services - Mobile Slider */
    .services {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.25rem;
        padding: 1rem 16px 2rem;
        margin: 0 -16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-padding: 0 16px;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        min-width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* About */
    .about {
        padding: 50px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        background: var(--light-gray);
        border-radius: 8px;
    }
    
    .about-image {
        margin-top: 1rem;
    }
    
    .about-image img {
        min-height: 300px;
    }
    
    /* Portfolio */
    .portfolio {
        padding: 50px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .portfolio-card img {
        height: 200px;
    }
    
    /* Contact */
    .contact {
        padding: 50px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group {
        gap: 0.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-block {
        padding: 16px;
        font-size: 1rem;
        border-radius: 10px;
        min-height: 52px;
    }
    
    /* Footer - Mobile Enhanced */
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.25rem;
    }
    
    .footer-logo-img {
        width: 55px;
        height: 55px;
    }
    
    .footer-logo h3 {
        font-size: 1.4rem;
    }
    
    .footer-tagline {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1.25rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .social-link svg {
        width: 22px;
        height: 22px;
    }
    
    .footer-section {
        text-align: left;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-section:last-of-type {
        border-bottom: none;
    }
    
    .footer-section h4 {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
        color: var(--white);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .footer-section h4::after {
        width: 35px;
        height: 3px;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .footer-section ul {
        gap: 1rem;
    }
    
    .footer-section ul li {
        padding: 0.5rem 0;
    }
    
    .footer-section ul li,
    .footer-section ul li a,
    .footer-section ul li span {
        font-size: 0.95rem;
    }
    
    .footer-section ul li svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-services-list li {
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        margin-bottom: 0.5rem;
        transition: var(--transition);
    }
    
    .footer-services-list li:active {
        background: rgba(255, 255, 255, 0.08);
        transform: scale(0.98);
    }
    
    .footer-contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
        background: rgba(255, 255, 255, 0.06);
        border-left: 3px solid var(--primary-orange);
    }
    
    .footer-contact-item:active {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(3px);
    }
    
    .footer-contact-item svg {
        width: 22px;
        height: 22px;
        margin-top: 0;
    }
    
    .footer-contact-item p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .footer-contact-item a {
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        margin-top: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom-content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        transition: var(--transition);
    }
    
    .footer-links a:active {
        background: rgba(255, 107, 53, 0.2);
        transform: scale(0.95);
    }
    
    .footer-links span {
        display: none;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Floating Action Button for Mobile */
    .mobile-fab {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: var(--primary-orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
        z-index: 999;
        transition: all 0.3s ease;
        text-decoration: none;
        color: var(--white);
        animation: pulseFAB 2s infinite;
    }
    
    .mobile-fab:active {
        transform: scale(0.9);
    }
    
    .mobile-fab svg {
        width: 28px;
        height: 28px;
    }
    
    @keyframes pulseFAB {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
        }
        50% {
            box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
        }
    }
}

/* Hide FAB on desktop */
@media (min-width: 769px) {
    .mobile-fab {
        display: none;
    }
}

/* Additional Mobile Enhancements */
@media (max-width: 768px) {
    /* Better touch targets */
    button,
    a,
    input,
    select,
    textarea {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Smooth scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent text selection on buttons */
    .btn,
    .mobile-fab {
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Improve form inputs on mobile */
    input[type="tel"],
    input[type="email"],
    input[type="text"] {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better focus states for mobile */
    *:focus-visible {
        outline: 3px solid var(--primary-orange);
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    /* Improve service card touch interaction */
    .service-card:active {
        transform: scale(0.98);
    }
    
    /* Better portfolio navigation on mobile */
    .portfolio-slider {
        touch-action: pan-y pinch-zoom;
    }
    
    /* Improve scrollbar visibility for services */
    .services-grid {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-orange) transparent;
    }
    
    .services-grid::-webkit-scrollbar {
        display: block;
        height: 4px;
    }
    
    .services-grid::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .services-grid::-webkit-scrollbar-thumb {
        background: var(--primary-orange);
        border-radius: 2px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .hero-highlight {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats-grid {
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .service-card {
        min-width: 90%;
        padding: 2rem;
    }
    
    .portfolio-card img {
        height: 200px;
    }
    
    /* Footer - Small Mobile Enhanced */
    .footer-top {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-brand {
        padding-bottom: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo h3 {
        font-size: 1.25rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-section {
        padding: 1.25rem 0;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-section h4::after {
        width: 30px;
    }
    
    .footer-section p,
    .footer-section ul li,
    .footer-section ul li a,
    .footer-section ul li span {
        font-size: 0.9rem;
    }
    
    .footer-section ul li svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-services-list li {
        padding: 0.625rem;
    }
    
    .footer-contact-item {
        padding: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-contact-item svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-contact-item p,
    .footer-contact-item a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
    }
    
    .footer-bottom-content {
        font-size: 0.85rem;
        gap: 0.875rem;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.45rem 0.875rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

