:root {
    --primary: #f28b22;
    --secondary: #d96e00;
    --dark: #111111;
    --light: #fff8f1;
    --text: #2d2d2d;
    --muted: #666666;
    --white: #ffffff;
    --body-bg: #fffaf5;
    --shadow-soft: 0 5px 25px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 18px 38px rgba(0, 0, 0, 0.16);
}

/* GLOBAL RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background: var(--body-bg);
    color: var(--text);
    overflow-x: hidden;
}

img,
iframe {
    max-width: 100%;
}

p {
    text-align: justify;
}

a {
    transition: 0.3s ease;
}

.container {
    width: min(92%, 1320px);
    margin: auto;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 420px;
    text-decoration: none;
}

.logo {
    width: 118px;
    height: 76px;
    object-fit: contain;
    background: var(--white);
    padding: 6px;
    border-radius: 14px;
}

.logo-title {
    max-width: 260px;
    font-size: 25px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: 0.2px;
}

nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* BUTTONS */

.btn {
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.4s ease;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
}

.primary-btn:hover {
    background: var(--secondary);
    transform: translateY(-4px);
}

.secondary-btn {
    border: 2px solid var(--white);
    color: var(--white);
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-4px);
}

/* GENERAL SECTIONS */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(30px, 5vw, 46px);
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--dark);
}

.light-title {
    color: var(--white);
}

.section-subtitle {
    max-width: 820px;
    margin: 0 auto 60px;
    line-height: 1.9;
    color: var(--muted);
    font-size: 17px;
}

/* HOME HERO */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 170px 20px 90px;
    color: var(--white);
    overflow: hidden;
    background: var(--dark);
}

.hero-video-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 67.5vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.84)),
        radial-gradient(circle at center, rgba(242, 139, 34, 0.16), rgba(0, 0, 0, 0.35));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(92%, 1050px);
    text-align: center;
    animation: fadeIn 1.2s ease;
}

.hero h1 {
    font-size: clamp(34px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero p {
    font-size: clamp(16px, 2.4vw, 20px);
    line-height: 1.9;
    margin-bottom: 35px;
    color: #eeeeee;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* HOME SERVICES CAROUSEL */

.service-carousel-stage,
.service-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0 50px;
}

.service-carousel-stage::before,
.service-carousel-stage::after {
    content: '';
    position: absolute;
    top: 0;
    width: 11%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.service-carousel-stage::before {
    left: 0;
    background: linear-gradient(to right, var(--body-bg), rgba(255, 250, 245, 0));
}

.service-carousel-stage::after {
    right: 0;
    background: linear-gradient(to left, var(--body-bg), rgba(255, 250, 245, 0));
}

.service-carousel-focus {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 410px;
    height: calc(100% - 40px);
    transform: translateX(-50%);
    border: 3px solid rgba(242, 139, 34, 0.48);
    border-radius: 28px;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 40px rgba(242, 139, 34, 0.22);
}

.service-carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: serviceCarousel 20s linear infinite;
    will-change: transform;
}

.service-carousel-stage:hover .service-carousel-track,
.service-carousel-wrapper:hover .service-carousel-track {
    animation-play-state: paused;
}

.service-link {
    text-decoration: none;
    color: inherit;
    width: 390px;
    flex: 0 0 390px;
}

.service-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.5s ease;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transform: scale(0.94);
}

.service-card:hover {
    transform: translateY(-12px) scale(1);
    box-shadow: 0 18px 35px rgba(242, 139, 34, 0.22);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-content p {
    line-height: 1.8;
    color: var(--muted);
}

/* PROCESS */

.process-section {
    background: var(--dark);
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.process-link {
    text-decoration: none;
    color: var(--white);
}

.process-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: 0.5s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
    background: rgba(242, 139, 34, 0.14);
}

.process-icon {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    font-weight: 700;
}

/* SHOWCASE */

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.showcase-card {
    background: var(--white);
    padding: 34px;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    transition: 0.4s ease;
    border-bottom: 4px solid var(--primary);
}

.showcase-card:hover {
    transform: translateY(-8px);
}

.showcase-card i {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 18px;
}

.showcase-card h3 {
    font-size: 23px;
    margin-bottom: 14px;
}

.showcase-card p {
    line-height: 1.8;
    color: var(--muted);
}

/* HOME REVIEW CARDS */

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary);
    transition: 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
}

.stars {
    color: #ffb400;
    margin-bottom: 15px;
    font-size: 18px;
}

/* CONTACT PAGE HERO */

.inner-hero {
    position: relative;
    padding: 190px 0 100px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.84)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.inner-hero h1 {
    font-size: clamp(36px, 6vw, 62px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
}

.inner-hero p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #eeeeee;
    text-align: justify;
}

/* CONTACT TEAM */

