/* -------------------------------------------------------------------------- */
/*                                 1. VARIABLES                               */
/* -------------------------------------------------------------------------- */
:root {
    /* Colors - Frosted Theme */
    --primary: #00a8cc;
    /* Icy Blue */
    --primary-dark: #007ea7;
    --secondary: #2c3e50;
    /* Slate Blue */
    --accent: #a2d2ff;

    --bg-light: #f0f4f8;
    --bg-gradient-start: #fdfbfb;
    --bg-gradient-end: #ebedee;

    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    --text-main: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;

    /* Typography */
    --font-main: 'Poppins', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Dark Mode Support (Future proofing) */
@media (prefers-color-scheme: dark) {
    /* Kept light as per "Frosted Glass Light" request, 
       but setup for robustness */
}

/* -------------------------------------------------------------------------- */
/*                                 2. RESET                                   */
/* -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* -------------------------------------------------------------------------- */
/*                          3. GLASSMORPHISM UTILITIES                        */
/* -------------------------------------------------------------------------- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-panel-top {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
}

.glass-panel-flat {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-panel-large {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--white);
}

.glass-btn {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    transition: 0.3s all;
    cursor: pointer;
}

.glass-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 15px rgba(0, 168, 204, 0.4);
}

.glass-btn-glow {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(0, 168, 204, 0.3);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
}

.glass-btn-glow:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.glass-btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--secondary);
    transition: 0.3s;
}

.glass-btn-icon:hover {
    background: var(--white);
    color: var(--primary);
    transform: rotate(90deg);
}

/* -------------------------------------------------------------------------- */
/*                             4. BACKGROUND BLOBS                            */
/* -------------------------------------------------------------------------- */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: floatBlob 20s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #bde0fe;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #cdb4db;
    bottom: 10%;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: #a2d2ff;
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

.blob-4 {
    width: 200px;
    height: 200px;
    background: #ffc8dd;
    bottom: -20px;
    left: 20%;
    animation-delay: -15s;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.glass-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    /* Heavy base blur */
    z-index: 0;
}

/* -------------------------------------------------------------------------- */
/*                                 5. LAYOUT                                  */
/* -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-green {
    color: #2ecc71;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.align-center {
    align-items: center;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

/* -------------------------------------------------------------------------- */
/*                                 6. HEADER                                  */
/* -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-img ,.footer-logo img{
    height: 40px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1002;
}

.hamburger .bar {
    width: 20px;
    height: 2px;
    background-color: var(--secondary);
    transition: 0.3s;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hide desktop CTA in header on mobile if needed, or keep */
    .header-actions .btn {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/*                                 7. HERO                                    */
/* -------------------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {

    display: flex;

}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(0, 168, 204, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 168, 204, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary);
}

.highlight-text {
    color: var(--primary);
    background: -webkit-linear-gradient(45deg, var(--primary), #a2d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 15px 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-item p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-light);
}

.line-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Visual (Right Side) */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-stack {
    position: relative;
    width: 400px;
    height: 400px;
}

.card-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    z-index: 3;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 200px;
    z-index: 2;
    animation: float2 7s ease-in-out infinite;
}

.card-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    z-index: 1;
    opacity: 0.8;
}

