/* Base styles */
:root {
    --background: #ffffff;
    --foreground: #000000;
    --primary: #007bff;
    --secondary: #6c757d;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
}

.min-h-screen {
    min-height: 100vh;
}

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

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--foreground);
}

.header-nav {
    display: none;
}

.header-nav a {
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--foreground);
    transition: color 0.2s;
}

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

.contact-button {
    padding: 0.5rem 1rem;
    border: 1px solid var(--foreground);
    border-radius: 9999px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.contact-button:hover {
    background: var(--foreground);
    color: var(--background);
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
        gap: 1.5rem;
    }
}

/* Section styles */
section {
    padding: 4rem 0;
}

/* Hero section styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #f9fafb;
}

.hero-container {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--secondary);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s forwards 0.3s;
}

.hero-button {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.2s;
    cursor: pointer;
}

.hero-button:hover {
    transform: scale(1.05);
}

.hero-button:active {
    transform: scale(0.95);
}

.hero-button-primary {
    background-color: var(--primary);
    color: var(--background);
    border: none;
}

.hero-button-secondary {
    background-color: transparent;
    border: 1px solid rgba(0, 123, 255, 0.2);
    color: var(--foreground);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Products section styles */
.products {
    padding: 5rem 0;
    background-color: var(--background);
}

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

.products-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.products-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.products-description {
    font-size: 1.125rem;
    color: var(--secondary);
    max-width: 42rem;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-card {
    background: var(--background);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.product-card.animate {
    animation: fadeInUp 0.6s forwards;
}

.product-content {
    padding: 1.5rem;
}

.product-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.product-button {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--foreground);
    border-radius: 0.25rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.product-button:hover {
    background: var(--foreground);
    color: var(--background);
}

@media (min-width: 768px) {
    .products-title {
        font-size: 2.25rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* About section styles */
.about {
    padding: 5rem 0;
    background-color: var(--background);
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    opacity: 0;
    transform: translateX(-20px);
}

.about-image-wrapper.animate {
    animation: fadeInLeft 0.6s forwards;
}

.about-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content {
    opacity: 0;
    transform: translateX(20px);
}

.about-content.animate {
    animation: fadeInRight 0.6s forwards;
}

.about-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-title {
        font-size: 2.25rem;
    }
}

/* Services section styles */
.services {
    padding: 5rem 0;
    background-color: #f9fafb;
}

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

.services-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.services-header.animate {
    animation: fadeInUp 0.6s forwards;
}

.services-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.services-description {
    font-size: 1.125rem;
    color: var(--secondary);
    max-width: 42rem;
    margin: 0 auto;
}

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

.service-card {
    background: var(--background);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate {
    animation: fadeInUp 0.6s forwards;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--secondary);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Carousel section styles */
.carousel-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

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

.carousel-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.carousel-header.animate {
    animation: fadeInUp 0.6s forwards;
}

.carousel-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.carousel-content {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 2rem;
}

.carousel-item {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: 0;
    transform: translateY(20px);
}

.carousel-item.animate {
    animation: fadeInUp 0.6s forwards;
}

.carousel-card {
    background: var(--background);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s;
}

.carousel-card:hover {
    transform: scale(1.05);
}

.carousel-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.carousel-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.carousel-item-description {
    color: var(--secondary);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--background);
    border: 1px solid var(--foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.2s;
}

.carousel-button:hover {
    background: var(--foreground);
    color: var(--background);
}

.carousel-button-prev {
    left: 0;
}

.carousel-button-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
}

.carousel-dot.active {
    opacity: 1;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .carousel-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* Company Info section styles */
.company-info {
    padding: 5rem 0;
    background-color: var(--background);
}

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

.company-info-header {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
}

.company-info-header.animate {
    animation: fadeInUp 0.6s forwards;
}

.company-info-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.company-info-description {
    font-size: 1.125rem;
    color: var(--secondary);
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item.animate {
    animation: fadeInUp 0.6s forwards;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

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

@media (min-width: 768px) {
    .company-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .company-info-title {
        font-size: 2.25rem;
    }

    .stat-value {
        font-size: 2.25rem;
    }
}

/* Map section styles */
.map-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

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

.map-header {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.map-header.animate {
    animation: fadeInUp 0.6s forwards;
}

.map-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.map-description {
    font-size: 1.125rem;
    color: var(--secondary);
}

.map-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.map-frame-wrapper.animate {
    animation: fadeInUp 0.6s forwards 0.2s;
}

.map-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 768px) {
    .map-title {
        font-size: 2.25rem;
    }
}

/* Footer styles */
.footer {
    background-color: #f3f4f6;
    padding: 3rem 0;
}

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

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

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.newsletter-text {
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background-color: transparent;
}

.newsletter-button {
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--secondary);
}

.legal-links {
    display: flex;
    gap: 1rem;
}

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

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }
}
