/* ===========================
   Root & Reset
   =========================== */
:root {
    --primary: #703bbd;
    --secondary: #00b1bf;
    --accent: #764ba2;
    --light: #f5f7fa;
    --text: #1a1a2e;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow: 0 5px 25px rgba(112, 59, 189, 0.15);
    --shadow-lg: 0 15px 40px rgba(112, 59, 189, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    margin: 0;
    padding: 181px 0 0 0;
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        padding: 120px 0 0 0;
    }
}

@media (max-width: 576px) {
    body {
        padding: 146px 0 0 0;
    }
}

@media (max-width: 480px) {
    body {
        padding: 151px 0 0 0;
    }
}

/* ===========================
   Typography
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--text);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

/* ===========================
   Typewriter Animation
   =========================== */
.typed-text {
    position: relative;
    display: inline-block;
}

.typing-wrapper {
    display: inline-flex;
    align-items: center;
}

.typing-text {
    display: inline;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--primary);
    margin-left: 2px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ===========================
   Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

section {
    padding: 2rem 0;
}

.booking-section {
    scroll-margin-top: 200px;
}

#about {
    scroll-margin-top: 200px;
}

#services {
    scroll-margin-top: 200px;
}

.faq-section {
    scroll-margin-top: 200px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 1rem;
    }
}

.about .section-header {
    text-align: left;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

/* ===========================
   Animated Heading Animation
   =========================== */
@keyframes slideInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 0%, transparent 100%);
        background-size: 0% 100%;
        background-position: left;
    }

    30% {
        opacity: 1;
        transform: translateY(0);
        background-size: 100% 100%;
    }

    70% {
        opacity: 1;
        transform: translateY(0);
        background-size: 100% 100%;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
        background-size: 0% 100%;
        background-position: right;
    }
}

.animated-heading {
    animation: slideInText 5s ease-in-out infinite;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    background-size: 0% 100%;
    background-position: left;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.section-header p {
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-light);
}

.about .section-header p {
    margin-left: 0;
}

/* ===========================
   Top Bar
   =========================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 0.8rem 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(112, 59, 189, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 480px) {
    .top-bar.hidden {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        display: block !important;
    }

    .logo-img {
        height: 85px !important;
        width: auto !important;
    }
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.top-bar-item i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-item a:hover {
    opacity: 0.8;
}

.top-bar-divider {
    opacity: 0.5;
    margin: 0 0.3rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 51px;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    height: 130px;
    display: flex;
    align-items: center;
    margin: 0;
    overflow: visible;
}

.navbar>.container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    margin-right: 3rem;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 480px) {
    .logo-img {
        height: 75px !important;
        width: auto !important;
    }
}

.navbar-nav {
    gap: 0.5rem;
    align-items: center;
    flex-direction: row;
    margin-left: auto;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 1rem !important;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.nav-link.active {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--secondary);
}

.navbar-collapse {
    overflow: visible !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23703bbd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-left: 1rem;
    border-radius: 25px;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 59, 189, 0.3);
}

/* ===========================
   Responsive Top Bar & Navbar
   =========================== */
