/* Reset and Base Styles - Cal.com inspired */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Cal.com color palette */
    --cal-primary: #111827;
    --cal-primary-light: #292524;
    --cal-secondary: #6b7280;
    --cal-accent: #3b82f6;
    --cal-accent-hover: #2563eb;
    --cal-background: #ffffff;
    --cal-background-secondary: #f9fafb;
    --cal-border: #e5e7eb;
    --cal-text: #111827;
    --cal-text-secondary: #6b7280;
    --cal-text-muted: #9ca3af;
    --cal-success: #10b981;
    --cal-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --cal-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --cal-radius: 0.5rem;
    --cal-radius-sm: 0.375rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--cal-text);
    background-color: var(--cal-background);
    font-feature-settings: 'cv11', 'ss01';
    font-variation-settings: 'opsz' 32;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cal-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cal-primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--cal-text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.nav-cta {
    background: var(--cal-accent);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--cal-radius-sm);
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--cal-accent-hover);
    transform: translateY(-1px);
}

.nav-mobile {
    display: none;
}

.nav-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.nav-toggle-bar {
    width: 100%;
    height: 3px;
    background: var(--cal-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: white;
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 2.5rem;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-link {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.mobile-menu-link:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: #60a5fa;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-menu-link:hover::after {
    width: 100%;
}

.mobile-menu-cta {
    background: linear-gradient(135deg, var(--cal-accent) 0%, #60a5fa 100%);
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: var(--cal-radius);
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    text-shadow: none;
}

.mobile-menu-cta:hover {
    background: linear-gradient(135deg, #60a5fa 0%, var(--cal-accent) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.mobile-menu.active .mobile-menu-link,
.mobile-menu.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-cta { transition-delay: 0.4s; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cal-background) 0%, var(--cal-background-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e5e7eb" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--cal-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--cal-primary) 0%, var(--cal-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Title letter animation disabled - keeping for future use
.hero-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: letterAppear 0.6s ease-out forwards;
}

@keyframes letterAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
*/

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cal-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--cal-radius);
    box-shadow: var(--cal-shadow);
    min-width: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--cal-shadow-lg);
}

.hero-stat-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cal-accent);
    margin-bottom: 0.5rem;
}

.hero-stat-plus {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cal-accent);
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--cal-text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn {
    padding: 0.875rem 1.75rem;
    border-radius: var(--cal-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--cal-primary);
    color: white;
    box-shadow: var(--cal-shadow);
}

.btn-primary:hover {
    background: var(--cal-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--cal-shadow-lg);
}

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

.btn-secondary:hover {
    border-color: var(--cal-primary);
    transform: translateY(-1px);
}


/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cal-primary);
    text-align: center;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    padding: 10rem 0;
    background: var(--cal-background);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--cal-border);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e5e7eb" fill-opacity="0.2"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

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

.services-container::before {
    content: '';
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cal-accent), transparent);
    border-radius: 2px;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cal-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--cal-primary) 0%, var(--cal-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--cal-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    padding: 3rem;
    border-radius: var(--cal-radius);
    box-shadow: var(--cal-shadow);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--cal-accent) 0%, var(--cal-primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cal-accent);
    line-height: 1;
    min-width: 80px;
    opacity: 0.8;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cal-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: var(--cal-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-feature {
    background: var(--cal-background-secondary);
    color: var(--cal-text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--cal-border);
}

/* About Section */
.about {
    padding: 10rem 0;
    background: var(--cal-background-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.about .container::before {
    content: '';
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cal-accent), transparent);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--cal-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cal-accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--cal-text-secondary);
    font-weight: 500;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--cal-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--cal-shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .about-overlay {
    opacity: 1;
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-overlay p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Portfolio Section */
.portfolio {
    padding: 10rem 0;
    background: var(--cal-background);
    position: relative;
    border-top: 1px solid var(--cal-border);
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.portfolio .container::before {
    content: '';
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cal-accent), transparent);
    border-radius: 2px;
}

.portfolio-subtitle {
    text-align: center;
    color: var(--cal-text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-scroll-container {
    overflow: hidden;
    padding-bottom: 1rem;
    margin: 0 -1.5rem;
    position: relative;
}

.portfolio-grid {
    display: flex;
    gap: 2rem;
    padding: 0 1.5rem;
    min-width: max-content;
    animation: glideScroll 20s linear infinite;
}

.portfolio-scroll-container:hover .portfolio-grid {
    animation-play-state: paused;
}

@keyframes glideScroll {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(calc(-50% + 50vw));
    }
    100% {
        transform: translateX(0);
    }
}

.portfolio-item {
    flex: 0 0 350px;
    background: white;
    border-radius: var(--cal-radius);
    overflow: hidden;
    box-shadow: var(--cal-shadow);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--cal-shadow-lg);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Booking Section - Full width Cal.com integration */
.booking {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
}

.cal-embed {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Cal.com embed iframe styling for full width integration */
.cal-embed iframe {
    width: 100%;
    height: 100vh;
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: auto;
}

/* Mobile: Make widget scrollable */
@media (max-width: 768px) {
    .cal-embed iframe {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .cal-embed iframe::-webkit-scrollbar {
        display: none;
    }
}

/* Footer - Complete Redesign */
.footer {
    background: var(--cal-primary);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.footer-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.footer-cta-btn {
    background: var(--cal-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--cal-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: var(--cal-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--cal-accent);
}

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

.footer-stats {
    display: flex;
    gap: 2rem;
}

.footer-stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cal-accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright p {
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero-container {
        padding: 6rem 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stat {
        min-width: 200px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem;
    }
    
    .service-number {
        font-size: 2rem;
        min-width: auto;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .portfolio-scroll-container {
        margin: 0 -1rem;
    }
    
    .portfolio-grid {
        padding: 0 1rem;
    }
    
    .portfolio-item {
        flex: 0 0 300px;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat {
        min-width: 140px;
        padding: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .footer-stats {
        gap: 1rem;
    }
    
    .footer-cta-btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}