.team-section {
    background: var(--body-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 42px 32px;
    align-items: start;
    justify-items: center;
}

.team-card {
    width: 100%;
    max-width: 340px;
    text-align: center;
    background: var(--white);
    padding: 32px 22px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-photo-link {
    display: inline-block;
    border-radius: 50%;
    text-decoration: none;
}

.team-photo-frame {
    width: 190px;
    height: 190px;
    margin: 0 auto 22px;
    padding: 10px;
    background: var(--white);
    border: 4px solid var(--white);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 3px var(--dark);
    transition: 0.4s ease;
}

.team-photo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.4s ease;
}

.team-card:hover .team-photo-frame {
    transform: scale(1.09);
    box-shadow:
        0 0 0 3px var(--dark),
        0 0 32px rgba(0, 0, 0, 0.30),
        0 0 34px rgba(242, 139, 34, 0.42);
}

.team-card:hover .team-photo-frame img {
    transform: scale(1.08);
}

.team-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.team-card h3 a {
    color: var(--dark);
    text-decoration: none;
}

.team-card h3 a:hover {
    color: var(--primary);
}

.team-card p {
    text-align: center;
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
}

/* CONTACT FORM */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.contact-box {
    background: var(--dark);
    color: var(--white);
    padding: 40px;
    border-radius: 22px;
}

.contact-box h3 {
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-box p {
    margin-bottom: 22px;
    line-height: 1.9;
}

.contact-box a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

.contact-form button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.success {
    background: #d4edda;
    padding: 15px;
    border-radius: 10px;
    color: #155724;
    margin-bottom: 15px;
}

.error {
    background: #f8d7da;
    padding: 15px;
    border-radius: 10px;
    color: #842029;
    margin-bottom: 15px;
}

/* MAP */

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* SERVICES PAGE */

.services-hero {
    position: relative;
    padding: 190px 0 110px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86)),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.services-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.services-hero p {
    max-width: 950px;
    margin: 0 auto 35px;
    font-size: 19px;
    line-height: 1.9;
    color: #eeeeee;
    text-align: justify;
}

.services-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.services-intro {
    background: var(--body-bg);
}

.services-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.services-highlight-card {
    background: var(--white);
    padding: 34px;
    border-radius: 22px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid var(--primary);
    transition: 0.4s ease;
}

.services-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(242, 139, 34, 0.20);
}

.services-highlight-card i {
    font-size: 46px;
    color: var(--primary);
    margin-bottom: 18px;
}

.services-highlight-card h3 {
    font-size: 23px;
    margin-bottom: 14px;
    color: var(--dark);
}

.services-highlight-card p {
    color: var(--muted);
    line-height: 1.8;
}

.service-list-section {
    background: var(--white);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.services-page-card {
    position: relative;
    background: var(--body-bg);
    padding: 32px 24px;
    border-radius: 22px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
    transition: 0.45s ease;
    border: 1px solid rgba(242, 139, 34, 0.16);
}

.services-page-card::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 145px;
    height: 145px;
    background: rgba(242, 139, 34, 0.14);
    border-radius: 50%;
    transition: 0.45s ease;
}

.services-page-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.services-page-card:hover::before {
    transform: scale(1.55);
    background: rgba(242, 139, 34, 0.22);
}

.services-page-icon {
    width: 72px;
    height: 72px;
    position: relative;
    z-index: 2;
    background: var(--dark);
    color: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: 0.45s ease;
}

.services-page-icon i {
    font-size: 32px;
}

.services-page-card:hover .services-page-icon {
    background: var(--primary);
    transform: rotate(-4deg) scale(1.08);
}

.services-page-card h3 {
    position: relative;
    z-index: 2;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 14px;
}

.services-page-card p {
    position: relative;
    z-index: 2;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 22px;
}

.services-card-link {
    position: relative;
    z-index: 2;
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.services-card-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.expedite-section {
    background: var(--dark);
    color: var(--white);
}

.expedite-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.expedite-content span {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expedite-content h2 {
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.15;
    margin-bottom: 22px;
}

.expedite-content p {
    color: #eeeeee;
    line-height: 1.9;
    margin-bottom: 24px;
}

.expedite-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.expedite-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #eeeeee;
    line-height: 1.7;
}

.expedite-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 800;
}

.expedite-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 42px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(242, 139, 34, 0.28);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    transition: 0.45s ease;
}

.expedite-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(242, 139, 34, 0.14);
}

.expedite-card i {
    font-size: 62px;
    color: var(--primary);
    margin-bottom: 22px;
}

.expedite-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.expedite-card p {
    color: #eeeeee;
    line-height: 1.8;
    text-align: center;
}

.services-cta-section {
    background:
        linear-gradient(rgba(242, 139, 34, 0.93), rgba(217, 110, 0, 0.95)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.services-cta-section h2 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 18px;
}

.services-cta-section p {
    max-width: 850px;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
}

.services-cta-section .primary-btn {
    background: var(--dark);
}

.services-cta-section .primary-btn:hover {
    background: var(--white);
    color: var(--dark);
}

/* BLOG PAGE */

.blog-hero {
    position: relative;
    padding: 190px 0 110px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.blog-hero p {
    max-width: 950px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.9;
    color: #eeeeee;
    text-align: justify;
}

.blog-featured-section {
    background: var(--body-bg);
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    background: var(--white);
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.10);
}

.blog-featured-media,
.blog-card-media {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: var(--dark);
}

.blog-featured-media img,
.blog-card-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: 0.45s ease;
}

