/* ════════════════════════════════════════════
CREATIVE ISLAND — style.css
Sections:
1.  Variables & Reset
2.  Custom Cursor
3.  Navigation
4.  Menu Overlay
5.  Sections Container & Transitions
6.  Section Dots & Label
7.  HERO
8.  ABOUT
9.  SERVICES
10. SHOWCASE (NEW Gallery Section)
11. PORTFOLIO
12. PARTNERS
13. CONTACT
14. FOOTER
15. Keyframes
16. MOBILE RESPONSIVE (max-width: 768px)
════════════════════════════════════════════ */


/* ══════════════════════════════════════════
VARIABLES & RESET
══════════════════════════════════════════ */

 :root {
    --sand: #F5EFE0;
    --ocean: {
        {
            $settings->primary_color ?? '#0A4D6E'
        }
    }
    ;
    --coral: {
        {
            $settings->accent_color ?? '#E85D26'
        }
    }
    ;
    --dark: {
        {
            $settings->bg_color ?? '#0D1117'
        }
    }
    ;
    --gold: #e9c46a;
    --white: #FAFAF7;
    --teal: #f4a261;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}


/* ══════════════════════════════════════════
CURSOR (اصلاح شده)
══════════════════════════════════════════ */

.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.3s;
    transform: translate(-50%, -50%);
    /* جادوی اینجاست: روی هر رنگی برود، رنگ مخالفش را می‌گیرد تا دیده شود */
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--white);
    /* تغییر به سفید برای تضاد بهتر */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease, opacity 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    mix-blend-mode: difference;
}


/* ══════════════════════════════════════════
NAV
══════════════════════════════════════════ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    mix-blend-mode: difference;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.05em;
    text-decoration: none;
    font-weight: 700;
}

.logo span {
    color: var(--coral);
}

.nav-toggle {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}


/* ══════════════════════════════════════════
MENU OVERLAY
══════════════════════════════════════════ */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: normal !important;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.menu-left {
    background-color: #0D1117 !important;
    background: var(--dark, #0D1117);
    display: flex;
    align-items: center;
    padding: 80px;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.menu-right {
    background: var(--coral);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay.open .menu-left,
.menu-overlay.open .menu-right {
    transform: translateX(0);
}

.menu-items {
    list-style: none;
}

.menu-items li {
    overflow: hidden;
}

.menu-items a {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--sand) !important;
    position: relative;
    z-index: 10;
    text-decoration: none;
    display: block;
    line-height: 1.3;
    transition: color 0.3s, transform 0.3s, padding 0.3s;
    transform: translateY(100%);
    font-weight: 600;
}

.menu-overlay.open .menu-items a {
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s, padding 0.3s;
}

.menu-items li:nth-child(1) a {
    transition-delay: 0.10s;
}

.menu-items li:nth-child(2) a {
    transition-delay: 0.18s;
}

.menu-items li:nth-child(3) a {
    transition-delay: 0.26s;
}

.menu-items li:nth-child(4) a {
    transition-delay: 0.34s;
}

.menu-items li:nth-child(5) a {
    transition-delay: 0.42s;
}

.menu-items li:nth-child(6) a {
    transition-delay: 0.50s;
}

.menu-items a:hover {
    color: var(--gold);
    padding-left: 16px;
}

.menu-contact {
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 2;
    font-family: 'Poppins', sans-serif;
}

.menu-contact p {
    font-weight: 300;
}

.menu-contact a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
}

.menu-contact h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.menu-right .menu-contact a,
.menu-right .menu-contact h3,
.menu-right .menu-contact p {
    color: var(--dark) !important;
    /* اطمینان از تضاد با رنگ نارنجی */
}

.menu-socials a img {
    filter: brightness(0);
    /* آیکون‌ها را کاملاً مشکی می‌کند تا روی نارنجی بدرخشند */
}


/* ══════════════════════════════════════════
SECTIONS CONTAINER
══════════════════════════════════════════ */

.sections-wrap {
    position: fixed;
    inset: 0;
    overflow: hidden;
}

section {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: none;
}

section.active {
    z-index: 10;
    transform: translateY(0);
    opacity: 1;
}

section.above {
    z-index: 5;
    transform: translateY(-100%);
    opacity: 0;
}

section.below {
    z-index: 5;
    transform: translateY(100%);
    opacity: 0;
}

@keyframes leaveUp {
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes leaveDown {
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes enterFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes enterFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ══════════════════════════════════════════
DOTS & LABEL
══════════════════════════════════════════ */

.section-dots {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.dot.active {
    background: var(--coral);
    transform: scale(1.6);
}

.section-label {
    position: fixed;
    left: 48px;
    bottom: 36px;
    z-index: 800;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    mix-blend-mode: difference;
    transition: color 0.5s;
    font-family: 'Poppins', sans-serif;
}


/* ══════════════════════════════════════════
SECTION 0: HERO
══════════════════════════════════════════ */

#hero {
    background: var(--dark);
    /* استفاده از متغیر داینامیک به جای #212121 */
    flex-direction: column;
    position: relative;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    border-bottom-right-radius: 12vw;
}

#hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: calc(100% + 200px);
    object-fit: cover;
    transform: rotate(180deg) translateY(200px);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--dark) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
    font-family: 'Poppins', sans-serif;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 9vw, 9rem);
    color: var(--white);
    line-height: 1.05;
    font-weight: 900;
    mix-blend-mode: difference;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s forwards;
}

