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

:root {
    --anthracite: #2C3E50;
    --orange: #E67E22;
    --light-grey: #ECF0F1;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(44, 62, 80, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    display: block;
    color: var(--light-grey);
    font-weight: 600;
    margin-top: 12px;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    color: var(--light-grey);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: #D35400;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 126, 34, 0.5);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(230, 126, 34, 0.6);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--anthracite);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--light-grey);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), #D35400);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--anthracite);
}

.benefit-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-grey) 0%, #D5DBDB 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), #D35400);
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--anthracite);
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
}

.process-connector {
    display: none;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr auto 1fr auto 1fr;
    }
    
    .process-connector {
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--orange), #D35400);
        position: relative;
    }
    
    .process-connector::after {
        content: '';
        position: absolute;
        right: -6px;
        top: -4px;
        width: 10px;
        height: 10px;
        background: var(--orange);
        border-radius: 50%;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info {
    position: sticky;
    top: 100px;
}

.form-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--anthracite);
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--orange);
}

.contact-form {
    background: var(--light-grey);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 568px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--orange), #D35400);
    color: var(--white);
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
    margin-bottom: 16px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 126, 34, 0.5);
}

.submit-button:active {
    transform: translateY(0);
}

.privacy-notice {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

.privacy-notice a {
    color: var(--orange);
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--anthracite);
    color: var(--light-grey);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--light-grey);
    font-size: 0.95rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-grey);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .benefits,
    .process,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .contact-info {
        position: static;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .benefit-card,
    .process-step {
        opacity: 0;
        animation: fadeIn 0.6s ease-out forwards;
    }
    
    .benefit-card:nth-child(1) { animation-delay: 0.1s; }
    .benefit-card:nth-child(2) { animation-delay: 0.2s; }
    .benefit-card:nth-child(3) { animation-delay: 0.3s; }
    .benefit-card:nth-child(4) { animation-delay: 0.4s; }
    
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
}