.blog-card-media img {
    min-height: 240px;
}

.blog-featured-media:hover img,
.blog-card:hover .blog-card-media img {
    transform: scale(1.07);
}

.blog-featured-media iframe,
.blog-card-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.blog-featured-media.is-playing iframe,
.blog-card-media.is-playing iframe {
    opacity: 1;
    visibility: visible;
}

.blog-featured-media.is-playing img,
.blog-featured-media.is-playing .blog-play-button,
.blog-card-media.is-playing img,
.blog-card-media.is-playing .blog-play-button {
    opacity: 0;
    visibility: hidden;
}

.blog-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 78px;
    height: 78px;
    transform: translate(-50%, -50%);
    border: 4px solid var(--white);
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    z-index: 3;
    transition: 0.35s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.blog-play-button:hover {
    background: var(--secondary);
    transform: translate(-50%, -50%) scale(1.12);
}

.blog-featured-content {
    padding: 12px;
}

.blog-label {
    display: inline-block;
    background: rgba(242, 139, 34, 0.14);
    color: var(--secondary);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 14px;
}

.blog-featured-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    color: var(--dark);
    margin-bottom: 18px;
}

.blog-featured-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 28px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: #777777;
    font-size: 14px;
}

.blog-meta i {
    color: var(--primary);
    margin-right: 6px;
}

.blog-list-section {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--body-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.08);
    transition: 0.45s ease;
    border: 1px solid rgba(242, 139, 34, 0.14);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.blog-card-content {
    padding: 26px;
}

.blog-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.blog-card-topline span {
    background: var(--white);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 11px;
    border-radius: 999px;
}

.blog-card h3 {
    font-size: 23px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: var(--dark);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.blog-read-more:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.newsletter-section {
    background: var(--dark);
    color: var(--white);
}

.newsletter-box {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    padding: 42px;
    border-radius: 26px;
    border: 1px solid rgba(242, 139, 34, 0.28);
}

.newsletter-box span {
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 10px;
}

.newsletter-box h2 {
    font-size: clamp(30px, 5vw, 46px);
    margin-bottom: 16px;
}

.newsletter-box p {
    color: #eeeeee;
    line-height: 1.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    background: var(--white);
    padding: 10px;
    border-radius: 16px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.newsletter-form button {
    border: none;
    background: var(--primary);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* REVIEWS PAGE */

.reviews-hero {
    position: relative;
    padding: 190px 0 110px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86)),
        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.reviews-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.reviews-hero p {
    max-width: 950px;
    margin: 0 auto 35px;
    font-size: 19px;
    line-height: 1.9;
    color: #eeeeee;
    text-align: justify;
}

.reviews-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-score-section {
    background: var(--body-bg);
    padding-top: 70px;
}

.review-score-box {
    background: var(--white);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: center;
    border: 1px solid rgba(242, 139, 34, 0.16);
}

.review-score-main {
    display: flex;
    align-items: center;
    gap: 24px;
}

.review-score-number {
    font-size: clamp(54px, 8vw, 86px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.review-score-stars {
    color: #ffb400;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-score-main p {
    color: var(--muted);
    line-height: 1.8;
}

.review-score-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-score-items div {
    background: var(--body-bg);
    padding: 20px;
    border-radius: 18px;
    transition: 0.35s ease;
}

.review-score-items div:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(242, 139, 34, 0.18);
}

.review-score-items strong {
    display: block;
    color: var(--dark);
    margin-bottom: 6px;
    font-size: 18px;
}

.review-score-items span {
    color: var(--muted);
    font-size: 14px;
}

.review-platforms-section {
    background: var(--body-bg);
}

.review-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.review-platform-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 30px 24px;
    min-height: 310px;
    overflow: hidden;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(242, 139, 34, 0.14);
    transition: 0.45s ease;
}

.review-platform-card::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    right: -65px;
    top: -65px;
    background: rgba(242, 139, 34, 0.12);
    border-radius: 50%;
    transition: 0.45s ease;
}

.review-platform-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.review-platform-card:hover::before {
    transform: scale(1.75);
    background: rgba(242, 139, 34, 0.20);
}

.review-platform-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    background: var(--dark);
    color: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: 0.4s ease;
}

.review-platform-icon i {
    font-size: 32px;
}

.review-platform-card:hover .review-platform-icon {
    background: var(--primary);
    transform: rotate(-4deg) scale(1.08);
}

.review-platform-card h3 {
    position: relative;
    z-index: 2;
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 14px;
}

.review-platform-card p {
    position: relative;
    z-index: 2;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 22px;
}

