/* Premium Modern Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    /* Color Palette */
    --bg-main: #F8FAFC;
    /* Slate 50 */
    --bg-white: #FFFFFF;
    --text-primary: #0F172A;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-light: #94A3B8;
    /* Slate 400 */

    /* Premium Accents */
    --accent-color: #0369A1;
    /* Sky 700 */
    --accent-light: #0EA5E9;
    /* Sky 500 */
    --accent-gradient: linear-gradient(135deg, #0369A1 0%, #0EA5E9 100%);

    /* Layout & UI */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.2);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Abstract Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(14, 165, 233, 0.15);
    top: -200px;
    right: -100px;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(3, 105, 161, 0.1);
    bottom: 20%;
    left: -200px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4rem;
}

.section-header .subtitle {
    padding-left: 0;
}

.section-header .subtitle::before {
    display: none;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.section-padding {
    padding: 6rem 0;
    position: relative;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 1;
    transition: var(--transition);
    z-index: -1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

header.scrolled {
    padding: 1rem 0;
}

header.scrolled::before {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.03em;
}

.logo i {
    color: var(--accent-color);
}

.logo span {
    font-weight: 400;
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.phone-btn {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50px;
    padding: 0.4rem 1.2rem 0.4rem 0.4rem;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.phone-icon-wrap {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    box-shadow: var(--shadow-glow);
}

.phone-number {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.phone-btn:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    max-width: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.7) 40%, rgba(248, 250, 252, 0) 100%),
        url('assets/hero_bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

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

.hero-phone-mobile {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-main);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
    opacity: 0.5;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--text-secondary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid rgba(15, 23, 42, 0.03);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(14, 165, 233, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* References Section */
.dark-section {
    background: #0F172A;
    color: white;
}

.dark-section .subtitle {
    color: var(--accent-light);
}

.dark-section h2 {
    color: white;
}

.dark-section .section-desc {
    color: var(--text-light);
}

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

.reference-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.reference-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.ref-icon {
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.ref-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.ref-content p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Logos Marquee */
.logos-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-marquee-wrapper::before,
.logos-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0F172A 0%, rgba(15, 23, 42, 0) 100%);
}

.logos-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0F172A 0%, rgba(15, 23, 42, 0) 100%);
}

.logos-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.logos-marquee-track:hover {
    animation-play-state: paused;
}

.logo-item {
    padding: 0 25px;
    margin: 0 15px;
    height: 70px;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.logo-item img {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pricing Section */
.pricing-wrapper {
    max-width: 1040px;
    margin: 0 auto;
}

.pricing-list {
    background: var(--bg-white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-md);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.pricing-item:hover {
    background: var(--bg-main);
    transform: scale(1.01);
}

.pricing-name {
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-name i {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.pricing-item:hover .pricing-name i {
    color: var(--accent-color);
}

.pricing-price-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

.pricing-arrow {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.pricing-item:hover .pricing-arrow {
    transform: translateX(5px);
    color: var(--text-primary);
}

.pricing-note-box {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    background: rgba(14, 165, 233, 0.03);
    border: 1px solid rgba(14, 165, 233, 0.06);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

.pricing-note-box i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 0.2rem;
    opacity: 0.7;
}

/* Contact Section */
.contact-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-gradient);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-item {
    padding: 4rem 3rem;
    text-align: center;
    border-right: 1px solid rgba(15, 23, 42, 0.05);
    transition: var(--transition);
}

.contact-item:last-child {
    border-right: none;
}

.contact-item:hover {
    background: rgba(14, 165, 233, 0.04);
}

.contact-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-main);
    color: var(--accent-color);
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-details h4 {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-details p,
.contact-details a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    background: #0F172A;
    color: var(--text-light);
    padding: 5rem 0 2rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 4rem;
}

.footer-logo {
    color: white;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-regions {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Services */
.services-content {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.services-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.services-intro a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-intro a:hover {
    text-decoration: none;
}

.cta-wrapper {
    margin-top: 2rem;
}

/* Responsive */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .pricing-item {
        padding: 1.25rem 1.25rem;
        gap: 1.25rem;
    }

    .pricing-name {
        font-size: 1.05rem;
    }

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

    .contact-item {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.05);
        padding: 3rem 2rem;
    }

    .contact-item:last-child {
        border-bottom: none;
    }

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

    .hero-overlay {
        background:
            linear-gradient(to right, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.8) 100%),
            url('assets/hero_bg.jpg') center/cover no-repeat;
    }
}

@media (max-width: 768px) {
    .bg-shape {
        display: none;
    }

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-phone-mobile {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        margin-top: 1.5rem;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--accent-color);
    }

    .hero-phone-mobile i {
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .mobile-only .fa-phone {
        margin-left: 0.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1500;
    }

    .nav-links.active {
        transform: translateX(0);
    }

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

    .menu-toggle {
        z-index: 2000;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .pricing-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .pricing-price-wrap {
        justify-content: center;
    }

    .pricing-arrow {
        display: none;
    }

    .pricing-note-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .address-line {
        display: block;
    }

    .logos-marquee-track {
        pointer-events: none;
    }
}