@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #fcfaff;
    --secondary: #be5188;
    --accent: #582490;
    --text-main: #1f0b35;
    --text-muted: #6e5488;
    --glass: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(190, 81, 136, 0.15);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --glow: 0 10px 30px rgba(190, 81, 136, 0.12);
    --gold: #d4af37;
    --silver: #4a5568;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    background: 
        radial-gradient(circle at 10% 20%, rgba(253, 244, 255, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(245, 230, 254, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(251, 207, 232, 0.5) 0%, transparent 40%),
        radial-gradient(circle at 20% 90%, rgba(238, 219, 255, 0.6) 0%, transparent 45%),
        var(--primary);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Base Aesthetics */
h1,
h2,
h3,
.nav-logo {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Navigation */
header {
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(252, 250, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

header.scrolled {
    padding: 1rem 10%;
    background: rgba(252, 250, 255, 0.95);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo img {
    height: 60px;
    width: auto;
    border-radius: 12px;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

nav a:hover {
    color: var(--secondary);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 10% 4rem;
    position: relative;
    background:
        radial-gradient(circle at 80% 20%, rgba(190, 81, 136, 0.12), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(88, 36, 144, 0.12), transparent 45%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Authority Bar */
.authority-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--glass);
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    width: fit-content;
    flex-wrap: wrap;
}

.auth-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.auth-item i {
    font-size: 1.3rem;
    color: var(--secondary);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

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

@media (max-width: 992px) {
    .hero {
        padding: 8rem 5% 4rem;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .authority-bar {
        justify-content: center;
        width: 100%;
        max-width: 450px;
    }

    .hero-btns {
        justify-content: center;
        width: 100%;
    }
}

/* Glass Cards & Grids */
section {
    padding: 5rem 10%;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

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

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(190, 81, 136, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: var(--glow);
}

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

/* Expertise Cards (for equal sizing and layout alignment) */
.expertise-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.2rem 2.2rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(190, 81, 136, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: var(--glow);
}

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

.expertise-card h3 {
    font-size: 1.3rem;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.expertise-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes the lists to align perfectly at the bottom */
}

.doc-types-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 700;
    margin-top: auto; /* Aligns with flex-grow */
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    margin-bottom: 0.6rem;
}

.doc-types-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 0.8rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-types-list li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    line-height: 1.3;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doc-types-list li i {
    color: var(--secondary);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* About Image Card */
.about-image-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    aspect-ratio: 4 / 5;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: var(--transition);
}

.about-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(252, 250, 255, 0.85));
    pointer-events: none;
    z-index: 1;
}

.about-image-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: var(--glow);
}

.about-image-card:hover img {
    transform: scale(1.05);
}

/* Buttons */
.btn-primary {
    padding: 1.2rem 3rem;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(190, 81, 136, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #e060a0;
    box-shadow: 0 15px 40px rgba(190, 81, 136, 0.5);
}

.btn-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-secondary:hover {
    transform: scale(1.05);
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 15px 40px rgba(190, 81, 136, 0.4);
}

/* Social Links Upgrade */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--text-main);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.social-btn:hover {
    transform: rotate(10deg) scale(1.1);
    border-color: var(--secondary);
    color: #fff;
}

.whatsapp:hover {
    background: #25D366;
}

.linkedin:hover {
    background: #0077b5;
}

.proz:hover {
    background: #00a4e4;
}

.skype:hover {
    background: #00aff0;
}

.email:hover {
    background: var(--secondary);
}

/* Form Styles */
input,
textarea,
select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--secondary);
    background: #ffffff;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Footer */
footer {
    padding: 6rem 10% 4rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(190, 81, 136, 0.03);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 992px) {
    header {
        padding: 1.5rem 5%;
    }

    header.scrolled {
        padding: 0.8rem 5%;
    }

    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(252, 250, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 1s ease-out forwards;
}

/* Delivery Table */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.delivery-card {
    background: var(--glass);
    border: 1px dashed var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.delivery-card:hover {
    border-style: solid;
    border-color: var(--secondary);
    background: rgba(190, 81, 136, 0.05);
}

.delivery-time {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin: 1rem 0;
}

/* Guarantee Badge */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(190, 81, 136, 0.1));
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--gold);
    margin-top: 2rem;
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 15px var(--gold);
}

.guarantee-text h4 {
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}