.review-platform-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.review-platform-card a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.client-reviews-section {
    background: var(--white);
}

.client-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.client-review-card {
    background: var(--body-bg);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary);
    transition: 0.45s ease;
}

.client-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.client-review-stars {
    color: #ffb400;
    font-size: 22px;
    margin-bottom: 18px;
}

.client-review-card p {
    color: #555555;
    line-height: 1.9;
    margin-bottom: 24px;
}

.client-review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-review-avatar {
    width: 54px;
    height: 54px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 0 0 4px var(--white), 0 8px 20px rgba(0, 0, 0, 0.18);
}

.client-review-author h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px;
}

.client-review-author span {
    color: #777777;
    font-size: 14px;
}

.review-request-section {
    background: var(--dark);
    color: var(--white);
}

.review-request-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    padding: 42px;
    border-radius: 26px;
    border: 1px solid rgba(242, 139, 34, 0.28);
}

.review-request-box span {
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 10px;
}

.review-request-box h2 {
    font-size: clamp(30px, 5vw, 46px);
    margin-bottom: 16px;
}

.review-request-box p {
    color: #eeeeee;
    line-height: 1.9;
}

/* FOOTER */

footer {
    background: #f7f7f7;
    padding: 65px 20px 35px;
    border-top: 1px solid #e6e6e6;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.social-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 24px;
    text-decoration: none;
    transition: 0.4s ease;
    color: var(--white);
}

.social-icon:hover {
    transform: translateY(-6px);
}

.facebook-icon {
    background: #1877f2;
}

.twitter-icon {
    background: #000000;
}

.instagram-icon {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.linkedin-icon {
    background: #0077b5;
}

.youtube-icon {
    background: #ff0000;
}

.whatsapp-icon {
    background: #25d366;
}

.google-icon {
    background: #4285f4;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 45px;
    margin-top: 20px;
}

.footer-box h3 {
    font-size: 24px;
    margin-bottom: 22px;
}

.footer-box p {
    margin-bottom: 14px;
}

.footer-box a {
    color: #777777;
    text-decoration: none;
}

.footer-box a:hover {
    color: var(--primary);
}

.bottom-footer-text {
    text-align: center;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #dddddd;
}

.bottom-footer-text p {
    color: #888888;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

/* ANIMATIONS */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes serviceCarousel {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-390px * 3 - 90px));
    }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .nav {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .logo-section {
        min-width: auto;
        justify-content: center;
    }

    nav {
        justify-content: center;
    }

    .hero,
    .inner-hero,
    .services-hero,
    .blog-hero,
    .reviews-hero {
        padding-top: 230px;
    }

    .services-page-grid,
    .review-platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }

    .services-highlight-grid,
    .expedite-wrapper,
    .blog-featured-card,
    .newsletter-box,
    .review-score-box,
    .review-request-box {
        grid-template-columns: 1fr;
    }

    .services-page-grid,
    .blog-grid,
    .review-platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-review-grid,
    .review-score-items {
        grid-template-columns: 1fr;
    }

    .review-request-box .btn {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .container {
        width: 94%;
    }

    .nav {
        text-align: center;
        gap: 12px;
    }

    .logo-section {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .logo {
        width: 86px;
        height: 60px;
    }

    .logo-title {
        max-width: 190px;
        font-size: 20px;
        text-align: left;
    }

    nav {
        width: 100%;
        gap: 17px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 10px 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    nav::-webkit-scrollbar {
        display: none;
    }

    nav a {
        font-size: 14px;
        padding: 8px 4px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    section {
        padding: 75px 0;
    }

    .hero {
        min-height: 100svh;
        padding: 230px 16px 80px;
    }

    .inner-hero,
    .services-hero,
    .blog-hero,
    .reviews-hero {
        padding: 230px 0 80px;
    }

    .hero-video-background iframe {
        width: 180vw;
        height: 101.25vw;
    }

    .hero p {
        line-height: 1.75;
    }

    .hero-btns,
    .services-hero-actions,
    .reviews-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }

    .service-link {
        width: 310px;
        flex-basis: 310px;
    }

    .service-carousel-focus {
        width: 325px;
    }

    .process-grid,
    .review-grid,
    .footer-grid,
    .showcase-grid,
    .team-grid,
    .services-page-grid,
    .blog-grid,
    .review-platform-grid,
    .client-review-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-box,
    .contact-form,
    .newsletter-box,
    .review-score-box,
    .review-request-box {
        padding: 28px;
    }

    .team-photo-frame {
        width: 170px;
        height: 170px;
    }

    .map-wrapper iframe {
        height: 320px;
    }

    .services-page-card,
    .review-platform-card {
        min-height: auto;
    }

    .blog-featured-card {
        padding: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .blog-play-button {
        width: 66px;
        height: 66px;
        font-size: 22px;
    }

    .review-score-main {
        flex-direction: column;
        align-items: flex-start;
    }

    @keyframes serviceCarousel {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-310px * 3 - 90px));
        }
    }
}

