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

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #000000;
    --text-dark: #000000;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #000000;
    --gray-medium: #666666;
    --gray-light: #999999;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--text-light);
    transition: var(--transition);
    min-height: 70px;
    overflow: visible;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    padding-left: 180px;
}

.logo-link {
    text-decoration: none;
    transition: var(--transition);
    overflow: visible;
    position: relative;
    z-index: 1002;
}

.logo-link:hover {
    /* no hover effect */
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image-container {
    position: fixed;
    top: 5px;
    left: 18%;
    z-index: 1100;
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #000000;
    height: 110px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}

.logo-link:hover .logo-image-container {
    /* no hover effect */
}

.logo-text {
    display: none;
}

.logo h1 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gray-light);
    text-shadow: none;
}

.logo-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--gray-light);
}

.nav-link:hover {
    color: var(--gray-light);
}

/* Contact Button Styling */
.btn-contact {
    background: var(--text-light);
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
    color: var(--primary-color) !important;
}

.btn-contact::after {
    display: none;
}

/* Override active state for contact button */
.btn-contact.active {
    background: var(--text-light) !important;
    color: var(--primary-color) !important;
}

.btn-contact:hover {
    background: var(--gray-light) !important;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
    color: var(--primary-color) !important;
}

.btn-contact:focus {
    outline: none;
    background: var(--text-light) !important;
    color: var(--primary-color) !important;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 1.5rem;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.lang-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-light);
}

.lang-selector .flag {
    font-size: 1.3rem;
    line-height: 1;
}

.lang-selector .lang-code {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 25px;
}

.lang-selector .arrow-icon {
    width: 14px;
    height: 14px;
    margin-left: 0.2rem;
    transition: transform 0.3s ease;
}

.lang-selector.active .arrow-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    background: rgba(255, 255, 255, 0.15);
    border-left: 3px solid var(--text-light);
}

.lang-option .flag {
    font-size: 1.4rem;
    line-height: 1;
}

.lang-option .lang-name {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section with Carousel */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--text-light);
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--text-light);
    width: 30px;
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: var(--gray-light);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.8;
}

/* Services Section - Featured Card Design */
.services {
    padding: 6rem 0;
}

/* Featured Service Card (Big Central Card) */
.featured-service {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    min-height: 420px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.featured-service:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.featured-content {
    position: relative;
    z-index: 1;
    color: white;
}

.featured-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}

.featured-icon svg {
    width: 100%;
    height: 100%;
}

