/* ===================================
   LLG BIOTECH - PROFESSIONAL WEBSITE
   Inspired by Corporate Law Firm Design
   =================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #d4af37, #b8941f);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #b8941f, #a67c1a);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Full-width hero override */
.hero-banner .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 2vw;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a2332;
    letter-spacing: -0.02em;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1.2em; }

/* Top Bar */
.top-bar {
    background: #1a2332;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 30px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info i {
    color: #d4af37;
    font-size: 12px;
}

.top-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-info a:hover {
    color: #d4af37;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a2332, #d4af37);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 2px;
}

.logo-text span {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #1a2332;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 15px 0;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 25px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #d4af37;
    border-left-color: #d4af37;
    padding-left: 30px;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #1a2332;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 0;
}

.hero-text {
    text-align: left;
    max-width: none;
    padding-right: 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-main {
    display: block;
    font-weight: 400;
    font-size: 48px;
    opacity: 0.9;
}

.title-highlight {
    display: block;
    font-weight: 700;
    color: #d4af37;
    font-size: 72px;
}

.hero-subtitle {
    font-size: 22px;
    color: #bdc3c7;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.btn-primary {
    background: #d4af37;
    color: #ffffff;
    border-color: #d4af37;
}

.btn-primary:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-self: center;
    align-items: center;
}

.stat-item {
    text-align: center;
    color: #ffffff;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #bdc3c7;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-highlight {
    color: #d4af37;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(26, 35, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 35px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    color: #d4af37;
    font-size: 18px;
    margin-top: 2px;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
}

.about-right {
    position: relative;
}

.about-image {
    margin-bottom: 30px;
}

.image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #1a2332, #d4af37);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    gap: 15px;
}

.image-placeholder i {
    font-size: 60px;
}

.image-placeholder span {
    font-size: 16px;
    font-weight: 600;
}

.about-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced About Section Styling */
.about-content-wrapper {
    max-width: 100%;
    width: 100%;
}

.about-section-item {
    margin-bottom: 50px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.about-section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.about-subtitle {
    font-size: 24px;
    color: #1a2332;
    margin: 15px 0 20px 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5d6d7e;
    text-align: justify;
}

.about-description strong {
    color: #1a2332;
    font-weight: 600;
}

.about-description em {
    color: #d4af37;
    font-style: italic;
    font-weight: 500;
}

.quote-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-left: 4px solid #d4af37;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
    position: relative;
}

.quote-highlight i {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
}

.quote-highlight p {
    font-size: 18px;
    font-weight: 600;
    color: #1a2332;
    margin: 0;
    font-style: italic;
    line-height: 1.6;
}

/* Sequential Animation Container */
.about-sections-container {
    position: relative;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
}

/* Sequential Sections - All sections positioned absolutely */
.sequential-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

/* When section is shown, enable pointer events */
.sequential-section[style*="opacity: 1"] {
    pointer-events: auto;
}

/* Staggered animation delays */
.fade-in-section[data-delay="0"].animate {
    transition-delay: 0s;
}

.fade-in-section[data-delay="200"].animate {
    transition-delay: 0.2s;
}

.fade-in-section[data-delay="400"].animate {
    transition-delay: 0.4s;
}

/* Enhanced animation for quote highlight */
.fade-in-section .quote-highlight {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease-out 0.3s;
}

.fade-in-section.animate .quote-highlight {
    opacity: 1;
    transform: scale(1);
}

.company-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.card-content h4 {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-weight: 500;
}

.card-content p {
    font-size: 16px;
    color: #1a2332;
    font-weight: 600;
}

/* Values Section */
.values-section {
    background: #ffffff;
}

.values-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

/* Force inline layout for desktop */
@media (min-width: 1025px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #d4af37;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-top-color: #b8941f;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a2332, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 15px;
}

.value-card p {
    color: #5d6d7e;
    line-height: 1.7;
    font-size: 15px;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

/* Force inline layout for desktop */
@media (min-width: 1025px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #d4af37;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-top-color: #b8941f;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a2332, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    margin: 0 auto 25px;
}

.service-card h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 15px;
}

.service-card p {
    color: #5d6d7e;
    line-height: 1.7;
    font-size: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: #5d6d7e;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.service-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 8px;
    color: #d4af37;
    font-weight: bold;
    font-size: 16px;
}

.service-list li:last-child {
    margin-bottom: 0;
}

/* Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    color: #ffffff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.achievement-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 16px;
    color: #bdc3c7;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    color: #1a2332;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    color: #5d6d7e;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: #1a2332;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 13px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 90px;
    resize: vertical;
}

/* Contact Form Button */
.contact-form .btn {
    padding: 12px 25px;
    font-size: 13px;
    margin-top: 5px;
}

/* Footer */
.footer {
    background: #1a2332;
    color: #ffffff;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section ul li:last-child {
    border-bottom: none;
}

.footer-section i {
    color: #d4af37;
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        width: 150px;
        height: 150px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .title-main {
        font-size: 40px;
    }
    
    .title-highlight {
        font-size: 64px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 15px;
    }
    
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    .nav-menu .nav-item {
        margin: 10px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 10px 0;
        display: none;
        border-radius: 8px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Hero */
    .hero-banner {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .title-highlight {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 15px;
        margin-top: 30px;
        justify-content: center;
    }
    
    .stat-item {
        width: 130px;
        height: 130px;
        padding: 18px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* Services & Values */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .company-info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Enhanced mobile hero */
    .hero-banner {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-banner .container {
        max-width: none;
        width: 100%;
        padding: 0 15px;
        margin: 0;
    }
    
    .hero-content {
        padding: 40px 0 20px;
    }
    
    .hero-title {
        font-size: 44px;
        margin-bottom: 25px;
    }
    
    .title-main {
        font-size: 32px;
    }
    
    .title-highlight {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* Better mobile buttons */
    .btn {
        padding: 14px 28px;
        font-size: 14px;
        min-height: 50px;
        touch-action: manipulation;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Mobile grid improvements */
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Mobile card enhancements */
    .value-card,
    .service-card {
        padding: 30px 20px;
        margin-bottom: 10px;
    }
    
    .value-card:hover,
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    /* Mobile text improvements */
    .about-description {
        font-size: 15px;
        text-align: left;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    /* Touch-friendly navigation */
    .nav-link {
        padding: 15px 0;
        font-size: 16px;
    }
    
    .dropdown-link {
        padding: 15px 25px;
        font-size: 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Text Animation Effects */
.text-shimmer {
    background: linear-gradient(90deg, #1a2332, #d4af37, #1a2332);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: 0% 0; }
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    border-radius: 2px;
    transform: translateX(-100%);
    animation: slideInLine 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideInLine {
    to { transform: translateX(0); }
}

/* Floating Animation */
.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}