@media (max-width: 430px) {
    .logo {
        width: 76px;
        height: 54px;
    }

    .logo-title {
        max-width: 165px;
        font-size: 18px;
    }

    nav {
        gap: 14px;
        justify-content: flex-start;
    }

    nav a {
        font-size: 13px;
    }

    .hero {
        padding-top: 220px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .inner-hero,
    .services-hero,
    .blog-hero,
    .reviews-hero {
        padding-top: 220px;
    }

    .hero-video-background iframe {
        width: 215vw;
        height: 121vw;
    }

    .service-link {
        width: 280px;
        flex-basis: 280px;
    }

    .service-carousel-focus {
        width: 294px;
    }

    .service-card img {
        height: 210px;
    }

    .service-content,
    .blog-card-content {
        padding: 22px;
    }

    .contact-box,
    .contact-form {
        padding: 24px;
    }

    .team-card,
    .services-highlight-card,
    .services-page-card,
    .client-review-card,
    .review-platform-card {
        padding: 26px 20px;
    }

    .team-photo-frame {
        width: 155px;
        height: 155px;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    .blog-card-topline {
        flex-direction: column;
    }

    .blog-featured-media img,
    .blog-card-media img {
        min-height: 230px;
    }

    .review-score-stars {
        font-size: 22px;
    }

    @keyframes serviceCarousel {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-280px * 3 - 90px));
        }
    }
}

@media (max-width: 390px) {
    .hero {
        padding-top: 215px;
    }

    .logo-section {
        gap: 10px;
    }

    .logo {
        width: 70px;
        height: 50px;
    }

    .logo-title {
        font-size: 17px;
        max-width: 150px;
    }

    nav a {
        font-size: 12.5px;
    }

    .btn {
        max-width: 290px;
    }
}
:root {
    --primary: #f28b22;
    --secondary: #d96e00;
    --dark: #111111;
    --light: #fff8f1;
    --text: #2d2d2d;
    --muted: #666666;
    --white: #ffffff;
    --body-bg: #fffaf5;
    --shadow-soft: 0 5px 25px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 18px 38px rgba(0, 0, 0, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background: var(--body-bg);
    color: var(--text);
    overflow-x: hidden;
}

img,
iframe {
    max-width: 100%;
}

p {
    text-align: justify;
}

a {
    transition: 0.3s ease;
}

.container {
    width: min(92%, 1320px);
    margin: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 420px;
    text-decoration: none;
}

.logo {
    width: 118px;
    height: 76px;
    object-fit: contain;
    background: var(--white);
    padding: 6px;
    border-radius: 14px;
}

.logo-title {
    max-width: 260px;
    font-size: 25px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: 0.2px;
}

nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.btn {
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.4s ease;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
}

.primary-btn:hover {
    background: var(--secondary);
    transform: translateY(-4px);
}

.secondary-btn {
    border: 2px solid var(--white);
    color: var(--white);
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-4px);
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(30px, 5vw, 46px);
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--dark);
}

.section-subtitle {
    max-width: 820px;
    margin: 0 auto 60px;
    line-height: 1.9;
    color: var(--muted);
    font-size: 17px;
}

.ccauth-hero {
    position: relative;
    padding: 190px 0 110px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86)),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.ccauth-hero h1 {
    font-size: clamp(36px, 6vw, 66px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.ccauth-hero p {
    max-width: 950px;
    margin: 0 auto;
    color: #eeeeee;
    font-size: 18px;
    line-height: 1.9;
}

.ccauth-section {
    background: var(--body-bg);
}

.ccauth-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ccauth-card {
    background: var(--white);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(242, 139, 34, 0.14);
}

.ccauth-card h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 24px;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 12px;
}

.ccauth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.ccauth-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--dark);
    font-weight: 600;
}

.ccauth-form input,
.ccauth-form select,
.ccauth-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #dddddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    background: var(--white);
    color: var(--text);
}

.ccauth-form textarea {
    min-height: 150px;
    resize: vertical;
}

.ccauth-form input:focus,
.ccauth-form select:focus,
.ccauth-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 139, 34, 0.16);
}

.ccauth-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ccauth-checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    background: var(--body-bg);
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(242, 139, 34, 0.14);
    transition: 0.3s ease;
}

.ccauth-checkbox:hover {
    background: var(--light);
    transform: translateY(-3px);
}

.ccauth-checkbox input {
    width: auto;
}

.ccauth-alert {
    background: var(--light);
    border-left: 5px solid var(--primary);
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 24px;
    line-height: 1.8;
    text-align: justify;
}

.ccauth-legal {
    background: #fffdf9;
    border: 1px solid #eeeeee;
    padding: 24px;
    border-radius: 18px;
    margin-bottom: 24px;
}

.ccauth-legal p {
    line-height: 1.9;
    margin-bottom: 16px;
}

.ccauth-certify {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
    background: var(--light);
    padding: 18px;
    border-radius: 14px;
}

