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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    p {
        font-size: 1.25rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: #f97316;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #f97316;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.85)), url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content {
    text-align: center;
    padding: 5rem 1rem;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.diagonal-cut-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background-color: #ffffff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.diagonal-cut-bottom-alt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background-color: #f8fafc;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.diagonal-cut-bottom-primary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background-color: #1e3a8a;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
    margin-top: -5rem;
    padding-top: 8rem;
}

.content-box {
    max-width: 56rem;
    margin: 0 auto;
}

.content-box p {
    color: #64748b;
}

.highlight-text {
    color: #1e3a8a !important;
    font-weight: 600;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    position: relative;
    margin-top: -5rem;
    padding-top: 8rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
    margin-top: -5rem;
    padding-top: 8rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

.process-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.process-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.process-image {
    height: 12rem;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.process-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.process-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #1e3a8a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.process-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    position: relative;
    margin-top: -5rem;
    padding-top: 8rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}

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

.about-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-content p {
    color: #64748b;
    font-size: 1.125rem;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #1e3a8a;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.trust-text {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #1e3a8a;
    color: white;
    position: relative;
    margin-top: -5rem;
    padding-top: 8rem;
}

.contact-section h2 {
    color: white;
}

.contact-subtitle {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-link:hover {
    color: #f97316;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 0;
}

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

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    opacity: 0.8;
    line-height: 1.75;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

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