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

:root {
    --primary-blue: #1a4387;
    --secondary-blue: #007bff;
    --accent-red: #e4002b;
    --accent-orange: #ff8c00;
    --accent-yellow: #ffd700;
    --neutral-light: #f8f8f8;
    --text-dark: #333333;
    --white: #ffffff;
    
    --font-primary: 'Roboto', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.25);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

:focus {
    outline: 2px solid var(--secondary-blue);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* ==================== HEADER ==================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height var(--transition-normal);
}

.header.scrolled .header-inner {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 64px;
    width: auto;
    transition: height var(--transition-normal);
}

.header.scrolled .logo img {
    height: 48px;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

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

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

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--accent-red);
    color: var(--white);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #c40024;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
}

.phone-icon-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon-mobile svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: right var(--transition-normal);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--neutral-light);
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
}

.mobile-nav ul {
    padding: 20px;
}

.mobile-nav li {
    border-bottom: 1px solid var(--neutral-light);
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 18px;
    color: var(--text-dark);
}

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

.mobile-nav .cta-button {
    width: 100%;
    margin-top: 20px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--text-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 67, 135, 0.85) 0%,
        rgba(0, 123, 255, 0.7) 50%,
        rgba(26, 67, 135, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    color: var(--white);
    padding: 40px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.95;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero .cta-button {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-parallax {
    transform: translateY(calc(var(--scroll-y) * 0.3));
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-light);
    transition: all var(--transition-normal);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

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

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-text > p {
    color: #666;
    margin-bottom: 24px;
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature svg {
    width: 24px;
    height: 24px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    color: var(--text-dark);
}

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

.about-image img {
    width: 100%;
    height: auto;
}

/* ==================== CONTACT FORM SECTION ==================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-section .section-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-light);
}

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

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

.form-group label span {
    color: var(--accent-red);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-blue);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

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

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.submit-btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-content {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 24px;
    height: 24px;
    color: var(--accent-yellow);
    fill: var(--accent-yellow);
}

.testimonial-content blockquote {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--primary-blue);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.carousel-btn:hover svg {
    color: var(--white);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

/* ==================== PAGE HERO ==================== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-blue);
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 67, 135, 0.9), rgba(0, 123, 255, 0.8));
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0.95;
}

/* ==================== SERVICES PAGE ==================== */
.services-detailed {
    padding: 80px 0;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-light);
    transition: all var(--transition-normal);
}

.service-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-blue);
}

.service-item-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 16px;
}

.service-item-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-item-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-item-content p {
    color: #666;
    line-height: 1.7;
}

/* ==================== ABOUT PAGE ==================== */
.about-story {
    padding: 80px 0;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.about-story-text h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.about-story-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.why-choose-us {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

.why-choose-item {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.why-choose-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    margin: 0 auto 20px;
}

.why-choose-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.why-choose-item h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.why-choose-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.contact-info-item h3 {
    font-size: 1.125rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-info-item p,
.contact-info-item a {
    color: #666;
    font-size: 0.95rem;
}

.contact-info-item a:hover {
    color: var(--secondary-blue);
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container img {
    width: 100%;
    height: auto;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.cta-section .cta-button {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.125rem;
}

.cta-section .cta-button:hover {
    background-color: #c40024;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #999;
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #999;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-services li {
    color: #999;
    font-size: 0.9rem;
    padding-left: 16px;
    position: relative;
}

.footer-services li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
}

.footer-contact p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #999;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent-yellow);
}

.footer-cta {
    margin-top: 20px;
}

.footer-cta .cta-button {
    background-color: var(--accent-red);
    font-size: 0.9rem;
    padding: 10px 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #777;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--accent-yellow);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    margin-top: 20px;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent-yellow);
}

.trust-badge span {
    font-size: 0.875rem;
    color: var(--white);
}

/* ==================== ANIMATIONS ==================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-animate {
        opacity: 1;
        transform: none;
    }
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablet */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-form {
        padding: 48px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-item {
        grid-template-columns: auto 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .page-hero h1 {
        font-size: 3rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .header {
        padding: 0;
    }
    
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 40px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.375rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% / 3);
        padding: 0 10px;
    }
    
    .testimonials-track {
        transform: translateX(0);
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .page-hero {
        min-height: 60vh;
    }
    
    .page-hero h1 {
        font-size: 3.5rem;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .container {
        max-width: 1280px;
    }
}

/* Mobile First Adjustments */
@media (max-width: 767px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-section,
    .about-section,
    .contact-section,
    .testimonials-section,
    .services-detailed,
    .about-story,
    .why-choose-us,
    .contact-info-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
}

/* Small Phone */
@media (max-width: 374px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