.ccauth-certify input {
    width: auto;
    margin-top: 5px;
}

.ccauth-sign-button,
.ccauth-submit-button {
    border: none;
    cursor: pointer;
    background: var(--primary);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.35s ease;
}

.ccauth-sign-button:hover,
.ccauth-submit-button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.signature-preview-wrapper {
    display: none;
    margin-top: 24px;
    background: var(--body-bg);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #dddddd;
}

.signature-preview-wrapper h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.signature-preview-wrapper img {
    max-width: 340px;
    width: 100%;
    background: var(--white);
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 10px;
}

.ccauth-submit-area {
    text-align: center;
}

.signature-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.signature-modal.active {
    display: flex;
}

.signature-modal-content {
    position: relative;
    width: min(96%, 820px);
    background: var(--white);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.signature-modal-content h2 {
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 10px;
}

.signature-modal-content p {
    color: var(--muted);
    margin-bottom: 20px;
}

.signature-close {
    position: absolute;
    right: 20px;
    top: 16px;
    border: none;
    background: var(--dark);
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
}

#signatureCanvas {
    width: 100%;
    height: 260px;
    border: 2px dashed var(--primary);
    border-radius: 18px;
    background: #ffffff;
    touch-action: none;
}

.signature-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.signature-actions button {
    border: none;
    cursor: pointer;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
}

#clearSignature {
    background: #eeeeee;
    color: var(--dark);
}

#acceptSignature {
    background: var(--primary);
    color: var(--white);
}

.ccauth-result {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--body-bg);
}

.ccauth-result-box {
    max-width: 720px;
    width: 100%;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.ccauth-result-box h1 {
    color: var(--dark);
    margin-bottom: 18px;
}

.ccauth-result-box p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.ccauth-result-box a {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
}

.error-box {
    border-top: 5px solid #842029;
}

.success-box {
    border-top: 5px solid #155724;
}

footer {
    background: #f7f7f7;
    padding: 65px 20px 35px;
    border-top: 1px solid #e6e6e6;
}

.bottom-footer-text {
    text-align: center;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #dddddd;
}

.bottom-footer-text p {
    color: #888888;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 1180px) {
    .nav {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .logo-section {
        min-width: auto;
        justify-content: center;
    }

    nav {
        justify-content: center;
    }

    .ccauth-hero {
        padding-top: 230px;
    }

    .ccauth-checkbox-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .container {
        width: 94%;
    }

    .nav {
        text-align: center;
        gap: 12px;
    }

    .logo-section {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .logo {
        width: 86px;
        height: 60px;
    }

    .logo-title {
        max-width: 190px;
        font-size: 20px;
        text-align: left;
    }

    nav {
        width: 100%;
        gap: 17px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 10px 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    nav::-webkit-scrollbar {
        display: none;
    }

    nav a {
        font-size: 14px;
        padding: 8px 4px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    section {
        padding: 75px 0;
    }

    .ccauth-hero {
        padding: 230px 0 80px;
    }

    .ccauth-grid,
    .ccauth-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .ccauth-card {
        padding: 26px 20px;
    }

    .signature-modal-content {
        padding: 28px 20px;
    }

    .signature-actions {
        flex-direction: column;
    }

    .signature-actions button {
        width: 100%;
    }

    #signatureCanvas {
        height: 230px;
    }
}

@media (max-width: 430px) {
    .logo {
        width: 76px;
        height: 54px;
    }

    .logo-title {
        max-width: 165px;
        font-size: 18px;
    }

    nav {
        gap: 14px;
        justify-content: flex-start;
    }

    nav a {
        font-size: 13px;
    }

    .ccauth-hero {
        padding-top: 220px;
    }

    .ccauth-card h2 {
        font-size: 24px;
    }

    .ccauth-submit-button,
    .ccauth-sign-button {
        width: 100%;
    }
}
/* PROCESS PAGE */

.process-page-hero {
    position: relative;
    padding: 190px 0 110px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86)),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.process-page-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.process-page-hero p {
    max-width: 950px;
    margin: 0 auto 35px;
    font-size: 19px;
    line-height: 1.9;
    color: #eeeeee;
    text-align: justify;
}

.process-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-overview-section {
    background: var(--body-bg);
}

.process-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-overview-card {
    background: var(--white);
    padding: 34px;
    border-radius: 22px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid var(--primary);
    transition: 0.4s ease;
}

.process-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(242, 139, 34, 0.20);
}

.process-overview-card i {
    font-size: 46px;
    color: var(--primary);
    margin-bottom: 18px;
}

.process-overview-card h3 {
    font-size: 23px;
    margin-bottom: 14px;
    color: var(--dark);
}

.process-overview-card p {
    color: var(--muted);
    line-height: 1.8;
}

.process-timeline-section {
    background: var(--white);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.process-timeline-card {
    position: relative;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 20px;
    background: var(--body-bg);
    padding: 28px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(242, 139, 34, 0.14);
    overflow: hidden;
    transition: 0.45s ease;
}

.process-timeline-card::before {
    content: '';
    position: absolute;
    width: 145px;
    height: 145px;
    top: -80px;
    right: -80px;
    background: rgba(242, 139, 34, 0.14);
    border-radius: 50%;
    transition: 0.45s ease;
}

.process-timeline-card:hover {
    transform: translateY(-10px) scale(1.01);
    background: var(--white);
    box-shadow: var(--shadow-hover);
}

.process-timeline-card:hover::before {
    transform: scale(1.6);
    background: rgba(242, 139, 34, 0.22);
}

.process-timeline-number {
    position: absolute;
    right: 24px;
    top: 20px;
    color: rgba(17, 17, 17, 0.08);
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}

.process-timeline-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    background: var(--dark);
    color: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.45s ease;
}

.process-timeline-icon i {
    font-size: 32px;
}

.process-timeline-card:hover .process-timeline-icon {
    background: var(--primary);
    transform: rotate(-4deg) scale(1.08);
}

.process-timeline-content {
    position: relative;
    z-index: 2;
}

.process-timeline-content h3 {
    font-size: 23px;
    color: var(--dark);
    margin-bottom: 12px;
    padding-right: 55px;
}

.process-timeline-content p {
    color: var(--muted);
    line-height: 1.8;
}

.process-deliverables-section {
    background: var(--dark);
    color: var(--white);
}

.process-deliverables-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
}

.process-deliverables-content span {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.process-deliverables-content h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.process-deliverables-content p {
    color: #eeeeee;
    line-height: 1.9;
    margin-bottom: 28px;
}

.process-deliverables-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.process-deliverable-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(242, 139, 34, 0.22);
    transition: 0.35s ease;
}

.process-deliverable-item:hover {
    transform: translateY(-5px);
    background: rgba(242, 139, 34, 0.14);
}

.process-deliverable-item i {
    color: var(--primary);
}

.process-client-section {
    background: var(--body-bg);
}

.process-client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.process-client-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    transition: 0.4s ease;
    border-top: 4px solid var(--primary);
}