.hero-title .static-line {
    display: block;
    color: var(--white);
}

.hero-title .dynamic-line {
    display: block;
    color: var(--coral);
    min-height: 1.1em;
}

.hero-title .dynamic-line::after {
    content: '|';
    color: var(--white);
    animation: blink 0.75s step-end infinite;
    margin-left: 3px;
    font-style: normal;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(250, 250, 247, 0.45);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s forwards;
    font-family: 'Poppins', sans-serif;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeUp 0.9s 1.1s forwards;
    font-family: 'Poppins', sans-serif;
}

.hero-cta:hover {
    background: var(--gold);
    gap: 20px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s 1.5s forwards;
    font-family: 'Poppins', sans-serif;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--coral), transparent);
    animation: scrollPulse 2s 2s infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(0.6) translateY(10px);
    }
}


/* ══════════════════════════════════════════
SECTION 1: ABOUT
══════════════════════════════════════════ */

#about {
    background: var(--sand);
    padding: 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    /* ارتفاع کامل صفحه */
    width: 100%;
}

.about-visual {
    background: var(--ocean);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.about-visual-bg {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 30px);
}

.about-visual-circle {
    position: absolute;
    width: 60vmin;
    height: 60vmin;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-visual-circle:nth-child(3) {
    width: 40vmin;
    height: 40vmin;
    border-color: rgba(201, 168, 76, 0.3);
}

.about-number-bg {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(5rem, 12vw, 14rem);
    color: rgba(255, 255, 255, 0.06);
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    white-space: nowrap;
}

.about-stat {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.about-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 700;
}

.about-stat-label {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 8px;
}

.about-text {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    /* اگر سایز در ادمین نبود از clamp پیش‌فرض استفاده کن */
    font-size: {
        {
            $about->title_size ? $about->title_size . 'rem': 'clamp(2rem, 4vw, 3.5rem)'
        }
    }
    ;
    color: var(--ocean);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-text h2 em {
    font-style: italic;
    color: var(--coral);
}

.about-text p {
    color: rgba(13, 17, 23, 0.65);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 420px;
    font-family: 'Poppins', sans-serif;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--ocean);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.values-list li::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--coral);
    flex-shrink: 0;
}


/* ══════════════════════════════════════════
SECTION 2: SERVICES
══════════════════════════════════════════ */

#services {
    background: #0D1117;
    flex-direction: column;
    padding: 60px 80px;
}

.services-header {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    max-width: 500px;
}

.services-header h2 em {
    color: var(--coral);
    font-style: italic;
}

.services-count {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    width: 100%;
    max-width: 1100px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s, border-color 0.3s;
}

.service-card:hover {
    background: var(--coral);
    border-color: var(--coral);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-icon img,
.reel-platform img,
.footer-col ul li a img {
    filter: invert(1);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}


/* ══════════════════════════════════════════
SECTION 3: WORK — گالری متحرک CodePen
══════════════════════════════════════════ */

#work {
    background: #10192f;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: row;
}

