* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
/* Modern Glassmorphism Navbar CSS */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    background: rgba(89, 29, 19, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 124, 38, 0.2);
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(89, 29, 19, 0.3);
}

.nav-container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f47c26;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f47c26, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a {
    color: #fcfaec;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #591d13;
    background: rgba(244, 124, 38, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 124, 38, 0.3);
}

.nav-links a.active {
    color: #591d13;
    background: #f47c26;
    box-shadow: 0 2px 8px rgba(244, 124, 38, 0.4);
}

.nav-toggle {
    display: none;
    background: rgba(244, 124, 38, 0.2);
    border: 1px solid rgba(244, 124, 38, 0.3);
    color: #f47c26;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.nav-toggle:hover {
    background: rgba(244, 124, 38, 0.3);
}

.lang-switch {
    background: #f47c26 !important;
    color: white !important;
    border-radius: 6px !important;
    padding: 0.5rem 1rem !important;
    font-weight: 600;
}

.lang-switch:hover {
    background: #e46e20 !important;
}

/* Video Hero Styles */
.video-hero {
    position: relative;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: brightness(0.85);
    animation: fadeIn 1.5s ease-in-out;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    animation: fadeUp 1.5s ease-in-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content h1 span {
    color: #f47c26;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    background: #f47c26;
    color: white;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #d95e0e;
    transform: scale(1.05);
}

.video-control {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

.video-control:hover {
    background: rgba(255,255,255,0.4);
}

/* Hero hover effects */
.video-hero .hero-content {
    transition: transform 0.6s ease, opacity 0.8s ease 0.3s;
}

.video-hero:hover .hero-content {
    transform: translateY(-50%) translateX(-40px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(-50%); }
}

/* Photo Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url("images/hero_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(45, 45, 45, 0.4)),
        radial-gradient(circle at 20% 80%, rgba(244, 124, 38, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 124, 38, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(244, 124, 38, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(244, 124, 38, 0.8)); }
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f47c26, #ff8c42);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineExpand 2s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
    to { transform: scaleX(1); }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f47c26, #ff8c42);
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(244, 124, 38, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 124, 38, 0.5);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(244, 124, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(244, 124, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f47c26;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f47c26, #ff8c42);
    border-radius: 2px;
    animation: titleUnderline 1s ease-out 0.5s both;
}

@keyframes titleUnderline {
    from { width: 0; }
    to { width: 80px; }
}

.services-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f47c26, #ff8c42);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-thumb {
    height: 200px;
    background: linear-gradient(135deg, #f47c26, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-thumb::before {
    transform: translateX(100%);
}

.thumb-overlay {
    color: #eee;
    font-size: x-large;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-list {
    padding: 2rem;
}

.service-item {
    margin-bottom: 1rem;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    color: #f47c26;
}

.service-card:hover .service-item {
    transform: translateX(0);
    opacity: 1;
}

.service-item:nth-child(1) { transition-delay: 0.1s; }
.service-item:nth-child(2) { transition-delay: 0.2s; }
.service-item:nth-child(3) { transition-delay: 0.3s; }
.service-item:nth-child(4) { transition-delay: 0.4s; }
.service-item:nth-child(5) { transition-delay: 0.5s; }

.service-list p {
    color: #666;
    margin-top: 1rem;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(244, 124, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(244, 124, 38, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.products .section-title {
    color: white;
}

.products p {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.products p.animate {
    opacity: 1;
    transform: translateY(0);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    overflow: hidden;
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 124, 38, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(244, 124, 38, 0.2);
    border-color: rgba(244, 124, 38, 0.3);
}

.product-image {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    color: #f47c26;
}

.product-card:hover .product-image {
    transform: scale(1.2);
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

/* About Section */
.about {
    position: relative;
    padding: 6rem 0;
    background-image: url(../images/padyab.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.about .container,
.about .about-content,
.about .about-text {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #f47c26;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f47c26, #ff8c42);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 124, 38, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f47c26;
    margin-bottom: 0.5rem;
    counter-reset: number;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-image > div {
    background: linear-gradient(45deg, #f47c26, #ff8c42);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.about-image:hover > div::before {
    transform: translateX(100%);
}

.about-image:hover > div {
    transform: scale(1.05);
}

/* Global Presence Section Styles */
.global-presence {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.global-presence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(244, 124, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 60px;
    font-weight: 300;
}

.map-container {
    position: relative;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
    border: 2px solid rgba(244, 124, 38, 0.2);
    overflow: hidden;
}

#world-map {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #333;
    filter: grayscale(20%) contrast(1.1);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(244, 124, 38, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 124, 38, 0.1), transparent);
    transition: left 0.5s;
}

.office-card:hover::before {
    left: 100%;
}

.office-card:hover {
    transform: translateY(-5px);
    border-color: #f47c26;
    box-shadow: 0 10px 30px rgba(244, 124, 38, 0.2);
}

.office-flag {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.office-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f47c26;
    margin-bottom: 10px;
}

.office-details {
    color: #cccccc;
    line-height: 1.6;
}

.office-type {
    display: inline-block;
    background: rgba(244, 124, 38, 0.2);
    color: #f47c26;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Custom marker styles */
.custom-marker {
    background: #f47c26;
    border: 3px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.custom-marker.headquarters {
    background: #ff6b35;
    width: 25px;
    height: 25px;
    border: 4px solid #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 124, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(244, 124, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 124, 38, 0);
    }
}

.leaflet-popup-content-wrapper {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border-radius: 8px;
    border: 1px solid #f47c26;
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-family: Arial, sans-serif;
}

.leaflet-popup-tip {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #f47c26;
}

.popup-title {
    color: #f47c26;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.popup-details {
    font-size: 12px;
    color: #cccccc;
}

/* Dark theme for map */
.leaflet-tile-pane {
    filter: brightness(0.8) contrast(1.2) hue-rotate(200deg);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(244, 124, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(244, 124, 38, 0.1) 0%, transparent 50%);
    animation: contactBackground 10s ease-in-out infinite;
}

@keyframes contactBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f47c26;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-form {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.contact-form.animate {
    opacity: 1;
    transform: translateX(0);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f47c26;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f47c26;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 124, 38, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f47c26;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f47c26;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: #f47c26;
}

/* Responsive Design */
@media (max-width: 768px) {
            header {
                top: 10px;
                width: 98%;
                border-radius: 25px;
            }

            .nav-container {
                padding: 0 20px;
            }

            .nav-links {
                position: absolute;
                top: calc(100% + 15px);
                left: 50%;
                transform: translateX(-50%);
                width: 90%;
                background: rgba(89, 29, 19, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 20px;
                border-radius: 20px;
                border: 1px solid rgba(244, 124, 38, 0.3);
                box-shadow: 0 10px 40px rgba(89, 29, 19, 0.4);
                opacity: 0;
                visibility: hidden;
                transform: translateX(-50%) translateY(-20px);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .nav-links.show {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }

            .nav-links a {
                padding: 15px 0;
                margin: 5px 0;
                text-align: center;
                border-radius: 15px;
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .nav-toggle {
                display: block;
            }

            .logo {
                font-size: 1.4rem;
            }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .services-container {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .global-presence {
        padding: 60px 0;
    }
    
    .map-container {
        padding: 15px;
    }
    
    #world-map {
        height: 350px;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate,
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particle effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(244, 124, 38, 0.5);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}