/*
    STYLESHEET FOR 2N Marketing
    -----------------------------------
    Author: AI Assistant
    Version: 1.0
    Description: A comprehensive stylesheet for a modern, animated, and responsive digital marketing agency website.
*/

/* ---------------------------------- */
/*          1. CSS VARIABLES          */
/* ---------------------------------- */
:root {
    --primary-color: #FFD200;
    /* Bright Yellow from logo */
    --secondary-color: #000000;
    /* Black from logo */
    --accent-color: #ffffff;
    /* White from logo */

    --text-color: #333333;
    --text-light: #555555;
    --text-on-dark: #f0f0f0;

    --bg-light-gray: #f8f9fa;
    --bg-dark: #121212;
    --border-color: #e0e0e0;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------------------------------- */
/*          2. BASE & RESET           */
/* ---------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--accent-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------------------------------- */
/*         3. PRELOADER              */
/* ---------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 200px;
    margin-bottom: 2rem;
}

.preloader-dots {
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.0);
    }
}


/* ---------------------------------- */
/*         4. HEADER & NAV            */
/* ---------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth);
    padding: 0 1rem;
}

.header.scrolled {
    background-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link .logo {
    height: 45px;
    width: auto;
    transition: transform var(--transition-smooth);
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-on-dark);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.header.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-on-dark);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.header.scrolled .menu-toggle {
    color: var(--secondary-color);
}

.nav-close {
    display: none;
}

/* Mobile Nav Styles */
@media screen and (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100%;
        background-color: var(--secondary-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right var(--transition-smooth);
        z-index: 1010;
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
        color: var(--text-on-dark) !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        color: var(--accent-color);
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle {
        display: block;
    }
}


/* ---------------------------------- */
/*          5. BUTTONS & CTAs         */
/* ---------------------------------- */
.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(255, 210, 0, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.header.scrolled .btn-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ---------------------------------- */
/*          6. HERO SECTION           */
/* ---------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--accent-color);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c7da?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content .tagline {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--accent-color);
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.hero-title .highlight-yellow {
    color: var(--primary-color);
    display: inline-block;
}

.hero-title .highlight-black {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 0 0.5rem;
    border-radius: var(--border-radius-sm);
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    color: var(--text-on-dark);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-on-dark);
    margin: 0;
}

@media screen and (max-width: 768px) {
    .hero {
        height: auto;
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
    }
}

/* ---------------------------------- */
/*          7. SECTIONS & TITLES      */
/* ---------------------------------- */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.text-center {
    text-align: center;
}

.section-tag {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1.25rem;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ---------------------------------- */
/*       8. SERVICES SECTION          */
/* ---------------------------------- */
.services-section {
    background-color: var(--bg-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--accent-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    background-color: var(--primary-color);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-title {
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--secondary-color);
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ---------------------------------- */
/*          9. ABOUT SECTION          */
/* ---------------------------------- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.about-image {
    padding-top: 110%;
    /* Aspect ratio for the image */
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-list {
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

@media screen and (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ---------------------------------- */
/*       10. INDUSTRIES SECTION       */
/* ---------------------------------- */
.industries-section {
    background-color: var(--bg-light-gray);
}

.industries-wrapper {
    background-color: var(--accent-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
}

.industry-tabs {
    background-color: var(--secondary-color);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.industry-tab {
    background-color: transparent;
    border: none;
    color: var(--text-on-dark);
    padding: 1rem 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: var(--border-radius-sm);
    transition: background-color var(--transition-fast), color var(--transition-fast);
    width: 100%;
    text-align: left;
}

.industry-tab i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.industry-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.industry-tab.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.industry-content-wrapper {
    flex-grow: 1;
    position: relative;
}

.industry-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    animation: fadeIn 0.5s ease;
}

.industry-content.active {
    display: grid;
}

.industry-content .content-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-content .content-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.industry-content .content-text ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.industry-content .content-text ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.industry-content .content-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

@media screen and (max-width: 1024px) {
    .industries-wrapper {
        flex-direction: column;
    }

    .industry-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding: 1rem;
    }

    .industry-tab span {
        display: none;
    }

    .industry-content {
        grid-template-columns: 1fr;
    }

    .industry-content .content-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .industry-tab {
        padding: 0.8rem;
    }

    .industry-tab i {
        margin: 0 auto;
    }
}

@media screen and (min-width: 1025px) {
    .industry-tab span {
        display: inline;
    }
}

/* ---------------------------------- */
/*        11. PRICING SECTION         */
/* ---------------------------------- */
.pricing-section {
    background-color: var(--accent-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background-color: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    position: relative;
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-header {
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.plan-description {
    color: var(--text-light);
    min-height: 40px;
}

.plan-price {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-body {
    padding: 2.5rem 2rem;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.features-list li i {
    color: var(--primary-color);
}

.features-list li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.features-list li.disabled i {
    color: #ccc;
}

.pricing-footer {
    padding: 2rem;
}

.pricing-footer .btn-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.pricing-footer .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* ---------------------------------- */
/*      12. TESTIMONIALS SECTION      */
/* ---------------------------------- */
.testimonials-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--accent-color);
}

.testimonials-section .section-title,
.testimonials-section .section-tag {
    color: var(--accent-color);
}

.testimonials-section .section-tag {
    color: var(--primary-color);
}

.testimonial-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.testimonial-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(255, 210, 0, 0.3);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-text::before {
    top: 0;
    left: 0;
}

.testimonial-text::after {
    bottom: -2rem;
    right: 0;
}

.testimonial-author {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-company {
    display: block;
    color: var(--text-on-dark);
    opacity: 0.8;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-prev,
.slider-next {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* ---------------------------------- */
/*          13. CTA SECTION           */
/* ---------------------------------- */
.cta-section {
    background-color: var(--primary-color);
    padding: 5rem 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-content {
    color: var(--secondary-color);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.cta-text {
    margin: 0;
    font-size: 1.1rem;
}

.cta-action .btn-primary {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border-color: var(--secondary-color);
}

.cta-action .btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .contactButton {

        display: none;

    }
}

@media screen and (max-width: 520px) {

    .contactButton {

        display: none;

    }
}

/* ---------------------------------- */
/*             14. FOOTER             */
/* ---------------------------------- */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-on-dark);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    width: 200px;
    margin-bottom: 1.5rem;
    
}

.footer-about-text {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-on-dark);
    margin-right: 0.5rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-on-dark);
    opacity: 0.8;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--text-on-dark);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

@media screen and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 2rem;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }
}

/* ---------------------------------- */
/*        15. ANIMATIONS & FX         */
/* ---------------------------------- */
.animate-in {
    opacity: 0;
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.fade-in {
    opacity: 0;
}

.fade-in.is-visible {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(50px);
}

.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---------------------------------- */
/*      16. MISC. UTILITIES & COMPONENTS */
/* ---------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 500;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.chat-icon:hover {
    transform: scale(1.1) rotate(15deg);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 280px;
    background-color: var(--accent-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.chat-widget:hover .chat-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 1rem;
}

.chat-header p {
    margin: 0;
    line-height: 1.4;
}

.chat-body {
    padding: 1rem;
    font-size: 0.9rem;
}

.chat-body p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .chat-widget {
        display: none;
    }
}

/* ---------------------------------- */
/*      17. LEGAL & INNER PAGES       */
/* ---------------------------------- */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--bg-dark);
    color: var(--accent-color);
    text-align: center;
}

.page-header h1 {
    color: var(--accent-color);
    font-size: 3rem;
}

.breadcrumbs {
    margin-top: 1rem;
}

.breadcrumbs a {
    color: var(--text-on-dark);
    opacity: 0.8;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span,
.breadcrumbs i {
    color: var(--primary-color);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

.main-content {
    padding: 5rem 0;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.page-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
}

.page-content p {
    color: var(--text-light);
}

.page-content ul {
    list-style: disc;
    padding-left: 2rem;
}

.page-content ul li {
    margin-bottom: 0.5rem;
}

.page-content a {
    font-weight: 600;
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: right;
    font-size: 0.9rem;
}


/* ---------------------------------- */
/*       18. CONTACT PAGE             */
/* ---------------------------------- */
.contact-page-section {
    padding-bottom: 6rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-top: 4rem;
}

.contact-info-panel {
    background-color: var(--secondary-color);
    color: var(--text-on-dark);
    padding: 3rem;
}

.contact-info-panel h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info-panel p {
    opacity: 0.8;
}

.contact-details-list {
    margin-top: 2.5rem;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-details-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-details-list h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.contact-details-list a,
.contact-details-list p {
    color: var(--text-on-dark);
    opacity: 0.9;
    margin: 0;
}

.contact-details-list a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    padding: 3rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-light-gray);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.3);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}


/* ---------------------------------- */
/*       19. POPUP / MODAL            */
/* ---------------------------------- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--accent-color);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    max-width: 500px;
    margin: 1.5rem;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.popup-content h3 {
    margin-bottom: 1rem;
}