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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.text-blue {
    color: #3b82f6;
}

.text-dark {
    color: #111827;
}

.text-gray {
    color: #6b7280;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #111827;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f2937;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: transparent;
    color: #111827;
    text-decoration: none;
    border: 2px solid #111827;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #111827;
    color: white;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: white;
    color: #111827;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: transparent;
    color: white;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #111827;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f2937;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo img {
    height: 2rem;
    width: auto;
    opacity: 1;
}

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

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-facebook, .btn-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-facebook:hover, .btn-instagram:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100vw;
    place-items: center;
    background-color: #ffffff;
    position: relative;
    padding: 2rem;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    text-align: center;
    padding-top: 8rem;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-image {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: flex;
    }
}

.hero-img {
    position: absolute;
    top: -2.5rem;
    right: 0;
    width: 50%;
    height: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid #111827;
    border-radius: 4px;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
}

.badge-text:first-child {
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px solid #111827;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.1;
    margin-right: 0;
}

@media (min-width: 1024px) {
    .hero-title {
        margin-right: 8rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    padding-right: 0;
}

@media (min-width: 1024px) {
    .hero-description {
        padding-right: 8rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100vw;
    place-items: center;
    background-color: #ffffff;
    position: relative;
    padding: 2rem;
    margin-bottom: 9rem;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    text-align: center;
    padding-top: 8rem;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-image {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: flex;
    }
}

.hero-img {
    position: absolute;
    top: -2.5rem;
    right: 0;
    width: 50%;
    height: auto;
}

/* Features Section */
.features {
    background-color: #ffffff;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0 auto;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 8rem;
    height: auto;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Logos Section */
.logos {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.logos-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #374151;
    text-align: center;
    margin-bottom: 3rem;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 1;
}

/* Why ASTETECHS Section */
.why-astetechs {
    padding: 6rem 0;
    background-color: #ffffff;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.why-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.point-dot {
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
    margin-top: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.why-img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Cloud Architecture Section */
.cloud-architecture {
    padding: 6rem 0;
    background-color: #ffffff;
}

.cloud-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cloud-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 24px;
}

/* AI Innovation Section */
.ai-innovation {
    padding: 6rem 0;
    background-color: #ffffff;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-points {
    margin-top: 2rem;
}

.ai-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 24px;
}

/* Impact Section */
.impact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.impact-header {
    text-align: left;
    margin-bottom: 4rem;
    padding-left: 0;
}

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

.stat-card {
    padding: 2rem;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Our Expertise Section */
.our-expertise {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

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

.expertise-card {
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.expertise-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 2rem;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card-dark {
    background-color: #111827;
    color: white;
    border-color: #111827;
}

.pricing-header-card {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card-dark .pricing-title {
    color: white;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-card-dark .pricing-price {
    color: white;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #6b7280;
}

.pricing-card-dark .feature-item {
    border-bottom-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.feature-item:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 32rem;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #6b7280;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: #ffffff;
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
}

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

/* Form Messages */
#form-messages {
    margin-bottom: 1rem;
}

.message {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.message-success {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.message-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background-color: #ffffff;
}

.cta-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.cta-content {
    padding: 3rem;
}

.cta-badge {
    display: inline-block;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

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

.cta-image {
    height: 100%;
    min-height: 400px;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: #6b7280;
    font-size: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: #3b82f6;
    text-decoration: none;
    border: 1.5px solid #e5e7eb;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: #e5e7eb;
    margin: 1.5rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-link {
    color: #3b82f6;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

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

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

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
}

.animate-bounce-subtle {
    animation: bounce 2s infinite;
}

.animate-pulse-subtle {
    animation: pulse 3s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .why-content,
    .cloud-content,
    .ai-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
    }
    
    .cta-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero {
        padding: 6rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .features-grid,
    .stats-grid,
    .pages-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        min-width: 100%;
        max-width: 100%;
    }

    .logos-grid {
        gap: 2rem;
    }

    .logo-img {
        height: 2rem;
    }

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

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .feature-card,
    .stat-card,
    .page-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .cta-content {
        padding: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-toggle,
    .btn-primary,
    .btn-secondary,
    .btn-cta,
    .btn-submit {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero,
    .features,
    .why-astetechs,
    .cloud-architecture,
    .ai-innovation,
    .impact,
    .example-pages,
    .pricing,
    .contact,
    .cta {
        page-break-inside: avoid;
    }
}
