/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #5D101D;  /* Deep Maroon */
    --primary-light: #7a1f2e;
    --secondary-color: #1A3C34; /* Dark Green */
    --accent-color: #D4AF37; /* Gold */
    --background-color: #F9F7F2; /* Cream/Off-white */
    --text-color: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

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

/* Header */
header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--background-color), #efe8d8);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.hero .emotional-line {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(93, 16, 29, 0.3);
}

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

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

.btn-secondary:hover {
    background-color: rgba(93, 16, 29, 0.05);
}

.hero-image {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;

    margin: 20px auto 0;   /* top | left-right | bottom */

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 4px solid var(--white);
}


/* Trust Section */
.trust-section {
    padding: 60px 0;
    background-color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--background-color);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent-color);
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.trust-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.trust-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Image Showcase */
.showcase {
    padding: 60px 0;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.showcase-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Lead Form Section */
.lead-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-align: center;
}

.form-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    max-width: 450px;
    margin: 30px auto 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: var(--text-color);
}

.form-container h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background-color: #25D366; /* WhatsApp Green for clear intent */
    color: white;
    font-weight: 600;
}

.submit-btn:hover {
    background-color: #128C7E;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: rgba(255,255,255,0.8);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.privacy {
    font-size: 0.8rem;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Thank You Page */
.thank-you-page {
    text-align: center;
    padding: 80px 20px;
}

.thank-you-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.check-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
}

.next-steps {
    text-align: left;
    background: var(--background-color);
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.next-steps li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .form-container {
        padding: 40px;
    }
}