@media (max-width: 1024px) {
    .top-bar-info {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

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

    .hero-image-wrapper {
        min-height: 520px;
        height: 520px;
    }

    .hero-image {
        width: 110%;
        height: 110%;
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

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

    .top-bar-wrapper {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .top-bar-info {
        width: auto;
        justify-content: flex-start;
        font-size: 0.7rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    /* Navbar Mobile */
    .navbar {
        position: fixed !important;
        top: 50px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 60px !important;
        padding: 0.5rem 1rem !important;
        margin: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
        z-index: 1030 !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .navbar>.container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .navbar-brand {
        margin: 0 !important;
        width: auto !important;
    }

    .logo-img {
        height: 50px !important;
        width: auto !important;
    }

    .navbar-toggler {
        border: none !important;
        padding: 0.5rem !important;
        box-shadow: none !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar-toggler-icon {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23703bbd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 4l22 22M26 4L4 26'/%3e%3c/svg%3e") !important;
    }

    .navbar-collapse {
        position: fixed !important;
        top: 110px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 60px) !important;
        margin: 0 !important;
        padding: 0 !important;
        background: linear-gradient(135deg, #703bbd 0%, #764ba2 100%) !important;
        backdrop-filter: blur(10px) !important;
        border: none !important;
        display: flex !important;
        flex-direction: column !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-20px) !important;
        transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1020 !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
    }

    .navbar-collapse.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 2rem 0 !important;
    }

    .nav-item {
        width: 100% !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-item:last-child {
        border: none !important;
        padding-bottom: 2rem !important;
    }

    .nav-link {
        display: block !important;
        padding: 1.2rem 1.8rem !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        text-align: left !important;
        border: none !important;
        background: transparent !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
    }

    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        padding-left: 2.2rem !important;
    }

    .navbar .btn-primary {
        width: calc(100% - 3.6rem) !important;
        margin: 1.5rem 1.8rem !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
        background: #ffffff !important;
        color: var(--primary) !important;
        border: none !important;
    }

    .navbar .btn-primary:hover {
        background: #f0f0f0 !important;
        transform: translateY(-2px) !important;
    }

    .hero {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .hero .container {
        padding: 3rem 1.5rem;
    }

    .hero-wrapper {
        width: 100%;
    }

    .hero-media {
        position: relative;
        width: 100%;
        height: auto;
        right: auto;
        top: auto;
        margin-top: 2rem;
        pointer-events: auto;
        left: auto;
        transform: none;
    }

    .hero-image-wrapper {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 500px;
        min-height: 500px;
    }

    .hero-image {
        width: 110%;
        height: 110%;
    }
}

@media (max-width: 576px) {
    .hero-media {
        width: 100% !important;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
        margin-top: 1.5rem !important;
    }

    .hero-image-wrapper {
        position: relative !important;
        width: 100% !important;
        height: 700px !important;
        min-height: 700px !important;
        max-height: 700px !important;
    }

    .hero-image {
        width: auto !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0.6rem 0;
    }

    .top-bar-info {
        flex-direction: row;
        gap: 1.2rem;
        font-size: 0.75rem;
    }

    .top-bar-item {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        white-space: nowrap;
    }

    .top-bar-divider {
        display: none;
    }

    .social-icons {
        gap: 0.6rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(112, 59, 189, 0.25);
    }

    .navbar {
        height: 100px !important;
        padding: 0.35rem 0.75rem !important;
    }

    .navbar-collapse {
        top: 151px !important;
        height: calc(100vh - 100px) !important;
        background: linear-gradient(135deg, #703bbd 0%, #764ba2 100%) !important;
    }

    .logo-img {
        height: 85px !important;
    }

    .navbar .btn-primary {
        margin: 1rem 1.5rem !important;
    }

    .hero .container {
        padding: 2rem 1rem !important;
    }

    .hero-content {
        text-align: center !important;
    }

    .hero-title {
        font-size: 1.5em !important;
        margin-bottom: 0.8rem !important;
    }

    .hero-description {
        font-size: 0.95em !important;
        margin-bottom: 1.2rem !important;
    }

    .hero-buttons {
        gap: 0.8rem !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        padding: 0.75rem 1.2rem !important;
        font-size: 0.85em !important;
    }

    .hero-media {
        width: 100% !important;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
        margin-top: 1.2rem !important;
    }

    .hero-image-wrapper {
        position: relative !important;
        width: 100% !important;
        height: 650px !important;
        min-height: 650px !important;
        max-height: 650px !important;
    }

    .hero-image {
        width: auto !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 95px !important;
        padding: 0.4rem 0.75rem !important;
    }

    .navbar>.container {
        padding: 0 !important;
    }

    .logo-img {
        height: 80px !important;
    }

    .navbar-collapse {
        top: 146px !important;
        height: calc(100vh - 95px) !important;
        background: linear-gradient(135deg, #703bbd 0%, #764ba2 100%) !important;
    }

    .navbar-nav {
        padding: 2rem 0 !important;
    }

    .nav-link {
        font-size: 1.08rem !important;
        padding: 1.1rem 1.6rem !important;
        color: #ffffff !important;
    }

    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        padding-left: 2rem !important;
    }

    .navbar .btn-primary {
        width: calc(100% - 3.2rem) !important;
        margin: 1.4rem 1.6rem !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 0.9rem !important;
        background: #ffffff !important;
        color: var(--primary) !important;
        border: none !important;
    }

    .navbar .btn-primary:hover {
        background: #f0f0f0 !important;
        transform: translateY(-2px) !important;
    }
}

.hero {
    min-height: auto;
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.hero .container {
    padding: 1.5rem 1rem;
}

.hero-wrapper {
    gap: 2rem !important;
}

.hero-content {
    width: 100%;
}

.hero-title {
    font-size: 1.8em;
    margin-bottom: 1rem;
    line-height: 1.3;
    max-width: 450px;
}

.hero-description {
    font-size: 1.35em;
    max-width: 100%;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-description .text-green {
    color: var(--secondary);
    font-weight: 700;
}

.hero-buttons {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.hero-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
}

.hero-media {
    display: block;
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.7em;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 0.95em;
        line-height: 1.6;
    }

    .hero {
        margin-bottom: 1rem;
        padding: 1rem 0;
    }

    .hero .container {
        padding: 0.75rem 0.75rem;
    }

    .hero-wrapper {
        gap: 1.5rem !important;
        flex-direction: column;
    }

    .hero-content {
        text-align: center !important;
    }

    .hero-title {
        font-size: 1.6em;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95em;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center !important;
    }

    .hero-buttons button {
        width: 100%;
        font-size: 0.9em;
        padding: 1rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        display: block;
        margin: 0 auto;
    }

    .hero-media {
        width: 100%;
        max-height: 600px;
        overflow: hidden;
        margin-top: 1.5rem;
    }

    .hero-image-wrapper {
        min-height: 600px !important;
        height: 600px !important;
    }

    .hero-image {
        width: 100%;
        height: 100%;
    }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    padding: 0;
    background: transparent;
    text-align: left;
    min-height: 400px;
    margin-top: 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: visible;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero .container {
    height: 100%;
    padding: 0 2rem;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.hero-wrapper .col-lg-6 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    max-width: 550px;
}

.hero-spacing {
    height: 60px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-typing-text {
    display: inline;
}

.hero-accent {
    font-size: 0.65em;
    color: var(--secondary);
    display: block;
    font-style: normal;
    font-weight: 700;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 0 2.5rem 0;
    line-height: 1.8;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(112, 59, 189, 0.3);
    color: var(--white);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.hero-buttons .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    z-index: 1;
    pointer-events: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    margin-left: -150px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    pointer-events: auto;
    z-index: 1;
}

.hero-image {
    width: 110%;
    height: 110%;
    display: block;
    object-fit: contain;
}





.hero-decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
    display: none;
}

.hero-decoration-left {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    border-radius: 50%;
    top: -100px;
    left: -200px;
    z-index: 0;
}

.hero-decoration-right {
    width: 400px;
    height: 400px;
    background: var(--primary);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: transparent;
    border-radius: 0 100px 100px 0;
    z-index: 1;
}

.modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.modal-body {
    background: #000;
}

.btn-video {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.2);
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===========================
   Client Stats Section
   =========================== */
.client-stats {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* ===========================
   About Section / Hero Section
   =========================== */
.about {
    background: transparent;
    padding: 10rem 0;
}

.hero-section {
    display: grid;
    grid-template-columns: 40% 60%;
    column-gap: 250px;
    align-items: center;
    padding: 80px 80px;
    background-color: transparent;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-content {
    width: 130%;
    height: 130%;
    object-fit: contain;
    display: block;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    font-size: 0.9em;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.title {
    font-size: 3.2em;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.description {
    font-size: 1.1em;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 1.5rem;
}

@media (max-width: 576px) {
    .features {
        gap: 12px;
        margin-top: 1rem;
    }
}

.feature-item {
    background: linear-gradient(135deg, rgba(112, 59, 189, 0.08) 0%, rgba(0, 177, 191, 0.04) 100%);
    padding: 1.4rem 2rem;
    border-radius: 14px;
    border: 1.5px solid rgba(112, 59, 189, 0.15);
    box-shadow: 0 4px 15px rgba(112, 59, 189, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(112, 59, 189, 0.18);
    border-color: rgba(112, 59, 189, 0.35);
}

.feature-item h3 {
    font-size: 1.15em;
    color: var(--primary);
    margin-bottom: 0.6rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
    word-spacing: 0.05em;
    text-align: center;
}

.feature-item p {
    font-size: 0.88em;
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.55;
    word-spacing: 0.05em;
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        column-gap: 80px;
    }

    .hero-image {
        height: 520px;
        margin-bottom: 30px;
    }

    .title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 24px;
        column-gap: 0;
    }

    .hero-image {
        height: 350px;
        margin-bottom: 35px;
    }

    .hero-image-content {
        width: 100%;
        height: 100%;
    }

    .title {
        font-size: 2.2em;
        margin-bottom: 16px;
    }

    .description {
        font-size: 1em;
        margin-bottom: 24px;
    }

    .eyebrow {
        text-align: center;
        font-size: 0.85em;
        margin-bottom: 12px;
    }

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

    .features {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-top: 2rem;
    }

    .feature-item {
        min-height: 200px;
        padding: 2.3rem 2.3rem;
    }

    .feature-item h3 {
        font-size: 1.2em;
        margin-bottom: 1rem;
    }

    .feature-item p {
        font-size: 0.92em;
        line-height: 1.65;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 28px 16px;
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 280px;
        margin-bottom: 30px;
        order: 1;
    }

    .hero-content {
        order: 2;
    }

    .title {
        font-size: 1.95em;
        margin-bottom: 1.2rem;
        line-height: 1.25;
    }

    .description {
        font-size: 0.98em;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .eyebrow {
        font-size: 0.8em;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .features {
        gap: 16px;
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }

    .feature-item {
        padding: 2.2rem 2rem;
        min-height: auto;
        border: 1.5px solid rgba(112, 59, 189, 0.2);
        border-radius: 12px;
        border-left: 5px solid var(--secondary);
        background: var(--white);
        box-shadow: 0 2px 8px rgba(112, 59, 189, 0.08);
    }

    .feature-item h3 {
        font-size: 1.15em;
        margin-bottom: 1rem;
        letter-spacing: 0;
    }

    .feature-item p {
        font-size: 0.9em;
        line-height: 1.65;
    }
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


.about-img {
    width: 220%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.about-content {
    width: 100%;
}

.about-content .section-subtitle {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.about-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.feature-item {
    padding-left: 0;
}

.feature-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-grid {
    display: none;
}

.about-card {
    display: none;
}

/* ===========================
   Processing Section
   =========================== */
.processing {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

@media (max-width: 576px) {
    .processing {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .processing {
        padding: 1.5rem 0;
    }
}

.process-flow-diagram {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
    margin-top: 4rem;
    position: relative;
    flex-wrap: nowrap;
    width: 100%;
    padding-top: 60px;
    overflow-x: auto;
}

@media (max-width: 1024px) {
    .process-flow-diagram {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .process-flow-diagram {
        flex-direction: column;
        gap: 1rem;
        overflow-x: visible;
    }
}

.process-curve {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
}

.process-curve-mobile {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    width: 60px;
    height: auto;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 576px) {
    .process-curve {
        display: none;
    }

    .process-curve-mobile {
        display: block !important;
        position: absolute;
        left: 50%;
        top: 0;
        width: 60px !important;
        height: auto;
        transform: translateX(-50%);
        z-index: 1;
        pointer-events: none;
    }
}

.process-step {
    text-align: center;
    position: relative;
    width: 18%;
    min-width: 140px;
    padding: 2rem 1rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    animation: slideInStep 0.6s ease-out forwards;
    opacity: 0;
    margin-top: -50px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .process-step {
        width: calc(50% - 1rem);
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .process-step {
        width: 100%;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .process-step {
        width: 100%;
        margin-top: 0;
    }

    .step-circle-large {
        width: 100px;
        height: 100px;
    }

    .step-circle-large i {
        font-size: 2.5rem;
    }

    .process-step h4 {
        font-size: 1.2em;
        margin: 1rem 0 0.5rem;
    }

    .process-step p {
        font-size: 0.9em;
        line-height: 1.65;
    }
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

.process-step:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInStep {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(112, 59, 189, 0.3);
}

.step-circle-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    border: 3px solid rgba(112, 59, 189, 0.2);
    box-shadow: 0 10px 30px rgba(112, 59, 189, 0.1);
    transition: all 0.3s ease;
    animation: floatStep 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes floatStep {

    0%,
    100% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(112, 59, 189, 0.1);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(112, 59, 189, 0.2);
    }
}

.process-step:hover .step-circle-large {
    transform: scale(1.08);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0, 177, 191, 0.2);
}

.step-circle-large i {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.8;
}

.process-step h4 {
    color: var(--primary);
    margin: 1rem 0 0.8rem;
    font-size: 1rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   Responsive Processing
   =========================== */
@media (max-width: 1024px) {
    .process-flow-diagram {
        gap: 0;
    }

    .process-step {
        flex: 0 1 140px;
        padding: 0 1.2rem;
    }

    .step-circle-large {
        width: 110px;
        height: 110px;
    }

    .step-circle-large i {
        font-size: 3rem;
    }

    .connector {
        flex: 0 0 40px;
    }
}

@media (max-width: 768px) {
    .process-flow-diagram {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .process-step {
        flex: 0 1 100%;
        padding: 0 2rem;
    }

    .connector {
        display: none;
    }

    .step-circle-large {
        width: 100px;
        height: 100px;
    }

    .step-circle-large i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .processing {
        padding: 3rem 0;
    }

    .process-step {
        padding: 0 1rem;
    }

    .step-circle-large {
        width: 90px;
        height: 90px;
    }

    .step-circle-large i {
        font-size: 2rem;
    }

    .step-badge {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .process-step h4 {
        font-size: 0.95rem;
    }

    .process-step p {
        font-size: 0.8rem;
    }
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: linear-gradient(135deg, #703bbd 0%, #764ba2 100%);
    padding: 5rem 0;
}

@media (max-width: 576px) {
    .services {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 1.5rem 0;
    }
}

.services .section-header {
    color: var(--white);
}

.services .section-header h2,
.services .section-header p {
    color: var(--white);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

@media (max-width: 576px) {
    .service-card {
        background: linear-gradient(to bottom, var(--white) 0%, var(--white) 50%, var(--secondary) 50%, var(--secondary) 100%);
        background-size: 100% 200%;
        background-position: 0% 0%;
        padding: 2rem;
        border-radius: 20px;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(112, 59, 189, 0.12);
    }

    .service-card h3 {
        font-size: 1.15em;
        margin: 1rem 0;
    }

    .service-card p {
        font-size: 0.92em;
        line-height: 1.65;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.service-card {
    background: linear-gradient(to bottom, var(--white) 0%, var(--white) 50%, var(--secondary) 50%, var(--secondary) 100%);
    background-size: 100% 200%;
    background-position: 0% 0%;
    padding: 2.5rem;
    border-radius: 30px;
    border: none;
    transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(112, 59, 189, 0.15);
    position: relative;
    text-align: center;
    overflow: visible;
    padding-top: 2.5rem;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    background-position: 0% 100%;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(112, 59, 189, 0.25);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .learn-more {
    color: var(--white);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
    color: var(--white);
}

.service-card:hover .expanded-content h4,
.service-card:hover .expanded-content strong,
.service-card:hover .expanded-content span,
.service-card:hover .more-items {
    color: var(--white) !important;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(112, 59, 189, 0.2);
    transition: var(--transition);
    margin: 0 auto 1.5rem;
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(112, 59, 189, 0.3);
}

.service-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    background: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.learn-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--primary);
}

/* ===========================
   Why Choose Us Section
   =========================== */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

@media (max-width: 576px) {
    .why-us {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .why-us {
        padding: 1.5rem 0;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 576px) {
    .why-grid {
        margin-top: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }
}

.why-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .why-card {
        padding: 2rem;
        border-radius: 14px;
        box-shadow: 0 4px 12px rgba(112, 59, 189, 0.1);
    }

    .why-card h4 {
        font-size: 1.1em;
        margin: 1rem 0;
    }

    .why-card p {
        font-size: 0.92em;
        line-height: 1.65;
    }
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(112, 59, 189, 0.15);
}

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

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card h4 {
    color: var(--primary);
    margin: 1rem 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ===========================
   Portfolio Section
   =========================== */
.portfolio {
    background: var(--light);
}

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

.portfolio-item {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-item h4 {
    padding: 1.5rem;
    color: var(--primary);
    margin: 0;
    text-align: center;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    background: var(--white);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-box h3 {
        font-size: 1.8rem;
    }

    .stat-box p {
        font-size: 0.85rem;
    }
}

.stat-box {
    background: var(--light);
    padding: 2rem;
    text-align: center;
    border-radius: 4px;
}

.stat-box h3 {
    color: var(--secondary);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===========================
   Achievements Section
   =========================== */
.achievements {
    background: linear-gradient(135deg, #f9f9f9 0%, var(--light) 100%);
}

/* ===========================
   Blog Section
   =========================== */
.blog {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card h3 {
    padding: 1.5rem 1.5rem 0;
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.blog-meta {
    padding: 0 1.5rem;
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 1rem 0;
}

.blog-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.read-more {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary);
}

/* ===========================
   Footer Section
   =========================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.contact-info,
.contact-links,
.contact-services {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
}

.contact-info h3,
.contact-links h3,
.contact-services h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-details strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-links ul,
.contact-services ul {
    list-style: none;
}

.contact-links li,
.contact-services li {
    margin-bottom: 0.8rem;
}

.contact-links a,
.contact-services a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-links a:hover,
.contact-services a:hover {
    color: var(--secondary);
    padding-left: 0.5rem;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    background: linear-gradient(135deg, rgba(240, 245, 250, 0.5) 0%, rgba(0, 177, 191, 0.05) 100%);
    padding: 3rem 0;
}

@media (max-width: 576px) {
    .faq-section {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1rem 0;
    }
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 576px) {
    .faq-content {
        gap: 1.5rem;
    }
}

.faq-container {
    max-width: 100%;
}

.accordion-item {
    border: 1px solid rgba(112, 59, 189, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(112, 59, 189, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(112, 59, 189, 0.15);
    border-color: var(--secondary);
}

.accordion-button {
    background: var(--white);
    color: var(--text);
    font-weight: 500;
    padding: 1.2rem;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(112, 59, 189, 0.1) 0%, rgba(0, 177, 191, 0.1) 100%);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: var(--secondary);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 8px;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.faq-question {
    font-size: 1rem;
    font-weight: 500;
}

.accordion-body {
    background: var(--white);
    color: var(--text-light);
    line-height: 1.8;
    padding: 1.5rem;
    border-top: 1px solid rgba(112, 59, 189, 0.1);
}

.faq-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-img {
    width: 100%;
    height: auto;
    max-width: 1200px;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-img {
        max-width: 100%;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .accordion-item {
        margin-bottom: 0.75rem;
    }

    .accordion-button {
        padding: 0.85rem;
        font-size: 0.9rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        margin-right: 0.8rem;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .faq-question {
        font-size: 0.95em;
        font-weight: 500;
        line-height: 1.5;
    }

    .faq-answer {
        font-size: 0.9em;
        line-height: 1.65;
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: #000000;
    color: var(--secondary);
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
    .footer {
        padding: 1.5rem 0 0.75rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 576px) {
    .footer-grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-info h3,
    .footer-links-col h3,
    .footer-services h3,
    .footer-social h3 {
        font-size: 1.1em;
        margin-bottom: 1.2rem;
        font-weight: 600;
    }

    .footer-info p {
        font-size: 0.9em;
        line-height: 1.65;
        margin-bottom: 0.75rem;
    }
}

.footer-info h3,
.footer-links-col h3,
.footer-services h3,
.footer-social h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-info p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-info p strong {
    display: block;
    margin-bottom: 0.3rem;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info a:hover {
    color: var(--secondary);
}

.footer-links-col ul,
.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-col a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-col a:hover,
.footer-services a:hover {
    color: var(--secondary);
    padding-left: 0.5rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social .social-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-social .social-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social .social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {

    .services-grid,
    .why-grid,
    .portfolio-grid,
    .blog-grid,
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding-top: 0;
        min-height: auto;
    }

    .hero .container {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

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

    .hero-buttons .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .hero-media {
        position: relative;
        width: 100%;
        margin-right: 0;
    }

    .hero-image-wrapper {
        margin-right: 0;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero::before {
        width: 0;
    }

    .hero-decoration-left {
        width: 300px;
        height: 300px;
        left: -100px;
        top: -50px;
    }

    .hero-decoration-right {
        width: 250px;
        height: 250px;
        right: -100px;
        bottom: -100px;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.8rem;
    }

    .services-grid,
    .why-grid,
    .portfolio-grid,
    .blog-grid,
    .stats-section {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .footer-info p {
        font-size: 0.85rem;
    }

    .footer-logo {
        max-width: 120px;
        margin: 0 auto 1.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.88em;
        line-height: 1.6;
    }

    .footer-links-col a,
    .footer-services a {
        font-size: 0.92em;
        line-height: 1.65;
    }

    .footer-legal {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
    }

    .footer-legal a {
        font-size: 0.85em;
        line-height: 1.6;
    }

    .footer-social .social-icons {
        justify-content: center;
    }

    .footer-social .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.55rem;
    }

    .container {
        padding: 0 1rem;
    }

    .services-grid,
    .why-grid,
    .portfolio-grid,
    .blog-grid,
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card,
    .why-card,
    .blog-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .button,
    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons .btn {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .video-button {
        width: 55px;
        height: 55px;
    }

    .video-button i {
        font-size: 1.5rem;
    }

    .hero-image-wrapper {
        margin-right: 0;
    }

    .hero-decoration-left {
        width: 200px;
        height: 200px;
        left: -100px;
    }

    .hero-decoration-right {
        width: 150px;
        height: 150px;
        right: -75px;
        bottom: -75px;
    }

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

    .footer-info h3,
    .footer-links-col h3,
    .footer-services h3,
    .footer-social h3 {
        font-size: 1rem;
    }

    .footer-social .social-icons {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===========================
   Accessibility & Utilities
   =========================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(112, 59, 189, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 177, 191, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* ===========================
   WhatsApp Button
   =========================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 90px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-button.show {
    display: flex;
}

.whatsapp-button:hover {
    background-color: #20ba5c;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }

    .whatsapp-button {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 78px;
        font-size: 1.3rem;
    }
}

/* ===========================
   Service Card Expansion
   =========================== */
.service-expanded {
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    pointer-events: none;
}

/* Custom scrollbar styling */
.service-expanded::-webkit-scrollbar {
    width: 8px;
}

.service-expanded::-webkit-scrollbar-track {
    background: rgba(112, 59, 189, 0.05);
}

.service-expanded::-webkit-scrollbar-thumb {
    background: rgba(0, 177, 191, 0.6);
    border-radius: 4px;
}

.service-expanded::-webkit-scrollbar-thumb:hover {
    background: white;
}

.service-card.expanded .service-expanded {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.expanded-content h4 {
    font-size: 0.95em;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: left;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-details li {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(112, 59, 189, 0.05);
    border-left: 3px solid var(--secondary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-card:hover .service-details li {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.6);
}

.service-details li:hover {
    background: rgba(112, 59, 189, 0.15);
    transform: translateX(5px);
}

.service-card:hover .service-details li:hover {
    background: rgba(255, 255, 255, 0.2);
}

.service-details li:hover strong {
    color: var(--secondary);
}

.service-card:hover .service-details li:hover strong {
    color: var(--white);
}

.service-details li:hover span {
    color: var(--primary);
}

.service-card:hover .service-details li:hover span {
    color: var(--white);
}

.service-card:hover .service-expanded::-webkit-scrollbar-thumb {
    background: white;
}

.service-details li strong {
    color: var(--primary);
    display: block;
    font-size: 0.9em;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.service-details li span {
    font-size: 0.85em;
    color: var(--text-light);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.service-details li.more-items {
    background: linear-gradient(135deg, rgba(0, 177, 191, 0.1), rgba(112, 59, 189, 0.05));
    border-left-color: var(--secondary);
    text-align: center;
    font-style: italic;
    color: var(--secondary);
    font-weight: 600;
    padding: 1rem;
}

@media print {

    .navbar,
    .back-to-top,
    .whatsapp-button,
    .fixed-buttons {
        display: none;
    }
}