.process-client-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.process-client-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 18px;
}

.process-client-card h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 12px;
}

.process-client-card p {
    color: var(--muted);
    line-height: 1.8;
}

.process-cta-section {
    background:
        linear-gradient(rgba(242, 139, 34, 0.93), rgba(217, 110, 0, 0.95)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.process-cta-section h2 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 18px;
}

.process-cta-section p {
    max-width: 850px;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
}

.process-cta-section .primary-btn {
    background: var(--dark);
}

.process-cta-section .primary-btn:hover {
    background: var(--white);
    color: var(--dark);
}

@media (max-width: 1180px) {
    .process-client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-page-hero {
        padding-top: 230px;
    }
}

@media (max-width: 1024px) {
    .process-overview-grid,
    .process-deliverables-wrapper {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-page-hero {
        padding: 230px 0 80px;
    }

    .process-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .process-client-grid,
    .process-deliverables-list {
        grid-template-columns: 1fr;
    }

    .process-timeline-card {
        grid-template-columns: 1fr;
    }

    .process-timeline-content h3 {
        padding-right: 0;
    }
}

@media (max-width: 430px) {
    .process-page-hero {
        padding-top: 220px;
    }

    .process-overview-card,
    .process-timeline-card,
    .process-client-card {
        padding: 26px 20px;
    }

    .process-timeline-number {
        font-size: 46px;
    }
}
/* SHOWCASE PAGE */

.showcase-page-hero {
    position: relative;
    padding: 190px 0 110px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.showcase-page-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.showcase-page-hero p {
    max-width: 950px;
    margin: 0 auto 35px;
    font-size: 19px;
    line-height: 1.9;
    color: #eeeeee;
    text-align: justify;
}

.showcase-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.showcase-seo-section {
    background: var(--body-bg);
}

.showcase-keyword-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.showcase-keyword-grid span {
    display: inline-block;
    background: var(--white);
    color: var(--secondary);
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(242, 139, 34, 0.16);
    transition: 0.35s ease;
}

.showcase-keyword-grid span:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: var(--white);
}

.showcase-table-section {
    background: var(--white);
}

.showcase-table {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.showcase-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: stretch;
    background: var(--body-bg);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(242, 139, 34, 0.14);
    transition: 0.45s ease;
}

.showcase-row:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.showcase-row.image-right {
    grid-template-columns: 1.1fr 0.9fr;
}

.showcase-row.image-right .showcase-row-image {
    order: 2;
}

.showcase-row.image-right .showcase-row-content {
    order: 1;
}

.showcase-row-image {
    min-height: 360px;
    overflow: hidden;
    background: var(--dark);
}

.showcase-row-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: 0.55s ease;
}

.showcase-row:hover .showcase-row-image img {
    transform: scale(1.08);
}

.showcase-row-content {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-row-content span {
    display: inline-block;
    width: fit-content;
    background: rgba(242, 139, 34, 0.14);
    color: var(--secondary);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 16px;
}

.showcase-row-content h3 {
    font-size: clamp(26px, 4vw, 38px);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

.showcase-row-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.showcase-row-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}

.showcase-row-link:hover {
    color: var(--secondary);
    transform: translateX(6px);
}

.showcase-detailed-seo-section {
    background: var(--body-bg);
}

.showcase-detailed-box {
    background: var(--white);
    padding: 44px;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid var(--primary);
}

.showcase-detailed-box h2 {
    font-size: clamp(30px, 5vw, 48px);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.showcase-detailed-box p {
    color: var(--muted);
    line-height: 1.95;
    margin-bottom: 20px;
}

.showcase-cta-section {
    background:
        linear-gradient(rgba(242, 139, 34, 0.93), rgba(217, 110, 0, 0.95)),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.showcase-cta-section h2 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 18px;
}

.showcase-cta-section p {
    max-width: 850px;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
}

.showcase-cta-section .primary-btn {
    background: var(--dark);
}

.showcase-cta-section .primary-btn:hover {
    background: var(--white);
    color: var(--dark);
}

@media (max-width: 1024px) {
    .showcase-page-hero {
        padding-top: 230px;
    }

    .showcase-row,
    .showcase-row.image-right {
        grid-template-columns: 1fr;
    }

    .showcase-row.image-right .showcase-row-image,
    .showcase-row.image-right .showcase-row-content {
        order: initial;
    }

    .showcase-row-image,
    .showcase-row-image img {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .showcase-page-hero {
        padding: 230px 0 80px;
    }

    .showcase-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .showcase-row-content {
        padding: 30px 24px;
    }

    .showcase-detailed-box {
        padding: 32px 24px;
    }
}

@media (max-width: 430px) {
    .showcase-page-hero {
        padding-top: 220px;
    }

    .showcase-row-image,
    .showcase-row-image img {
        min-height: 240px;
    }

    .showcase-row-content {
        padding: 26px 20px;
    }

    .showcase-detailed-box {
        padding: 28px 20px;
    }
}
.file-upload-box {
    background: #fff8f1;
    border: 1px dashed var(--primary);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-upload-box label {
    font-weight: 700;
    color: var(--dark);
}

.file-upload-box input[type="file"] {
    background: #ffffff;
    border: 1px solid #dddddd;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
}

.file-upload-box small {
    color: #666666;
    line-height: 1.6;
    text-align: justify;
}
/* HERO */
.hero {
    padding: 100px 5%;
    background: #ffffff;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 350px;
}

.hero-video-box {
    flex: 1;
    min-width: 350px;
}

.hero-video-box iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}

/* ANIMATED TITLE */
.animated-title {
    position: relative;
    display: inline-block;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 30px;
    overflow: hidden;
}

.animated-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 6px;
    height: 100%;
    background: #ff6b00;
    animation: lineUp 3s infinite;
}

.animated-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,107,0,.35),
        transparent
    );
    animation: sweepLeft 3s infinite;
}

