:root {
    /* Primary Color Palette */
    --primary-color: #4bd7a9;
    --primary-hover: #3ead88;
    --secondary-color: #29435d;
    --accent-color: #e2d390;

    /* Neutral Colors */
    --text-main: #2c3e44;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f4f7f6;
    --bg-white: #ffffff;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 140px;

    /* Typography */
    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Header / Navigation */
header {
    background: var(--bg-white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    height: 120px;
    background-image: url('../images/logo.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    width: 400px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .logo {
        height: 70px;
        width: 250px;
    }
}

.header-contact {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 100px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2a3a 100%);
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg_top_7.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: overlay;
    z-index: 0;
}

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

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 400;
    margin-bottom: 40px;
}

/* Glass Card Form */
.quote-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    align-items: Center;
    justify-content: center;
}

.form-group {
    flex: 1;
}

.input-field {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-field:focus {
    border-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(75, 215, 169, 0.4);
}

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

.btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* Trust Indicators */
.trust-bar {
    background: var(--bg-white);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.trust-brands {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.7;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.brand-item {
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 4px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    text-align: center;
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(75, 215, 169, 0.2);
    line-height: 1;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 50px 0 20px;
    font-size: 0.9rem;
}

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

.footer-links h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

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

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Utilities */
.text-highlight {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .quote-form-container {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
    }
}