/* ===== CSS Variables ===== */
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #1a1a2e;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #fff;
    --bg-cream: #fef5f0;
    --bg-peach: #ffeee6;
    --bg-dark: #1a1a2e;
    --border-color: #eee;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-dark {
    background: var(--secondary-color);
    color: white;
}

.btn-dark:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: box-shadow 0.3s ease;
    height: auto;
    min-height: 70px;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.logo i {
    color: var(--primary-color);
    font-size: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    padding: 12px 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1600;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-peach) 0%, var(--bg-cream) 50%, var(--bg-light) 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 180px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.3), transparent);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    transform: rotate(-5deg);
}

.hero-bg-text {
    position: absolute;
    bottom: -30px;
    right: 0;
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 700;
    color: rgba(255, 107, 53, 0.1);
    white-space: nowrap;
    pointer-events: none;
    font-family: var(--font-heading);
    overflow: hidden;
    max-width: 100%;
}

/* ===== Animations ===== */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

/* ===== Trusted Section ===== */
.trusted-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.trusted-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 40px;
}

.highlight {
    color: var(--primary-color);
}

.logo-marquee {
    overflow: hidden;
    position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.logo-item:hover {
    opacity: 1;
    color: var(--text-dark);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Problem Section ===== */
.problem-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}

.problem-left .btn {
    margin-bottom: 30px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    color: var(--text-light);
}

.problem-list i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
}

.problem-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.problem-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-peach);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon i {
    color: var(--primary-color);
    font-size: 22px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.about-image-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--bg-peach);
    border-radius: 20px;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.about-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.about-date {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 30px;
}

.services-tabs {
    display: inline-flex;
    gap: 10px;
    background: white;
    padding: 5px;
    border-radius: 50px;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: white;
}

.tab-btn:not(.active):hover {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition-normal);
}

.service-images img:hover {
    transform: scale(1.05);
}

.services-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-normal);
}

.nav-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ===== Testimonial Section ===== */
.testimonial-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

.testimonial-content {
    grid-row: span 2;
}

.testimonial-content .section-title {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.5;
}

.highlight-text {
    background: linear-gradient(to right, var(--bg-peach), var(--bg-cream));
    padding: 2px 8px;
    border-radius: 5px;
}

.testimonial-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
}

.quote-card {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.quote-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more i {
    transition: var(--transition-normal);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== Video Section ===== */
.video-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.video-card.large {
    grid-row: span 2;
}

.video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.play-btn i {
    font-size: 24px;
    color: var(--primary-color);
    margin-left: 5px;
}

.play-btn.small {
    width: 50px;
    height: 50px;
}

.play-btn.small i {
    font-size: 16px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ===== Blog Section ===== */
.blog-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.blog-description {
    font-size: 14px;
    color: var(--text-light);
    max-width: 400px;
    margin-top: 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.blog-card {
    background: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card.featured .blog-image img {
    height: 300px;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card.small {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.blog-card.small .blog-image img {
    height: 100%;
    min-height: 180px;
}

.blog-card.small .blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 30px;
    line-height: 1.4;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-light);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.footer-subscribe h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: var(--transition-normal);
}

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

.subscribe-form button {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
}

.subscribe-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer-links a {
    font-size: 14px;
    color: var(--text-light);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bg-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(60px, 12vw, 150px);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    pointer-events: none;
    font-family: var(--font-heading);
}

/* ===== Video Modal ===== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* ===== Mobile Overlay ===== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1500;
    padding: 100px 40px 40px;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    font-size: 20px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

/* ===== Responsive Design ===== */
/* ===== Tablet Landscape ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-wrapper {
        width: 300px;
        height: 380px;
        margin: 0 auto;
    }

    .problem-grid,
    .about-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card.large {
        grid-row: auto;
    }

    .blog-card.small {
        grid-template-columns: 1fr;
    }
    
    .hero-bg-text {
        font-size: 100px;
        right: -20px;
    }
}

/* ===== Tablet Portrait ===== */
@media (max-width: 768px) {
    .nav-links,
    .nav-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Menu Styles */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.mobile-active a {
        padding: 12px 20px;
        border-radius: 8px;
        text-align: center;
    }
    
    .nav-links.mobile-active a:hover {
        background: var(--bg-cream);
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
    }
    
    .hero-bg-text {
        font-size: 60px;
        right: 0;
        bottom: -15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        flex-wrap: wrap;
    }

    .video-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .image-wrapper {
        width: 250px;
        height: 320px;
    }
    
    .hero-badge {
        right: -10px;
        padding: 8px 15px;
        font-size: 10px;
    }
    
    .problem-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
    }

    .blog-card.small {
        grid-template-columns: 120px 1fr;
    }
    .blog-card.small .blog-image img {
        min-height: 120px;
    }
}

/* ===== Mobile Phones ===== */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }
    
    .hero {
        padding: 80px 0 30px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .image-wrapper {
        width: 220px;
        height: 280px;
    }
    
    .hero-badge {
        position: relative;
        right: auto;
        bottom: auto;
        transform: none;
        margin-top: 15px;
        display: inline-block;
    }
    
    .hero-bg-text {
        display: none;
    }

    .about-stats {
        flex-direction: column;
        gap: 30px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form button {
        width: 100%;
        border-radius: 50px;
        height: 50px;
    }
    
    .problem-list li {
        font-size: 14px;
    }
    
    .trusted-title {
        font-size: 22px;
    }
    
    .logo-item {
        font-size: 14px;
    }
    
    .logo-marquee {
        max-width: 100%;
        overflow: hidden;
    }
    
    .logo-track {
        gap: 30px;
    }

    .subscribe-form button {
        width: 100%;
        height: 48px;
        border-radius: 50px;
        font-size: 16px;
    }

    .mobile-menu-btn span {
        width: 22px;
    }

    .testimonial-content .section-title {
        font-size: 20px;
        line-height: 1.4;
    }
    .quote-card {
        padding: 20px;
    }
    .quote-card p {
        font-size: 14px;
    }
}

/* ===== Extra Small Devices ===== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .image-wrapper {
        width: 180px;
        height: 230px;
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Selection ===== */
::selection {
    background: var(--primary-color);
    color: white;
}

/* ===== Preloader (optional) ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-cream);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