.work-text {
    flex: 0 0 340px;
    padding: 80px 50px 80px 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.work-text h2 em {
    color: var(--coral);
    font-style: italic;
}

.work-text p {
    font-size: 0.95rem;
    color: rgba(250, 250, 247, 0.45);
    line-height: 1.7;
    font-weight: 300;
    max-width: 260px;
    font-family: 'Poppins', sans-serif;
}

.work-gallery {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.work-gallery .wrapper {
    width: 100%;
    height: 100vh;
    perspective: 700px;
    overflow: hidden;
}

.grid_animation_container {
    display: grid;
    gap: 3rem;
    width: 100%;
    height: 75rem;
    grid-template-columns: repeat(3, 1fr);
    transform: translate3d(20%, -2%, 0px) scale3d(0.9, 0.8, 1) rotateX(15deg) rotateY(-9deg) rotateZ(32deg);
    transform-origin: 50% 0%;
    scale: 1.2;
}

.grid-item {
    display: grid;
    gap: 1.2rem;
}

.grid_column_1 {
    animation: sliding-img-up-1 30s linear infinite;
}

.grid_column_2 {
    animation: sliding-img-down-2 30s linear infinite;
}

.grid_column_3 {
    animation: sliding-image-up 30s linear infinite;
}

@keyframes sliding-img-up-1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-636px);
    }
}

@keyframes sliding-img-down-2 {
    0% {
        transform: translateY(-536px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes sliding-image-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-636px);
    }
}

.grid_animation_container img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}


/* ══════════════════════════════════════════
SECTION 4: PORTFOLIO — ریلز اسلایدر ۴ ستونه
══════════════════════════════════════════ */

section {
    scroll-margin-top: 100px;
    /* وقتی روی منو کلیک میکنی دقیقا زیر منو قرار میگیره */
}

#portfolio {
    background: var(--ocean);
    padding-top: 100px;
    flex-direction: column;
    padding: 40px 80px;
    min-height: auto;
}

.portfolio-header {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.portfolio-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
}

.portfolio-header h2 em {
    color: var(--gold);
    font-style: italic;
}

.portfolio-header .section-tag {
    color: rgba(250, 250, 247, 0.5);
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.reels-slider-wrap {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.reels-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    max-height: 450px;
}

.reel-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 450px;
}