@keyframes lineUp {
    0% {
        bottom: -100%;
    }
    40% {
        bottom: 0;
    }
    100% {
        bottom: 0;
    }
}

@keyframes sweepLeft {
    40% {
        right: -100%;
    }
    100% {
        right: 100%;
    }
}

/* SCROLLING SEO TEXT */
.scrolling-text {
    height: 110px;
    overflow: hidden;
    position: relative;
    margin-bottom: 35px;
}

.scrolling-wrapper {
    animation: verticalScroll 18s linear infinite;
}

.scroll-item {
    height: 110px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    display: flex;
    align-items: center;
}

@keyframes verticalScroll {
    0% {
        transform: translateY(0);
    }

    16% {
        transform: translateY(0);
    }

    33% {
        transform: translateY(-110px);
    }

    49% {
        transform: translateY(-110px);
    }

    66% {
        transform: translateY(-220px);
    }

    82% {
        transform: translateY(-220px);
    }

    100% {
        transform: translateY(-330px);
    }
}

/* BUTTONS */
.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background: #ff6b00;
    color: #fff;
}

.primary-btn:hover {
    background: #e55d00;
}

.secondary-btn {
    border: 2px solid #111;
    color: #111;
}

.secondary-btn:hover {
    background: #111;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
    }

    .animated-title {
        font-size: 38px;
    }

    .scroll-item {
        font-size: 16px;
    }

    .hero-video-box iframe {
        height: 250px;
    }
}
.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    margin-top:30px;
}

.footer-box h3{
    margin-bottom:12px;
    font-size:22px;
    font-weight:600;
}

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box ul li{
    margin-bottom:6px;
    line-height:1.5;
}

.footer-box a{
    text-decoration:none;
    transition:0.3s ease;
}

.footer-box a:hover{
    color:#00b140;
}

.bottom-footer-text{
    text-align:center;
    margin-top:35px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.15);
}

@media(max-width:768px){
    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
        text-align:center;
    }
}