/* =========================================================================
   VELOZA TAX ADVISORS – FZCO | Global Stylesheet (Light Theme)
   ========================================================================= */

:root {
    /* Brand Colors */
    --primary-teal: #0F5F6B;
    --emerald-green: #118C4F;
    --light-bg: #FFFFFF;
    --section-bg: #F8FAFC;
    --dark-text: #111827;
    --muted-text: #4B5563;
    /* Darker than A1A1AA for light bg legibility */
    --text-light: #FFFFFF;

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #0F5F6B, #118C4F);
    --glow-gradient: radial-gradient(circle, rgba(17, 140, 79, 0.1) 0%, rgba(255, 255, 255, 0) 70%);

    /* Glassmorphism / Cards for Light Theme */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-bg-hover: rgba(255, 255, 255, 1);
    --glass-border: rgba(15, 95, 107, 0.1);
    --glass-shadow: 0 10px 40px -10px rgba(15, 95, 107, 0.15);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --section-padding: 120px;

    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =========================================================================
   CSS Reset & Base
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--emerald-green);
}

p {
    color: var(--muted-text);
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-primary {
    color: var(--emerald-green);
}

.text-muted {
    color: var(--muted-text);
}

.pt-120 {
    padding-top: var(--section-padding);
}

.pb-120 {
    padding-bottom: var(--section-padding);
}

.align-items-center {
    align-items: center;
}

/* =========================================================================
   Glassmorphism & Anti-Gravity Effects (Light)
   ========================================================================= */
.glass-effect,
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

.floating-element {
    animation: floating 6s ease-in-out infinite;
}

.floating-card {
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 95, 107, 0.2);
}

.hover-glow {
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.hover-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(17, 140, 79, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
    pointer-events: none;
}

.hover-glow:hover {
    transform: translateY(-8px);
    border-color: rgba(17, 140, 79, 0.3);
}

.hover-glow:hover::before {
    opacity: 1;
}

.hover-glow>* {
    position: relative;
    z-index: 1;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    outline: none;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(17, 140, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 140, 79, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-teal);
    color: var(--primary-teal);
}

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

.btn-link {
    color: var(--emerald-green);
    background: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-link i {
    transition: transform var(--transition-base);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* =========================================================================
   Header & Navigation
   ========================================================================= */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-base);
    padding: 1.2rem 0;
}

.glass-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 80px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--light-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--dark-text);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    color: var(--primary-teal);
    background: rgba(15, 95, 107, 0.05);
    padding-left: 1.8rem;
}

.nav-chevron {
    font-size: 0.8rem;
    margin-left: 0.3rem;
    transition: transform var(--transition-base);
}

.dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--dark-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================================================
   Hero Slider Section
   ========================================================================= */
.hero-slider-section {
    position: relative;
    padding-top: 80px;
    /* offset header */
}

.hero-swiper {
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--section-bg);
}

/* Make image cover one side, text the other */
.slide-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content {
    flex: 1;
    padding: 4rem;
    z-index: 10;
}

.slide-image-wrapper {
    flex: 1;
    height: 100%;
    position: relative;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    filter: drop-shadow(0 20px 30px rgba(15, 95, 107, 0.15));
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-subtitle {
    font-size: 1.25rem;
    color: var(--muted-text);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

/* Active Slide Animations */
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.swiper-pagination-bullet {
    background: var(--primary-teal) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--emerald-green) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-teal) !important;
    background: rgba(255, 255, 255, 0.8);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
}

/* =========================================================================
   Sections: About, Services, Industries, Value Prop
   ========================================================================= */
.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title span {
    color: var(--emerald-green);
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: -2rem auto 3rem auto;
}

.about-text-content {
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(15, 95, 107, 0.1);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-list {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--muted-text);
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--emerald-green);
    font-size: 0.8rem;
}

.industries-flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.industry-card {
    background: var(--light-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.industry-card h4 {
    font-size: 1.1rem;
    margin: 0;
}

.value-prop-content,
.value-prop-visual {
    flex: 1;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.value-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

@media (min-width: 992px) {
    .row {
        display: flex;
        gap: 4rem;
    }
}

.cta-box {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(15, 95, 107, 0.05), rgba(17, 140, 79, 0.05));
    border: 1px solid rgba(17, 140, 79, 0.1);
    box-shadow: 0 10px 30px rgba(15, 95, 107, 0.05);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--muted-text);
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
    background-color: var(--section-bg);
    border-top: 1px solid var(--glass-border);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 95, 107, 0.1);
    color: var(--primary-teal);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--dark-text);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--muted-text);
}

.footer-col ul li a:hover {
    color: var(--emerald-green);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    color: var(--muted-text);
    align-items: flex-start;
}

.contact-list i {
    color: var(--primary-teal);
    margin-top: 0.3rem;
}

.footer-bottom {
    background: rgba(15, 95, 107, 0.05);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted-text);
}

/* =========================================================================
   WhatsApp Floating Button
   ========================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    animation: floating 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe56;
    color: #FFF;
}

/* =========================================================================
   Responsive Adjustments
   ========================================================================= */
@media (max-width: 991px) {
    .slide-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .slide-content {
        padding: 2rem;
    }

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

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

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--light-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .menu-toggle {
        display: block;
    }

    .nav-actions .btn {
        display: none;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 80px 0;
    }

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