/* ================================================
   PRESTIGE GROWTH MEDIA - MAIN CSS
   ================================================ */

/* ---- CSS Variables ---- */
:root {
    --red: #e31e24;
    --red-dark: #b81419;
    --red-light: #ff4d52;
    --black: #111111;
    --dark: #1a1a1a;
    --dark-2: #2d2d2d;
    --gray: #6b7280;
    --gray-light: #f8f9fa;
    --gray-border: #e5e7eb;
    --white: #ffffff;
    --header-height: 80px;

    --font: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

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

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

ul {
    list-style: none;
}

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

/* ---- Section Spacing ---- */
.section {
    padding: 90px 0;
}

.section-sm {
    padding: 60px 0;
}

/* ---- Section Labels & Headings ---- */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--red);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227,30,36,0.35);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #fff 60%, #fff5f5 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227,30,36,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--red);
    display: block;
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--red);
    display: block;
}

.hero-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.hero-feature-item .feature-icon {
    width: 40px;
    height: 40px;
    background: #fff5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
}

/* Hero Right */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-main-img {
    width: 100%;
    height: 480px;
    /* background: linear-gradient(135deg, #e31e24 0%, #b81419 100%); */
    background: url('./../../hero-right.png');
    border-radius: 30px 30px 120px 30px;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-main-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/images/hero-bg.png') center/cover no-repeat;
    opacity: 0.1;
}

.hero-img-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.8);
    padding: 40px;
}

.hero-img-placeholder i {
    font-size: 80px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.6;
}

.hero-img-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* Hero Stats Card */
.hero-stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stat-card.card-traffic {
    top: 30px;
    right: -20px;
    width: 180px;
}

.hero-stat-card.card-checklist {
    bottom: 60px;
    left: -20px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: #fff5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}

.stat-info .stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.stat-info .stat-num span {
    color: var(--red);
}

.stat-info .stat-label {
    font-size: 12px;
    color: var(--gray);
    margin-top: 3px;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

.checklist-item i {
    color: var(--red);
    font-size: 14px;
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--white);
    padding: 90px 0;
}

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

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

.service-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #fff5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--red);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-card .learn-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-card .learn-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more i {
    transform: translateX(4px);
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--gray-light);
    padding: 90px 0;
}

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

.about-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.about-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

.about-title span {
    color: var(--red);
}

.about-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.about-feature .af-icon {
    width: 38px;
    height: 38px;
    background: #fff5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
}

.about-img-wrapper {
    position: relative;
}

.about-img-box {
    width: 100%;
    height: 480px;
    background: url('./../../about-img.png');
    border-radius: 30px;
    background-size: cover;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.about-img-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    text-align: right;
}

.about-img-badge .badge-text {
    font-size: 13px;
    font-weight: 800;
    color: var(--black);
    display: block;
    line-height: 1.2;
}

.about-img-badge .badge-text span {
    color: var(--red);
    font-style: italic;
}


/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--black);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e31e24' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .stat-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(227,30,36,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--red);
    font-size: 24px;
}

.stat-item .stat-number {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-number span {
    color: var(--red);
}

.stat-item .stat-text {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}


/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    background: var(--white);
    padding: 90px 0;
}

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

.portfolio-header-left .section-subtitle {
    margin: 0;
    text-align: left;
}

.portfolio-nav {
    display: flex;
    gap: 10px;
}

.portfolio-nav button {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-border);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 14px;
    transition: var(--transition);
}

.portfolio-nav button:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--gray-light);
}

.portfolio-item-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e31e24, #b81419);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.portfolio-item-img i {
    font-size: 40px;
    color: rgba(255,255,255,0.5);
}

.portfolio-item:hover .portfolio-item-img {
    transform: scale(1.05);
}

.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.portfolio-item-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* Without overlay approach */
.portfolio-item-caption {
    padding: 14px 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-border);
}

.portfolio-item-caption h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px;
}

.portfolio-item-caption p {
    font-size: 12px;
    color: var(--gray);
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--gray-light);
    padding: 90px 0;
}

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

