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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --navbar-height: 95px;
    --footer-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.page-home {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Navbar background - same for all pages */
.navbar {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.page-home .navbar,
.page-about .navbar,
.page-services .navbar,
.page-examples .navbar,
.page-contact .navbar,
.page-privacy .navbar {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    height: var(--navbar-height);
    box-sizing: border-box;
}

.nav-brand a {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    color: #000000;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: block;
}

.nav-brand p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.2;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    width: 100%;
}

.page-home .hero {
    height: calc(100vh - var(--navbar-height) - var(--footer-height));
    margin-top: var(--navbar-height);
    margin-bottom: var(--footer-height);
    box-sizing: border-box;
    min-height: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    color: #000000;
    letter-spacing: 1px;
}

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

@media (min-width: 769px) {
    .hero-subtitle {
        white-space: nowrap;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: none;
}

.floating-card {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    width: 150px;
    height: 150px;
    top: 150px;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    width: 180px;
    height: 180px;
    bottom: 0;
    left: 100px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(16, 185, 129, 0.25));
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: var(--bg-primary);
    min-height: calc(100vh - var(--navbar-height) - var(--footer-height));
    margin-top: var(--navbar-height);
    margin-bottom: var(--footer-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.services .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

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

.services .section-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 200;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: 1px;
}

.services .section-description {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(16, 185, 129, 0.25));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

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

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.375rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

/* About Section */
.about {
    background-color: var(--bg-primary);
    min-height: calc(100vh - var(--navbar-height) - var(--footer-height));
    margin-top: var(--navbar-height);
    margin-bottom: var(--footer-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Examples Section */
.examples {
    background-color: var(--bg-primary);
    min-height: calc(100vh - var(--navbar-height) - var(--footer-height));
    margin-top: var(--navbar-height);
    margin-bottom: var(--footer-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.examples .container {
    width: 100%;
}

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

.examples-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 200;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: 1px;
}

.examples .section-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.example-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.example-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.example-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.example-item-link:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.example-placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 300;
}

.example-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.example-card-logo-wrap {
    padding: 1rem;
    box-sizing: border-box;
}

.example-card-logo {
    width: 100%;
    height: 100%;
    max-height: 140px;
    object-fit: contain !important;
    aspect-ratio: auto !important;
}

.example-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem 0.5rem;
    margin: 0;
}

.example-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 0 1.5rem 0.5rem;
    margin: 0;
}

.example-link {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.example-link-text {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

.example-store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
    margin-top: 0.5rem;
}

.store-badge {
    display: inline-flex;
    position: relative;
    text-decoration: none;
    cursor: default;
    pointer-events: auto;
    width: 135px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.store-badge:hover {
    opacity: 0.85;
}

/* Override .example-item img so badges keep correct aspect ratio */
.example-store-badges .store-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.store-badge-coming-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin-bottom: 0.35rem;
    padding: 0.35rem 0.5rem;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.store-badge-coming:hover .store-badge-coming-text {
    opacity: 1;
    visibility: visible;
}

/* Privacy Section */
.privacy {
    background-color: var(--bg-primary);
    min-height: calc(100vh - var(--navbar-height) - var(--footer-height));
    margin-top: var(--navbar-height);
    margin-bottom: var(--footer-height);
    padding: 60px 20px 80px;
}

.privacy-content {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.privacy-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 200;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: 1px;
    text-align: center;
}

.privacy-app-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-app-icon {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.privacy-subtitle {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-app-heading .privacy-subtitle {
    margin-top: 0;
    margin-bottom: 0;
}

.privacy-app-heading + .privacy-text {
    margin-top: 0;
}

.privacy-intro,
.privacy-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.privacy-intro {
    text-align: center;
}

.privacy-updated {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--bg-primary);
    min-height: calc(100vh - var(--navbar-height) - var(--footer-height));
    margin-top: var(--navbar-height);
    margin-bottom: var(--footer-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.contact-content {
    max-width: 600px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.contact-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 200;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 0.75rem;
}

.contact-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.contact-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-email-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-email-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.contact-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin: 0.75rem 0 0;
}

.contact-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-btn {
    min-width: 160px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 0;
}

.contact-form .form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 0.5rem;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--text-primary);
}

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

.contact-form .btn {
    margin-top: 1rem;
    align-self: center;
    min-width: 120px;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    user-select: none;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    z-index: 1000;
}

/* Footer background - same for all pages */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.page-home .footer,
.page-about .footer,
.page-services .footer,
.page-examples .footer,
.page-contact .footer,
.page-privacy .footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        max-width: 90%;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 3vw, 2.25rem);
    }
    
    .hero-subtitle {
        white-space: normal;
        font-size: 0.95rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--navbar-height);
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
    }
    
    .page-services .nav-menu,
    .page-examples .nav-menu,
    .page-contact .nav-menu,
    .page-privacy .nav-menu {
        background-color: var(--bg-primary);
    }

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

    .nav-menu li {
        padding: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    section {
        padding: 80px 0 40px;
        min-height: 100vh;
    }

    .page-home {
        height: 100vh;
        overflow: hidden;
    }

    .page-home .hero {
        height: calc(100vh - var(--navbar-height) - var(--footer-height));
        margin-top: var(--navbar-height);
        margin-bottom: var(--footer-height);
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        overflow: visible;
    }
    
    .page-home .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        white-space: normal;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        white-space: normal;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px 40px;
    }

    .hero-visual {
        display: none;
    }

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

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .services {
        padding: 0;
        min-height: calc(100vh - var(--navbar-height) - var(--footer-height));
        margin-top: var(--navbar-height);
        margin-bottom: var(--footer-height);
    }

    .services .section-header {
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .examples {
        padding: 40px 1.5rem;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about {
        padding: 1.5rem;
    }
    
    .about-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 1rem;
    }

    .about-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .privacy {
        padding: 1.5rem;
    }

    .privacy-content {
        padding: 0;
    }

    .privacy-subtitle {
        font-size: 1.125rem;
        margin-top: 2rem;
    }

    .privacy-text {
        font-size: 0.95rem;
    }
    
    .nav-link,
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact {
        padding: 1.5rem;
    }
    
    .contact-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 1rem;
    }
    
    .contact-email {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-visual {
        display: block;
    }
    
    .hero-content {
        max-width: 85%;
    }
}

/* Large screens */
@media (min-width: 1025px) {
    .hero-visual {
        display: block;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link {
        padding: 0.5rem;
        min-height: 44px;
    }
    
    .btn {
        min-height: 44px;
        padding: 1rem 2rem;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}