.reel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.reel-thumb {
    aspect-ratio: 9/16;
    height: 320px !important;
    width: 100%;
    background: linear-gradient(160deg, #1a3a4a, #0a2030);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-thumb-inner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.reel-card:hover .reel-play {
    background: rgba(232, 93, 38, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-play svg {
    margin-left: 3px;
}

.reel-info {
    padding: 10px;
    font-family: 'Poppins', sans-serif;
}

.reel-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.reel-tags {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
    line-height: 1.5;
}

.reel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reel-client {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold);
}

.reel-platform {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.reel-platform svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.portfolio-cta-wrap {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-top: 20px;
}

.portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
}

.portfolio-cta:hover {
    background: var(--coral);
    border-color: var(--coral);
    gap: 16px;
}


/* Thumb color variations */

.reel-thumb.c1 {
    background: linear-gradient(160deg, #1a3550, #0d2035);
}

.reel-thumb.c2 {
    background: linear-gradient(160deg, #3a1a0f, #1a0a05);
}

.reel-thumb.c3 {
    background: linear-gradient(160deg, #1a3a2a, #0a2015);
}

.reel-thumb.c4 {
    background: linear-gradient(160deg, #2a1a3a, #150a20);
}

.reel-thumb.c5 {
    background: linear-gradient(160deg, #3a2a10, #201505);
}

.reel-thumb.c6 {
    background: linear-gradient(160deg, #1a1a3a, #0a0a20);
}

.reel-thumb.c7 {
    background: linear-gradient(160deg, #3a1a2a, #200a15);
}

.reel-thumb.c8 {
    background: linear-gradient(160deg, #0a3a3a, #052020);
}

.reel-thumb.c9 {
    background: linear-gradient(160deg, #2a3a10, #152005);
}

.reel-thumb.c10 {
    background: linear-gradient(160deg, #1a2a3a, #0a1520);
}


/* ══════════════════════════════════════════
SECTION 5: PARTNERS
══════════════════════════════════════════ */

#partners {
    background: var(--sand);
    flex-direction: column;
    padding: 50px 80px;
    overflow: hidden;
}

.partners-wrap {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.partners-header {
    margin-bottom: 30px;
    text-align: center;
}

.partners-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
}

.partners-header h2 em {
    color: var(--coral);
    font-style: italic;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 36px;
}

.partner-logo {
    padding: 12px 28px;
    border: 1px solid rgba(13, 17, 23, 0.12);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(13, 17, 23, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.partner-logo:hover {
    border-color: var(--coral);
    color: var(--coral);
}


/* Testimonial Slider */

.testimonials-section {
    width: 100%;
}

.testimonials-label {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.testimonials-track-wrap {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.tcard {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--white);
    padding: 36px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
    min-width: calc(33.333% - 14px);
}

.tcard:hover {
    border-color: var(--coral);
}

.tcard::before {
    content: '"';
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    color: rgba(232, 93, 38, 0.08);
    line-height: 1;
    position: absolute;
    top: -10px;
    left: 16px;
    font-weight: 900;
}

.tcard blockquote {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tcard-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.tcard-info cite {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    font-style: normal;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.tcard-info span {
    display: block;
    font-size: 0.75rem;
    color: rgba(13, 17, 23, 0.4);
    margin-top: 2px;
    font-family: 'Poppins', sans-serif;
}

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

.tnav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    /* یا رنگ مورد نظر */
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    padding: 0;
    color: var(--dark);
    transition: all 0.3s;
}

.tnav-btn:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: #fff;
}

.tnav-btn svg {
    display: block;
}

@media (max-width: 992px) {
    .tcard {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .tcard {
        flex: 0 0 100%;
        min-width: 100%;
    }
}


/* ══════════════════════════════════════════
SECTION 6: CONTACT
══════════════════════════════════════════ */

#contact {
    background: #0D1117;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    width: 90%;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-info h2 em {
    color: var(--coral);
    font-style: italic;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-detail a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-detail a:hover {
    color: var(--coral);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
}

.form-group textarea {
    resize: none;
    height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.btn-submit {
    display: inline-block;
    padding: 16px 40px;
    background: var(--coral);
    color: var(--white);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--gold);
}

.social-icon-link {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon-link img {
    filter: brightness(0) invert(1);
}

.social-icon-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}


/* ══════════════════════════════════════════
SECTION 7: FOOTER
══════════════════════════════════════════ */

#footer {
    background: #070A0F;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}

.footer-hero {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 60px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(ellipse at 50% 60%, rgba(232, 93, 38, 0.08) 0%, transparent 65%);
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 5.5rem);
    color: var(--white);
    font-weight: 900;
    line-height: 1.1;
    max-width: 900px;
}

.footer-tagline em {
    color: var(--coral);
    font-style: italic;
    display: block;
}

.footer-tagline-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 2.5rem;
}

.footer-cta-btn:hover {
    background: var(--gold);
    gap: 18px;
}

.footer-bottom-wrap {
    width: 100%;
    padding: 40px 80px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
}

.footer-brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand .logo-text span {
    color: var(--coral);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--coral);
}

.footer-copyright {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 30px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.78rem;
}


/* ════════════════════════════════════════════
MOBILE RESPONSIVE — max-width: 768px
فقط تغییرات موبایل — دسکتاپ دست نخورده
════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* ── Cursor: غیرفعال در موبایل ── */
    .cursor,
    .cursor-ring {
        display: none;
    }
    *,
    *::before,
    *::after {
        cursor: auto;
    }
    /* ── Nav ── */
    nav {
        padding: 20px 24px;
    }
    /* ── Section Dots: مخفی در موبایل ── */
    .section-dots {
        display: none;
    }
    /* ── Section Label: مخفی در موبایل ── */
    .section-label {
        display: none;
    }
    /* ══════════════════════════════════════
MENU OVERLAY — بالا/پایین در موبایل
══════════════════════════════════════ */
    .menu-overlay {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    .menu-left {
        background: #0D1117;
        /* رنگ تیره ثابت برای اطمینان */
        background-color: var(--bg_color, #0D1117);
        /* استفاده از رنگ داینامیک دیتابیس اگر وجود داشت */
        display: flex;
        align-items: center;
        padding: 80px;
        transform: translateX(-100%);
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 901;
        /* اطمینان از قرارگیری روی سایر المان‌ها */
    }
    .menu-right {
        transform: translateY(100%);
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        padding: 36px 40px;
        justify-content: flex-start;
    }
    .menu-overlay.open .menu-left {
        transform: translateY(0);
        mix-blend-mode: normal;
    }
    .menu-overlay.open .menu-right {
        transform: translateY(0);
    }
    .menu-items a {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .menu-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .menu-contact {
        font-size: 0.82rem;
        line-height: 1.8;
    }
    /* ══════════════════════════════════════
HERO — موبایل
══════════════════════════════════════ */
    .hero-content {
        padding: 0 24px;
    }
    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        margin-bottom: 1rem;
    }
    .hero-title {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }
    .hero-sub {
        font-size: 0.9rem;
        margin-top: 1rem;
        margin-bottom: 1.8rem;
    }
    .hero-cta {
        padding: 14px 28px;
        font-size: 0.78rem;
    }
    .hero-scroll {
        bottom: 20px;
    }
    /* ══════════════════════════════════════
ABOUT — موبایل (بالا: تصویر ۱/۴، پایین: متن ۳/۴)
══════════════════════════════════════ */
    #about {
        overflow-y: auto;
    }
    .about-inner {
        grid-template-columns: 1fr;
        grid-template-rows: 25vh 1fr;
        height: 100%;
    }
    .about-visual {
        padding: 24px;
        align-items: center;
        justify-content: flex-start;
        min-height: unset;
    }
    /* لوگو در بخش تصویر */
    .about-visual::after {
        content: 'Creative Island';
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        color: var(--white);
        letter-spacing: 0.05em;
        position: relative;
        z-index: 3;
    }
    .about-stat {
        display: none;
    }
    .about-number-bg {
        font-size: 6rem;
    }
    .about-text {
        padding: 32px 24px;
        overflow-y: auto;
        justify-content: flex-start;
    }
    .about-text h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 1.2rem;
    }
    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }
    .values-list li {
        font-size: 0.82rem;
    }
    /* ══════════════════════════════════════
SERVICES — موبایل (۲ ستون × ۲ سطر + show more)
══════════════════════════════════════ */
    #services {
        padding: 80px 20px 30px;
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .services-header {
        flex-direction: column;
        gap: 0;
        margin-bottom: 24px;
        padding-top: 0;
    }
    .services-header h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        max-width: 100%;
    }
    .services-count {
        display: none;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        max-width: 100%;
    }
    .service-card {
        padding: 24px 18px;
    }
    .service-icon {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .service-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    /* متن کوتاه‌شده با show more / show less */
    .service-card p {
        font-size: 0.78rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: all 0.3s;
    }
    .service-card p.expanded {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .service-card .show-toggle {
        display: inline-block;
        font-size: 0.7rem;
        color: var(--coral);
        margin-top: 6px;
        letter-spacing: 0.05em;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        font-family: 'DM Sans', sans-serif;
    }
    /* ══════════════════════════════════════
WORK — موبایل
══════════════════════════════════════ */
    #work {
        flex-direction: column;
    }
    .work-text {
        flex: 0 0 auto;
        padding: 80px 24px 16px;
    }
    .work-text h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 0.6rem;
    }
    .work-text p {
        font-size: 0.82rem;
        max-width: 100%;
    }
    .work-gallery {
        flex: 1;
        min-height: 0;
    }
    .work-gallery .wrapper {
        height: calc(100% - 0px);
    }
    .grid_animation_container {
        transform: translate3d(5%, -2%, 0px) scale3d(1, 0.85, 1) rotateX(10deg) rotateY(-5deg) rotateZ(20deg);
        scale: 1;
        gap: 1.2rem;
        height: 55rem;
    }
    /* ══════════════════════════════════════
PORTFOLIO — موبایل (اسلایدر تک‌سطر ۲ ستونه)
══════════════════════════════════════ */
    #portfolio {
        padding: 80px 16px 30px;
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 20px;
    }
    .portfolio-header h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .portfolio-header .section-tag {
        margin-bottom: 0;
    }
    .reels-slider-wrap {
        overflow: hidden;
    }
    .reels-slider {
        display: flex;
        flex-direction: row;
        gap: 12px;
        grid-template-columns: unset;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 8px;
    }
    .reels-slider::-webkit-scrollbar {
        display: none;
    }
    .reel-card {
        flex: 0 0 calc(50% - 6px);
        scroll-snap-align: start;
        min-width: 0;
        /* override display:none on extra cards for mobile scroll */
        display: block !important;
    }
    .reel-info {
        padding: 10px;
    }
    .reel-title {
        font-size: 0.78rem;
    }
    .reel-tags {
        font-size: 0.65rem;
    }
    .reel-client {
        font-size: 0.68rem;
    }
    .portfolio-cta-wrap {
        margin-top: 20px;
    }
    .portfolio-cta {
        padding: 12px 24px;
        font-size: 0.75rem;
    }
    /* ══════════════════════════════════════
PARTNERS — موبایل
══════════════════════════════════════ */
    #partners {
        padding: 80px 20px 30px;
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .partners-wrap {
        max-width: 100%;
    }
    .partners-header {
        margin-bottom: 20px;
    }
    .partners-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    /* لوگوها: یک ردیف اسکرول افقی */
    .partners-logos {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 24px;
    }
    .partners-logos::-webkit-scrollbar {
        display: none;
    }
    .partner-logo {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.75rem;
    }
    /* Testimonial: تک ستونه */
    .tcard {
        flex: 0 0 calc(100% - 0px);
    }
    .tcard blockquote {
        font-size: 0.9rem;
    }
    /* ══════════════════════════════════════
CONTACT — موبایل
══════════════════════════════════════ */
    #contact {
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        padding: 90px 24px 40px;
        max-width: 100%;
    }
    .contact-info h2 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        margin-bottom: 1rem;
    }
    .contact-detail {
        margin-bottom: 0;
        gap: 0.6rem;
    }
    .contact-detail a {
        font-size: 0.85rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.88rem;
    }
    .form-group textarea {
        height: 100px;
    }
    .btn-submit {
        padding: 14px 30px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    /* ══════════════════════════════════════
FOOTER — موبایل
══════════════════════════════════════ */
    #footer {
        overflow-y: auto;
    }
    .footer-hero {
        padding: 80px 24px 36px;
        flex: unset;
    }
    .footer-tagline {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
    .footer-tagline-sub {
        font-size: 0.82rem;
        margin-top: 1rem;
    }
    .footer-cta-btn {
        padding: 13px 26px;
        font-size: 0.76rem;
        margin-top: 1.6rem;
    }
    .footer-bottom-wrap {
        padding: 28px 24px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-col {
        margin-bottom: 4px;
    }
    .footer-col h4 {
        margin-bottom: 0.6rem;
    }
    .footer-col ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        align-items: center;
    }
    .footer-col ul li {
        display: flex;
        align-items: center;
    }
    .footer-col ul li:not(:last-child)::after {
        content: '|';
        color: rgba(255, 255, 255, 0.15);
        margin: 0 8px;
        font-size: 0.75rem;
    }
    .footer-col ul a {
        font-size: 0.8rem;
    }
    /* ستون Contact با آیکون‌های SVG */
    .footer-col.footer-col-contact ul {
        flex-direction: row;
        gap: 16px;
        flex-wrap: nowrap;
    }
    .footer-col.footer-col-contact ul li::after {
        display: none;
    }
    .footer-col.footer-col-contact ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        font-size: 0;
        transition: border-color 0.3s, background 0.3s;
        position: relative;
    }
    .footer-col.footer-col-contact ul li a:hover {
        border-color: var(--coral);
        background: rgba(232, 93, 38, 0.15);
    }
    .footer-col.footer-col-contact ul li:nth-child(1) a::after {
        content: '';
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)' stroke-width='1.5'%3E%3Cpath d='M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0l-9.75 6.75L2.25 6.75'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
    }
    .footer-col.footer-col-contact ul li:nth-child(2) a::after {
        content: '';
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)' stroke-width='1.5'%3E%3Cpath d='M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 002.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 01-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 00-1.091-.852H4.5A2.25 2.25 0 002.25 4.5v2.25z'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
    }
    .footer-col.footer-col-contact ul li:nth-child(3) a::after {
        content: '';
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)' stroke-width='1.5'%3E%3Cpath d='M15 10.5a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3Cpath d='M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1115 0z'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
    }
    .footer-copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 20px;
        margin-top: 20px;
    }
    .footer-copyright p {
        font-size: 0.72rem;
    }
}


/* end @media (max-width: 768px) */