.testimonials-header .section-subtitle {
    text-align: left;
    margin: 0;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.quote-icon {
    font-size: 48px;
    color: var(--red);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ff6b6e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: var(--gray);
}

.star-rating {
    display: flex;
    gap: 3px;
    margin-top: 6px;
}

.star-rating i {
    color: #fbbf24;
    font-size: 13px;
}


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 100px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.cta-right {
    flex-shrink: 0;
}

.cta-badge {
    position: absolute;
    right: 200px;
    top: -10px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}


/* ============================================
   FOOTER CSS
   ============================================ */
.site-footer {
    background: #0d0d0d;
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
    gap: 50px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '→';
    color: var(--red);
    font-size: 12px;
    opacity: 0;
    transition: var(--transition);
    transform: translateX(-5px);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}

.footer-contact-info li i {
    color: var(--red);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-info li a {
    color: rgba(255,255,255,0.55);
}

.footer-contact-info li a:hover {
    color: var(--red);
}

.footer-cta {
    font-size: 13px;
    padding: 10px 20px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

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


/* ============================================
   UTILITY CLASSES
   ============================================ */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-20 { gap: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .stat-item:nth-child(even) {
        border-bottom: none;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-right {
        order: -1;
    }

    .hero-main-img {
        height: 350px;
    }

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-badge {
        display: none;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .section { padding: 60px 0; }

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

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

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    body { padding-top: 65px; }

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

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

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .hero-stat-card {
        display: none;
    }

    .hero-main-img {
        height: 280px;
    }

    .btn {
        padding: 11px 22px;
        font-size: 14px;
    }
}

/* ====================================================
   MODERN HOMEPAGE UPGRADES & ANIMATIONS
   ==================================================== */

/* --- Keyframe Animations --- */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes floatDelayed {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.4); }
    50%      { box-shadow: 0 0 0 12px rgba(227, 30, 36, 0); }
}

@keyframes rotateDashed {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shineSweep {
    0%   { left: -100%; }
    100% { left: 150%; }
}

/* --- Interactive Button Effects --- */
.btn-primary {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.28);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(25deg);
    pointer-events: none;
}

.btn-primary:hover::after {
    animation: shineSweep 0.85s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.42);
}

/* --- Hero Modern Upgrades --- */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff5f5;
    border: 1px solid #fee2e2;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}

.hero-pill-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

.hero-woman-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-backdrop {
    position: absolute;
    width: 380px;
    height: 380px;
    background: linear-gradient(145deg, #e31e24 0%, #b81419 100%);
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0 25px 60px rgba(227, 30, 36, 0.35);
}

.hero-circle-ring {
    position: absolute;
    width: 440px;
    height: 440px;
    border: 2px dashed rgba(227, 30, 36, 0.3);
    border-radius: 50%;
    animation: rotateDashed 40s linear infinite;
    pointer-events: none;
}

.hero-woman-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
    transition: transform 0.5s ease;
}

.hero-woman-wrap:hover .hero-woman-img {
    transform: scale(1.02);
}

/* Floating Badges in Hero */
.hero-float-traffic {
    position: absolute;
    top: 50px;
    left: -25px;
    z-index: 2;
    background: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border: 1px solid #fee2e2;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatSlow 3.5s ease-in-out infinite;
}

.hero-traffic-icon {
    width: 42px;
    height: 42px;
    background: #fff5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-traffic-text h5 {
    font-size: 18px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    margin-bottom: 3px;
}

.hero-traffic-text h5 span {
    color: var(--red);
}

.hero-traffic-text p {
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
    margin: 0;
}

.hero-float-script {
    position: absolute;
    top: 15px;
    right: 5px;
    z-index: 2;
    background: #fff;
    padding: 10px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #fee2e2;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    color: var(--black);
    animation: floatDelayed 4s ease-in-out infinite 0.5s;
}

.hero-float-script span {
    color: var(--red);
    font-style: italic;
    font-size: 13px;
}

.hero-float-check {
    position: absolute;
    bottom: 25px;
    right: -20px;
    z-index: 2;
    background: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border: 1px solid #fee2e2;
    animation: floatSlow 4s ease-in-out infinite 1s;
}

.hero-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.hero-check-item:last-child {
    margin-bottom: 0;
}

.hero-check-item i {
    color: var(--red);
    font-size: 11px;
}

/* --- Services Modern Enhancements --- */
.service-card {
    background: #fff;
    border: 1.5px solid #efefef;
    border-radius: 18px;
    padding: 36px 26px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: linear-gradient(90deg, var(--red), #ff4d4f);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 16px 45px rgba(0,0,0,0.09);
    transform: translateY(-7px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #fff5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 26px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

/* --- Modern About Section --- */
.about-modern-img-box {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background: #fff;
}

.about-modern-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.about-modern-img-box:hover img {
    transform: scale(1.03);
}

.about-floating-badge {
    position: absolute;
    top: 25px;
    right: -15px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border: 1px solid #fee2e2;
    text-align: right;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--black);
}

.about-floating-badge span {
    color: var(--red);
    font-style: italic;
}

.about-exp-pill {
    position: absolute;
    bottom: 25px;
    left: 20px;
    background: var(--black);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.about-exp-pill i {
    color: var(--red);
}

/* --- Our Work Image Cards --- */
.portfolio-track-wrap {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.portfolio-track-wrap::-webkit-scrollbar {
    display: none;
}

.portfolio-cards-row {
    display: flex;
    gap: 20px;
}

.portfolio-work-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #efefef;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.portfolio-work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.portfolio-work-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
    position: relative;
    background: #f1f3f5;
}

.portfolio-work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-work-card:hover .portfolio-work-img img {
    transform: scale(1.08);
}

.portfolio-work-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.portfolio-work-content {
    padding: 16px 18px 18px;
}

.portfolio-work-content h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
}

.portfolio-work-content p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

/* --- Testimonials Modern Slider --- */
.testimonials-slider-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 24px;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #fff;
    border-radius: 18px;
    padding: 34px 28px;
    border: 1.5px solid #efefef;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-slide:hover {
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.t-dot {
    width: 10px;
    height: 10px;
    background: #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--red);
}

/* --- Home FAQ Section --- */
.home-faq-section {
    padding: 90px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.home-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 70px;
    align-items: start;
}

.home-faq-left .section-label {
    margin-bottom: 12px;
}

.home-faq-left .section-title {
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.2;
    margin-bottom: 18px;
}

.home-faq-left .section-subtitle {
    text-align: left;
    margin-bottom: 30px;
}

.home-faq-card-help {
    background: #f8f9fa;
    border: 1.5px solid #efefef;
    padding: 24px;
    border-radius: 16px;
}

.home-faq-card-help h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 6px;
}

.home-faq-card-help p {
    font-size: 13.5px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.home-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #efefef;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.home-faq-item.active {
    border-color: var(--red);
}

.home-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    gap: 12px;
    user-select: none;
    transition: color 0.3s ease;
}

.home-faq-item.active .home-faq-question {
    color: var(--red);
}

.home-faq-icon {
    width: 28px;
    height: 28px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gray);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.home-faq-item.active .home-faq-icon {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: rotate(45deg);
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.home-faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.home-faq-item.active .home-faq-answer {
    max-height: 220px;
}

/* --- Responsive Adjustments for New Elements --- */
@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .home-faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-circle-backdrop {
        width: 320px;
        height: 320px;
    }

    .hero-circle-ring {
        width: 370px;
        height: 370px;
    }

    .hero-float-traffic {
        left: 0;
        top: 20px;
    }

    .hero-float-check {
        right: 0;
        bottom: 10px;
    }
}

@media (max-width: 768px) {
    /* Mobile: Exactly 1 Testimonial Visible with Auto-slide */
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .portfolio-work-card {
        flex: 0 0 240px;
    }

    .hero-woman-wrap {
        max-width: 340px;
    }

    .hero-circle-backdrop {
        width: 260px;
        height: 260px;
    }

    .hero-circle-ring {
        display: none;
    }

    .hero-float-traffic {
        padding: 10px 14px;
        top: 10px;
    }

    .hero-float-traffic h5 {
        font-size: 15px;
    }

    .hero-float-check {
        padding: 10px 14px;
        bottom: 0;
    }

    .hero-check-item {
        font-size: 11px;
    }

    .about-floating-badge {
        right: 0;
        top: 10px;
        font-size: 11px;
        padding: 10px 14px;
    }
}