.glowing-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Mock Graphics inside Cards */
.icon-bg {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(0, 168, 204, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mock-graph {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 40px;
    margin-top: 10px;
}

.bar {
    background: var(--primary);
    width: 8px;
    border-radius: 4px;
}

.bar-1 {
    height: 40%;
    opacity: 0.5;
}

.bar-2 {
    height: 70%;
    opacity: 0.7;
}

.bar-3 {
    height: 100%;
}

.avatars span {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #ccc;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

.avatars span:nth-child(1) {
    background: #bde0fe;
}

.avatars span:nth-child(2) {
    background: #ffc8dd;
}

.avatars span:nth-child(3) {
    background: #cdb4db;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

/* -------------------------------------------------------------------------- */
/*                                8. TICKER                                   */
/* -------------------------------------------------------------------------- */
.logo-ticker {
    padding: 20px 0;
    overflow: hidden;
}

.logo-ticker p {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.brand-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(44, 62, 80, 0.4);
    transition: 0.3s;
}

.brand-item:hover {
    color: var(--primary);
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

    /* Assuming content is duplicated once */
}

/* -------------------------------------------------------------------------- */
/*                                9. ABOUT                                    */
/* -------------------------------------------------------------------------- */
.image-composition {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.glass-frame {
    padding: 15px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transform: rotate(-3deg);
}

.glass-frame img {
    border-radius: 15px;
}

.floating-stat {
    position: absolute;
    bottom: 30px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 12px;
    animation: float2 5s infinite;
}

.floating-stat i {
    font-size: 2rem;
    color: #2ecc71;
}

.sub-heading {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-list {
    margin: 25px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    gap: 10px;
}

/* -------------------------------------------------------------------------- */
/*                               10. SERVICES                                 */
/* -------------------------------------------------------------------------- */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-points {
    width: 100%;
    margin-bottom: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.service-points li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.service-points li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.card-link {
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.card-link:hover {
    color: var(--primary);
    gap: 8px;
}

/* -------------------------------------------------------------------------- */
/*                              11. CALCULATOR                                */
/* -------------------------------------------------------------------------- */
.calculator-wrapper {
    overflow: hidden;
}

.calc-intro {
    padding-right: 30px;
}

.calc-benefits {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.benefit-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 500;
}

.roi-form {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input[type="number"] {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-main);
    outline: none;
    transition: 0.3s;
}

.form-group input[type="number"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

.slider {
    width: 100%;
    margin-top: 10px;
    -webkit-appearance: none;
    height: 4px;
    background: #d3d3d3;
    border-radius: 5px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.glass-inner-panel {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.result-row.highlight {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: var(--secondary);
}

/* -------------------------------------------------------------------------- */
/*                               12. PROCESS                                  */
/* -------------------------------------------------------------------------- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(0, 168, 204, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-light);
    border: 3px solid var(--primary);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 168, 204, 0.1);
    position: absolute;
    top: -10px;
    right: 20px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 21px;
    }
}

/* -------------------------------------------------------------------------- */
/*                               13. INDUSTRIES                               */
/* -------------------------------------------------------------------------- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    gap: 15px;
}

.industry-item i {
    font-size: 2rem;
}

/* -------------------------------------------------------------------------- */
/*                              14. CHART PREVIEW                             */
/* -------------------------------------------------------------------------- */
.check-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list i {
    color: #2ecc71;
    margin-right: 10px;
}

.css-chart-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 150px;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.c-bar {
    width: 30px;
    background: #e0e0e0;
    border-radius: 5px 5px 0 0;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}

.c-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary);
    transition: 1s ease-out;
    animation: fillBar 2s forwards;
}

@keyframes fillBar {
    to {
        height: 100%;
    }
}

.h-40 {
    height: 60px;
}

.h-80 {
    height: 120px;
}

.h-60 {
    height: 90px;
}

.h-30 {
    height: 45px;
}

.c-bar.active::after {
    background: var(--primary-dark);
}

.chart-bar-group span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* -------------------------------------------------------------------------- */
/*                             15. TESTIMONIALS                               */
/* -------------------------------------------------------------------------- */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(0, 168, 204, 0.2);
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* -------------------------------------------------------------------------- */
/*                                 16. FAQ                                    */
/* -------------------------------------------------------------------------- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.2);
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    transition: 0.3s;
}

/* -------------------------------------------------------------------------- */
/*                                17. FOOTER                                  */
/* -------------------------------------------------------------------------- */
.footer {
    padding: 80px 0 30px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.glass-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.glass-icon:hover {
    background: var(--primary);
    color: white;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-legal a:hover {
    color: var(--primary);
}

.divider {
    margin: 0 10px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                             18. LEGAL PAGES                                */
/* -------------------------------------------------------------------------- */
.legal-main {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.legal-body {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.legal-body h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.legal-body p {
    margin-bottom: 15px;
    color: var(--text-main);
}

.legal-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* -------------------------------------------------------------------------- */
/*                             19. CONTACT PAGE                               */
/* -------------------------------------------------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 204, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form-container {
    padding: 40px;
}

.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-main);
    resize: vertical;
    outline: none;
    transition: 0.3s;
}

.contact-form textarea:focus {
    border-color: var(--primary);
}

/* -------------------------------------------------------------------------- */
/*                           20. UTILS & ANIMATION                            */
/* -------------------------------------------------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f4f8;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 168, 204, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Reveal Classes */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-zoom {
    transform: scale(0.9);
}

.active-reveal {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 168, 204, 0.4);
}

.chat-toggle:hover {
    background: var(--primary-dark);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
}

.chat-window.open {
    transform: scale(1);
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
}

.msg {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.bot {
    background: #e1f5fe;
    color: var(--secondary);
    border-bottom-left-radius: 0;
}

.chat-input {
    padding: 10px;
    background: white;
    display: flex;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 5px;
}

.chat-input button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* Back To Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    opacity: 0;
    pointer-events: none;
    z-index: 899;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: all;
}