/* CSS Variables for Theme */
:root {
    --primary-blue: #4A90E2;
    /* Soft Blue */
    --primary-green: #7ED321;
    /* Soft Green */
    --wood-tone: #8B572A;
    /* Wood Tone */
    --dark-text: #333333;
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

/* Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--wood-tone);
    line-height: 1.1;
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container img,
.hero-image-container svg {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: rotate(-2deg);
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.social-proof h2 {
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge span {
    font-size: 2rem;
    margin-bottom: 10px;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--radius);
    max-width: 400px;
    box-shadow: var(--shadow);
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--wood-tone);
    font-style: normal;
}

/* Why Tlabs Grid */
.why-tlabs {
    padding: 80px 0;
    background-color: #f0f8ff;
}

.why-tlabs h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--wood-tone);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 0;
    /* Remove padding to let image sit flush if desired, or keep it. Let's keep a nice card look */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    overflow: hidden;
    /* For image corners */
    padding-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image img,
.card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-image img,
.card:hover .card-image svg {
    transform: scale(1.05);
    /* Zoom effect */
}

.card h3 {
    margin: 0 20px 10px;
    color: var(--primary-blue);
}

.card p {
    margin: 0 20px;
}

/* Tour Scheduler */
.tour-scheduler {
    padding: 80px 0;
    background: var(--white);
}

.tour-scheduler h2 {
    text-align: center;
    margin-bottom: 40px;
}

.scheduler-widget {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.calendar-options {
    margin-bottom: 25px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.radio-option:hover {
    background-color: #f0fff4;
    border-color: var(--primary-green);
}

.sms-compliance,
.sms-compliance-small {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
}

.sms-compliance-small {
    margin-top: 10px;
}

.hidden-step {
    display: none;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.links a {
    margin: 0 10px;
    text-decoration: underline;
}

.sms-compliance-footer {
    font-size: 0.7rem;
    opacity: 0.7;
    max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}