/* Sponsor - Multilingual Website Styles */

:root {
    --navy: #0B1F3B;
    --gold: #C6A75E;
    --charcoal: #2B2B2B;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-gray: #94a3b8;
    --card-bg: #1e293b;
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Assistant', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(11, 31, 59, 0.08);
    --shadow-md: 0 10px 30px rgba(11, 31, 59, 0.15);
    --shadow-lg: 0 20px 50px rgba(198, 167, 94, 0.2);
}

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

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

body {
    font-family: var(--body-font);
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 2px;
}

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

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(198, 167, 94, 0.2);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: static;
    background: transparent;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-menu a.active {
    color: var(--navy);
    font-weight: 600;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
    text-decoration: none;
}

.lang-btn:hover {
    color: var(--gold);
}

.lang-btn.active {
    color: var(--gold);
    font-weight: 700;
}

.lang-separator {
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.875rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--navy);
    transition: var(--transition);
}

.hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0B1F3B 0%, #1a3559 50%, #0B1F3B 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(198, 167, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(198, 167, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), rgba(198, 167, 94, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-decoration {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 167, 94, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--body-font);
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #d4b76a);
    color: var(--navy);
    box-shadow: 0 10px 30px rgba(198, 167, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(198, 167, 94, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--navy);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    flex-shrink: 0;
}

.card-header h2 {
    margin-bottom: 0;
    font-size: 1.75rem;
}

.values-list {
    list-style: none;
    padding-right: 0;
}

.values-list li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
}

.values-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

.legal-name {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.credibility-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.credibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(198, 167, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.founder-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-education,
.founder-languages {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    right: 9px;
    top: 30px;
    bottom: -32px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--medium-gray));
}

.timeline-marker {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px var(--medium-gray);
    margin-top: 0.25rem;
}

.timeline-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.timeline-content p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.why-section {
    padding: 6rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    margin-bottom: 1.5rem;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0B1F3B 0%, #1a3559 50%, #0B1F3B 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(198, 167, 94, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-header {
    padding: 5rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, #0B1F3B 0%, #1a3559 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(198, 167, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), transparent);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.service-number {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.service-icon {
    margin-bottom: 1.5rem;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: var(--gold);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: var(--body-font);
}

.service-card > p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding-right: 0;
}

.service-features li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
    font-size: 0.9375rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 600;
}

.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 15px;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 50%;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(198, 167, 94, 0.05);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    border-right: 3px solid var(--gold);
    border-radius: 10px;
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(198, 167, 94, 0.1);
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.info-content p {
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.info-content a {
    color: var(--charcoal);
    font-weight: 500;
}

.info-content a:hover {
    color: var(--gold);
}

.office-card,
.company-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.office-card:hover,
.company-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.office-card h3,
.company-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.office-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(198, 167, 94, 0.2);
    font-size: 0.9375rem;
    color: var(--gold);
    font-style: italic;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 10px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.15);
    background: var(--white);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #dc3545;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.2em;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.form-success {
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.1), rgba(198, 167, 94, 0.05));
    border: 1px solid var(--gold);
    color: var(--navy);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.site-footer {
    background: linear-gradient(135deg, #0B1F3B 0%, #1a3559 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(198, 167, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img,
.footer-logo svg {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-legal {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    text-decoration: none;
}
.whatsapp-link:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.whatsapp-link svg {
    flex-shrink: 0;
}

[dir="rtl"] .nav-menu a::after {
    right: auto;
    left: 0;
}

[dir="rtl"] .values-list li {
    padding-right: 0;
    padding-left: 1.5rem;
}

[dir="rtl"] .values-list li::before {
    right: auto;
    left: 0;
}

[dir="rtl"] .timeline-item:not(:last-child)::before {
    right: auto;
    left: 9px;
}

[dir="rtl"] .service-features li {
    padding-right: 0;
    padding-left: 1.5rem;
}

[dir="rtl"] .service-features li::before {
    right: auto;
    left: 0;
}

[dir="rtl"] .info-card {
    border-right: none;
    border-left: 3px solid var(--gold);
}

[dir="rtl"] .info-card:hover {
    transform: translateX(5px);
}

[dir="rtl"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 5px;
}

@media (max-width: 968px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.25rem; }
    
    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1023px) {
    html { font-size: 15px; }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--navy);
        box-shadow: -4px 0 20px rgba(11, 31, 59, 0.4);
        padding: 6rem 2rem 2rem;
        z-index: 9999;
        overflow-y: auto;
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(198, 167, 94, 0.2);
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.125rem;
        color: var(--white);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a.active {
        color: var(--gold);
        background: rgba(198, 167, 94, 0.1);
        padding-right: 1rem;
        margin-right: -1rem;
        border-right: 3px solid var(--gold);
    }
    
    .lang-switcher {
        padding-top: 2rem;
        border-top: 1px solid rgba(198, 167, 94, 0.2);
        justify-content: center;
    }
    
    .lang-btn {
        color: var(--white);
    }
    
    .lang-btn.active {
        color: var(--gold);
    }
    
    .hamburger {
        display: flex;
        z-index: 10001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background-color: var(--white);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: var(--white);
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-section,
    .credibility-section,
    .why-section,
    .services-section,
    .faq-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    [dir="rtl"] .nav-menu {
        right: auto;
        left: 0;
    }
    
    [dir="rtl"] .nav-menu a.active {
        padding-right: 0;
        padding-left: 1rem;
        margin-right: 0;
        margin-left: -1rem;
        border-right: none;
        border-left: 3px solid var(--gold);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-card,
    .founder-card,
    .service-card,
    .contact-form-container {
        padding: 2rem;
    }
}

@media print {
    .site-header,
    .hamburger,
    .hero-decoration,
    .cta-section,
    .site-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
    }
}