/* float animation removed for performance */

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-description {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Section */
.featured-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Details Section (Shown on Hover) */
.featured-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.featured-service:hover .featured-details {
    opacity: 1;
    max-height: 500px;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.detail-icon {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: bold;
}

.detail-text {
    font-size: 0.95rem;
    color: white;
}

/* Services Carousel (Mini Cards) */
.services-carousel {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.mini-card {
    position: relative;
    width: 150px;
    height: 170px;
    background: white;
    border-radius: 18px;
    padding: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #000000, #333333);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mini-card.active::before,
.mini-card:hover::before {
    transform: scaleX(1);
}

.mini-card.active {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.mini-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mini-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.mini-card.active .mini-icon {
    color: white;
}

/* pulse animation removed for performance */

.mini-icon svg {
    width: 100%;
    height: 100%;
}

.mini-card h4 {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    transition: var(--transition);
    line-height: 1.3;
}

.mini-card.active h4 {
    color: white;
}


/* Partners Section */
.partners {
    background: var(--bg-light);
    padding: 5rem 0;
}

/* Featured Partner Card */
.featured-partner {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.featured-partner:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-partner-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 350px;
}

.featured-partner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.featured-partner:hover .featured-partner-image img {
    /* no transform */
}

.featured-partner-content {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.partner-info-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}

.partner-main-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-self: center;
    gap: 0.5rem;
}

.partner-flag-large {
    font-size: 3.5rem;
    line-height: 1;
}

.partner-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.partner-country {
    color: var(--gray-medium);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.partner-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: white;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.partner-detail-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.partner-detail-item .detail-icon {
    font-size: 2rem;
    line-height: 1;
}

.partner-detail-item .detail-text {
    width: 100%;
}

.partner-detail-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-detail-item span {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.partner-detail-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.partner-detail-item a:hover {
    color: var(--gray-medium);
}

/* Partners Carousel (Mini Cards) */
.partners-carousel {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.mini-partner-card {
    position: relative;
    width: 160px;
    height: 180px;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.mini-partner-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.mini-partner-card.active {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.mini-partner-card.active h4 {
    color: white;
}

.mini-partner-flag {
    font-size: 3rem;
    line-height: 1;
}

.mini-partner-card:hover .mini-partner-flag {
    /* no transform */
}

.mini-partner-card.active .mini-partner-flag {
    /* no animation */
}

.mini-partner-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    transition: var(--transition);
    margin: 0;
}


/* Contact Information Section */
.contact-info {
    background: var(--bg-light);
    padding: 5rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #000000, #333333);
}

.contact-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    color: var(--gray-medium);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.contact-details {
    text-align: left;
}

.contact-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.7rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-details .detail-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.contact-details .detail-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details span {
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.contact-details strong {
    color: var(--primary-color);
}

.contact-extra {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.website-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50px;
    color: white;
    transition: var(--transition);
}

.website-link:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.website-link .link-icon {
    font-size: 1.8rem;
}

.website-link a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Quote Request Section */
.quote {
    background: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #e8e8e8;
    color: #000000;
    border: 1px solid #999999;
    display: block;
}

.form-message.error {
    background: #333333;
    color: #ffffff;
    border: 1px solid #666666;
    display: block;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gray-light);
}

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

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.footer-credit a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--gray-light);
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .partners-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .partner-card {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.8rem 0;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem !important;
    }

    .language-switcher {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1002;
        margin-left: 0;
    }

    .lang-selector {
        background: rgba(0, 0, 0, 0.98);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .lang-dropdown {
        right: 0;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .featured-service {
        padding: 1.8rem;
        min-height: 380px;
    }

    .featured-title {
        font-size: 2rem;
    }

    .featured-icon {
        width: 70px;
        height: 70px;
    }

    .featured-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .featured-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

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

    .mini-card {
        width: 140px;
        height: 160px;
        padding: 1rem;
    }

    .mini-icon {
        width: 45px;
        height: 45px;
    }

    .mini-card h4 {
        font-size: 0.9rem;
    }

    /* Partners Carousel Mobile */
    .featured-partner {
        max-width: 100%;
    }

    .featured-partner-image {
        max-height: 300px;
    }

    .featured-partner-content {
        padding: 1.5rem;
    }

    .partner-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-main-info {
        order: -1;
    }

    .partner-flag-large {
        font-size: 3rem;
    }

    .partner-name {
        font-size: 1.3rem;
    }

    .partner-country {
        font-size: 1rem;
    }

    .partner-detail-item {
        padding: 1rem;
    }

    .partner-detail-item .detail-icon {
        font-size: 1.8rem;
    }

    .mini-partner-card {
        width: 140px;
        height: 160px;
        padding: 1rem;
    }

    .mini-partner-flag {
        font-size: 2.5rem;
    }

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

    .contact-card {
        padding: 1.8rem 1.2rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .website-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }

    .partner-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .carousel-controls {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .container-wide {
        padding: 0 20px;
    }

    .logo-image-container {
        top: 5px;
        left: 15px;
        padding: 8px 12px;
        height: 90px;
    }

    .logo-image {
        height: 70px;
        max-width: 110px;
    }

    .nav-wrapper {
        padding-left: 140px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .navbar {
        padding: 0.6rem 0;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 2rem;
    }

    .logo-image-container {
        top: 5px;
        left: 10px;
        padding: 6px 8px;
        height: 70px;
    }

    .logo-image {
        height: 55px;
        max-width: 85px;
    }

    .nav-wrapper {
        padding-left: 110px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
    }

    .service-card {
        height: 320px;
    }

    .nav-menu {
        width: 85%;
    }

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