:root {
    --primary-orange: #FF6B35;
    --light-orange: #fff5f1;
    --dark-bg: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    padding: 15px 0;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0.9rem !important;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

.phone-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.phone-link:hover {
    color: #e55a2a;
}

.phone-link i {
    font-size: 16px;
}

.get-started-btn {
    background: var(--dark-bg);
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    transition: all 0.3s;
    border: none;
    font-weight: 600;
    font-size: 15px;
}

.get-started-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    font-weight: 500;
    color: var(--primary-orange);
    text-decoration: none;
}

.blog-link:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .logo {
        font-size: 28px;
    }

    .navbar-nav {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .nav-link {
        padding: 0.6rem 0 !important;
    }

    .phone-link {
        margin: 10px 0;
    }
}

.blogs-section {
    padding: 80px 0;
}

.blogs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* keeps image ratio */
    display: block;
}

.blogs-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.blogs-row.reverse {
    flex-direction: row-reverse;
}

/* Image placeholder */
.blogs-image {
    width: 280px;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;        /* IMPORTANT */
    flex-shrink: 0;
    background: #fff;
    flex: 0 0 360px;
     
}

/* Text */
.blogs-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blogs-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    max-width: 420px;
}

/* Responsive */
@media (max-width: 768px) {
    .blogs-row,
    .blogs-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .blogs-image {
        width: 100%;
        height: 420px;
        aspect-ratio: 475 / 473;
        border-radius: 30px;
        flex: none;
        object-fit: cover;
    }

    .blogs-text {
        text-align: left;
    }

    .blogs-text p {
        max-width: 100%;
    }
}