/*
Theme: Playnetic
Colors:
  - Blue: #0085FF
  - Coral: #FF5A5F
  - Yellow: #FFE66D
  - Navy: #0C0C3C
  - White: #FFFFFF
  - Light Gray: #F4F7FC
*/

/* ------------------- */
/* ROOT & VARIABLES    */
/* ------------------- */
:root {
    --color-primary: #0085FF;
    --color-secondary: #FF5A5F;
    --color-accent: #FFE66D;
    --color-dark: #0C0C3C;
    --color-light: #FFFFFF;
    --color-bg-light: #F4F7FC;
    --color-text: #555;
    --color-text-dark: #1e2022;

    --font-family: 'Poppins', sans-serif;
    --header-height: 80px;

    --transition-fast: 0.2s ease-in-out;
    --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s ease;

    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* ------------------- */
/* BASE & RESET        */
/* ------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    background-color: var(--color-light);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ------------------- */
/* UTILITY CLASSES     */
/* ------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-med);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 133, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    display: inline-block;
    background-color: rgba(0, 133, 255, 0.1);
    color: var(--color-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* ------------------- */
/* HEADER              */
/* ------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-dark);
    z-index: 1000;
    transition: all var(--transition-med);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo, .footer-logo {
    height: 60px;
    filter: invert(1);
    transition: transform var(--transition-med);
}

.logo-link:hover .logo {
    transform: rotate(360deg);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-med);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-light);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Mobile Nav Toggle Animation */
.mobile-nav.active .bar-top {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-nav.active .bar-middle {
    opacity: 0;
}

.mobile-nav.active .bar-bottom {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* ------------------- */
/* MOBILE NAVIGATION   */
/* ------------------- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    z-index: 999;
    transition: left var(--transition-slow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav nav ul {
    text-align: center;
}

.mobile-nav nav li {
    margin: 30px 0;
}

.mobile-nav nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-light);
}


@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }
}

/* ------------------- */
/* FOOTER              */
/* ------------------- */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.footer-bg-shapes .shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    border-radius: 50%;
    filter: blur(100px);
    top: -50px;
    left: -100px;
}

.footer-bg-shapes .shape-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--color-secondary);
    border-radius: 50%;
    filter: blur(90px);
    bottom: -80px;
    right: -80px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-title {
    color: var(--color-light);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.footer-about .footer-logo-link {
    margin-bottom: 20px;
}

.footer-about-text {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    transition: all var(--transition-med);
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul a:hover {
    color: var(--color-light);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--color-primary);
    margin-top: 5px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info a:hover {
    color: var(--color-light);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}

/* ------------------- */
/* HERO SECTION        */
/* ------------------- */
.hero {
    background-color: var(--color-bg-light);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--color-primary);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-accent);
    z-index: -1;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.floating-card {
    position: absolute;
    background: var(--color-light);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.floating-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.floating-card p {
    font-size: 0.9rem;
    line-height: 1.2;
}

.floating-card.card-1 {
    top: 50px;
    left: -50px;
}

.floating-card.card-2 {
    bottom: 50px;
    right: -60px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    left: -150px;
    filter: blur(100px);
}

.hero-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: -100px;
    right: -100px;
    filter: blur(100px);
}

.hero-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    top: 50%;
    right: 20%;
    filter: blur(80px);
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
        margin-bottom: 50px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }

    .floating-card {
        display: none;
    }
}

/* ------------------- */
/* SERVICES SECTION    */
/* ------------------- */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-light);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #eef2f8;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) translateZ(0);
    /* For 3D effect */
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 133, 255, 0.1), transparent 40%);
    transition: transform var(--transition-slow);
    transform: scale(0);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scale(1);
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 133, 255, 0.2);
    transition: transform var(--transition-med);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(15deg);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 25px;
}

.card-link {
    font-weight: 600;
    color: var(--color-primary);
}

.card-link i {
    transition: transform var(--transition-fast);
    display: inline-block;
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}


