/* === NAVBAR === */
.header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #6a11cb;
}

.logo img {
    height: 32px;
    margin-right: 8px;
}

.logo .logo-fallback {
    display: none;
}

.logo,
.logo a,
.logo img {
    -webkit-tap-highlight-color: transparent;

    -webkit-user-drag: none;
    user-select: none;
}

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

.nav-divider {
    width: 2px;
    height: 24px;
    background-color: #ccc;
    margin: 0 10px;
    display: inline-block;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #6a11cb;
}

.nav-link.active {
    font-weight: 600;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.nav-icon:hover svg {
    transform: scale(1.1);
}

/* Icons */
.telegram-icon {
    background-color: #e9f5ff;
}

.telegram-icon:hover {
    background-color: #d1ebff;
}

.telegram-icon svg path {
    fill: #0088cc;
}

.whatsapp-icon {
    background-color: #e7f7e9;
}

.whatsapp-icon:hover {
    background-color: #d4f0d9;
}

.whatsapp-icon svg path {
    fill: #25D366;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f1f1f1;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: #4E69CB;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-phone:hover {
    background-color: #e3e3e3;
    color: #6a11cb;
}

.nav-phone svg {
    width: 20px;
    height: 20px;
    fill: #6a11cb;
}

.language-select {
    margin-left: 10px;
    padding: 4px 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

/* Toggle Button */
.mobile-toggle {
    display: none;
    width: 32px;
    height: 28px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Bars */
.mobile-toggle .bar {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle .bar:nth-child(1) {
    top: 0;
}

.mobile-toggle .bar:nth-child(2) {
    top: 12px;
}

.mobile-toggle .bar:nth-child(3) {
    bottom: 0;
}

/* Open (X) State */
.mobile-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.mobile-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 12px;
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-phone .phone-number {
        display: none;
    }
}

/* Right-side Icons Group */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 64px;
        left: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px;
    }

    .nav.show {
        display: flex;
        margin-top: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .nav-right {
        gap: 10px;
        margin-left: auto;
    }
}

/* Minimal Hero Section */
.minimal-hero-section {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 0 0 30px 30px;
}

.minimal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.minimal-hero-text {
    position: relative;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.minimal-hero-text h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.minimal-hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Base styles */
:root {
    --primary: #6a11cb;
    --primary-light: #2575fc;
    --dark: #1F2937;
    --gray: #6B7280;
    --light: #f9fafb;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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


.info-section h1,
h2,
h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.info-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.info-section h2 {
    font-size: 2rem;
    font-weight: 700;
}

.info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.info-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.info-section p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

strong {
    color: var(--primary);
    font-weight: 600;
}

ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
    color: var(--gray);
}

li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary);
    font-size: 1.2rem;
}

li:nth-child(1)::before {
    content: "\f133";
    /* calendar icon */
}

li:nth-child(2)::before {
    content: "\f022";
    /* list icon */
}

li:nth-child(3)::before {
    content: "\f017";
    /* clock icon */
}

li:nth-child(4)::before {
    content: "\f09d";
    /* credit card icon */
}

/* Main Content Styles */
.main-content {
    padding: 4rem 0;
    background-color: var(--light);
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236a11cb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

/* Section Styles */
section {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Info Section */
.info-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border-left: 6px solid transparent;
    border-image: var(--gradient);
    border-image-slice: 1;
}

/* Form Section */
.form-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-grid textarea {
    grid-column: span 2;
    height: 150px;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    color: var(--dark);
    background-color: #f8fafc;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
    background-color: var(--white);
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(106, 17, 203, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 7px 14px rgba(106, 17, 203, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(106, 17, 203, 0.2);
}

.btn-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-status.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: block;
}

.form-status.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

/* Form validation styles */
.is-valid {
    border-color: #10B981;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310B981' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
}

.is-valid:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.is-invalid {
    border-color: #EF4444;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23EF4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23EF4444' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
}

.is-invalid:focus {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.375rem;
    font-size: 0.875rem;
    color: #EF4444;
    animation: fadeIn 0.3s ease;
}

.is-invalid~.invalid-feedback {
    display: block;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.375rem;
    font-size: 0.875rem;
    color: #10B981;
    animation: fadeIn 0.3s ease;
}

.is-valid~.valid-feedback {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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



/* Footer with attribution */
.footer {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--gray);
}




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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.3rem;
    }

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

    .form-grid textarea {
        grid-column: span 1;
    }

    section {
        padding: 1.5rem;
    }
}