/* ------------------- */
/* ABOUT SECTION       */
/* ------------------- */
.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-container {
    position: relative;
    padding: 20px;
    border: 10px solid var(--color-light);
    box-shadow: var(--shadow-md);
    border-radius: 20px;
}

.about-image-container img {
    border-radius: 15px;
}

.experience-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: var(--color-light);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 90, 95, 0.3);
    border: 5px solid var(--color-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.experience-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.about-content-col h2 {
    margin-bottom: 20px;
}

.about-content-col p {
    margin-bottom: 25px;
}

.about-features {
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-features i {
    color: var(--color-primary);
}

@media (max-width: 992px) {
    .about-section .container {
        grid-template-columns: 1fr;
    }

    .about-image-col {
        margin-bottom: 80px;
    }

    .about-content-col {
        text-align: center;
    }

    .about-features {
        display: inline-block;
        text-align: left;
    }
}

/* ------------------- */
/* PROCESS SECTION     */
/* ------------------- */
.process-section {
    padding: 100px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--color-primary), var(--color-primary) 6px, transparent 6px, transparent 12px);
}


.process-step {
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.step-icon-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--color-light);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--color-primary);
    transition: all var(--transition-med);
    position: relative;
    z-index: 2;
}

.process-step:hover .step-icon {
    background: var(--color-primary);
    color: var(--color-light);
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: var(--color-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    z-index: 3;
}

.step-content h3 {
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 80px;
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* ------------------- */
/* TESTIMONIALS SECTION*/
/* ------------------- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-card {
    background: var(--color-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--color-text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
}

.author-details h4 {
    margin-bottom: 0;
}

.author-details span {
    font-size: 0.9rem;
    color: var(--color-text);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    pointer-events: all;
    background: var(--color-primary);
    color: var(--color-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-med);
}

.slider-btn:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.slider-btn.prev-btn {
    transform: translateX(-70px);
}

.slider-btn.next-btn {
    transform: translateX(70px);
}

@media(max-width: 768px) {
    .slider-controls {
        display: none;
    }
}

/* ------------------- */
/* CTA SECTION         */
/* ------------------- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(12, 12, 60, 0.9), rgba(12, 12, 60, 0.9)), url('https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
    background-attachment: fixed;
}

.cta-content {
    text-align: center;
    color: var(--color-light);
}

.cta-content h2 {
    color: var(--color-light);
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-content .btn-secondary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-light);
}

.cta-content .btn-secondary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* ------------------- */
/* LEGAL & SUBPAGES    */
/* ------------------- */
.subpage main {
    padding-top: var(--header-height);
}

.page-header {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: var(--color-light);
    margin-bottom: 15px;
}

.page-subtitle {
    max-width: 700px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs span,
.breadcrumbs i {
    color: var(--color-light);
}

.breadcrumbs i {
    margin: 0 10px;
}

.legal-content,
.contact-section-page {
    padding: 100px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
}

.content-wrapper h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-bg-light);
}

/* ------------------- */
/* CONTACT PAGE        */
/* ------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--color-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-info-col h2 {
    margin-bottom: 15px;
}

.contact-info-col p {
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.method-details p,
.method-details a {
    margin: 0;
    font-weight: 500;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-family);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
}

@media(max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 576px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 30px;
    }
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med);
}

.popup:target {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: var(--color-light);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    max-width: 400px;
    transform: scale(0.8);
    transition: transform var(--transition-med);
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: #aaa;
}

.popup-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 10px;
}

/* ------------------- */
/* ANIMATIONS          */
/* ------------------- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0s);
}

.slide-in-down {
    transform: translateY(-30px);
}

.slide-in-up {
    transform: translateY(30px);
}

.slide-in-left {
    transform: translateX(-30px);
}

.slide-in-right {
    transform: translateX(30px);
}

.fade-in {
    transform: translateY(0);
}

.zoom-in {
    transform: scale(0.95);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ------------------- */
/* LIVE CHAT WIDGET    */
/* ------------------- */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 998;
    transition: transform var(--transition-med);
}

.live-chat-widget:hover {
    transform: scale(1.1) rotate(10deg);
}