/* =============================================
   BOGARE İLETİŞİM - Premium Corporate Website
   Theme: Luxurious Black & Gold
   ============================================= */

/* CSS Variables */
:root {
    /* Colors */
    --black: #000000;
    --black-light: #0a0a0a;
    --black-lighter: #111111;
    --black-soft: #1a1a1a;
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --gray: #888888;
    --gray-light: #cccccc;
    --gray-dark: #333333;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-gold: 0 4px 30px rgba(255, 215, 0, 0.15);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

input, textarea {
    font-family: inherit;
    outline: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-tag.light {
    color: var(--gold-light);
}

.section-tag.light::before {
    background: var(--gold-light);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.gold {
    color: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.gold-ring {
    width: 80px;
    height: 80px;
    border: 3px solid var(--black-soft);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 5px;
    animation: pulse 1.5s ease infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* News Ticker */
.news-ticker {
    background: linear-gradient(90deg, var(--black-soft) 0%, var(--black-lighter) 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.ticker-label {
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.ticker-content {
    overflow: hidden;
    flex: 1;
    margin-left: 20px;
}

.ticker-items {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 50px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
.header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
    animation: logoGlow 3s ease infinite;
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4); }
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 3px;
    margin-left: -5px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-dark);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding-left: 25px;
}

.dropdown-menu li a i {
    color: var(--gold);
    width: 20px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search */
.search-wrapper {
    position: relative;
}

.search-toggle {
    color: var(--white);
    font-size: 1rem;
    padding: 8px;
    transition: var(--transition-fast);
}

.search-toggle:hover {
    color: var(--gold);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    padding: 15px;
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-dark);
}

.search-wrapper.active .search-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    flex: 1;
    background: var(--black);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
    color: var(--white);
    font-size: 0.9rem;
}

.search-input::placeholder {
    color: var(--gray);
}

.search-input:focus {
    border-color: var(--gold);
}

.search-btn {
    background: var(--gold);
    color: var(--black);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: var(--gold-light);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    background: 
        radial-gradient(ellipse at 10% 10%, rgba(255, 215, 0, 0.15) 0%, transparent 35%),
        radial-gradient(ellipse at 90% 10%, rgba(255, 200, 0, 0.1) 0%, transparent 35%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 215, 0, 0.12) 0%, transparent 35%),
        radial-gradient(ellipse at 10% 90%, rgba(255, 200, 0, 0.08) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 25%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 215, 0, 0.03) 60deg, transparent 120deg, rgba(255, 215, 0, 0.02) 180deg, transparent 240deg, rgba(255, 215, 0, 0.03) 300deg, transparent 360deg);
    animation: rotateShine 20s linear infinite;
    z-index: 2;
}

@keyframes rotateShine {
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--gold);
    animation: fadeInUp 1s ease;
}

.badge-icon {
    font-size: 1rem;
    animation: sparkle 2s ease infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line.gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    display: inline;
}

.stat-plus {
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s ease infinite;
}

.scroll-indicator i {
    font-size: 1rem;
    color: var(--gold);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.deco-line {
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.5) 0%, rgba(255, 215, 0, 0.2) 30%, rgba(255, 215, 0, 0.05) 70%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.line-1 {
    width: 1px;
    height: 300px;
    top: 0;
    left: 12%;
    animation: lineGlow 3s ease-in-out infinite;
}

.line-2 {
    width: 1px;
    height: 300px;
    top: 0;
    right: 12%;
    animation: lineGlow 3s ease-in-out infinite 1.5s;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 25px rgba(255, 215, 0, 0.5); }
}

.deco-circle {
    position: absolute;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 80px rgba(255, 215, 0, 0.05),
        0 0 120px rgba(255, 215, 0, 0.03),
        inset 0 0 80px rgba(255, 215, 0, 0.03);
    animation: rotateCircle 35s linear infinite;
}

.deco-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseCircle 4s ease-in-out infinite;
}

.deco-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 215, 0, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.08);
    animation: pulseCircle 4s ease-in-out infinite 2s;
}

@keyframes rotateCircle {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulseCircle {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

/* About Preview Section */
.about-preview {
    background: var(--black);
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--gray);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    text-align: center;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.exp-text {
    font-size: 0.8rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-card {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--gold);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-gold);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

.card-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    display: block;
}

.card-text {
    font-size: 0.75rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sectors Section */
.sectors {
    background: linear-gradient(to bottom, var(--black) 0%, var(--black-light) 100%);
    padding: var(--section-padding);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sector-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.sector-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-gold);
}

.sector-card.featured {
    border-color: var(--gold);
}

.sector-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
}

.sector-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #000000 100%);
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.sector-card:hover .sector-image img {
    transform: scale(1.1);
}

/* Beautiful gradient backgrounds for each sector card */
.sector-card:nth-child(1) .sector-image {
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #2d2416 0%, #1a1510 50%, #0a0a08 100%);
}

.sector-card:nth-child(2) .sector-image {
    background: 
        radial-gradient(circle at 50% 20%, rgba(255, 200, 0, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1f1c0a 0%, #121008 50%, #000000 100%);
}

.sector-card:nth-child(3) .sector-image {
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(255, 215, 0, 0.12) 0%, transparent 45%),
        linear-gradient(135deg, #1a1612 0%, #0d0c0a 50%, #000000 100%);
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.sector-content {
    padding: 30px;
}

.sector-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: -70px;
    position: relative;
    z-index: 2;
}

.sector-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.sector-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.sector-desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sector-features {
    margin-bottom: 25px;
}

.sector-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sector-features li:last-child {
    border-bottom: none;
}

.sector-features li i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Sustainability Preview */
.sustainability-preview {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.sustainability-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/sustainability-bg.jpg') center/cover no-repeat;
    z-index: -1;
}

.sustainability-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.sustainability-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.sustainability-text {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.sustainability-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.metric-item {
    text-align: center;
}

.metric-circle {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto 15px;
}

.metric-circle svg {
    transform: rotate(-90deg);
}

.metric-circle circle {
    fill: none;
    stroke-width: 8;
}

.metric-circle circle.bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.metric-circle circle.progress {
    stroke: var(--gold);
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease;
}

.metric-circle .metric-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.metric-circle .metric-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Preview */
.news-preview {
    background: var(--black);
    padding: var(--section-padding);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.news-meta span {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: var(--gold);
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.4;
    transition: var(--transition-fast);
}

.news-card:hover .news-title {
    color: var(--gold);
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-link:hover {
    gap: 12px;
}

.news-footer {
    text-align: center;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to bottom, var(--black-light) 0%, var(--black) 100%);
    padding: var(--section-padding);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
}

.quote-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 25px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gold);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold);
}

/* Partners */
.partners {
    background: var(--black);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.partners-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.partner-logo {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img {
    height: 50px;
    width: auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--black);
    color: var(--gold);
    border-color: var(--black);
}

.cta-buttons .btn-primary:hover {
    background: var(--black-soft);
}

.cta-buttons .btn-outline-light {
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline-light:hover {
    background: var(--black);
    color: var(--gold);
    border-color: var(--black);
}

/* Footer */
.footer {
    background: var(--black-soft);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 1.2rem;
}

.footer-logo .logo-main {
    font-size: 1.2rem;
}

.footer-logo .logo-sub {
    font-size: 0.6rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.mt-20 {
    margin-top: 30px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--gray);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-newsletter h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: var(--black);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    color: var(--white);
    font-size: 0.85rem;
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    background: var(--gold);
    color: var(--black);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badges img {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-badges img:hover {
    opacity: 1;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--black-soft);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.cookie-content a {
    color: var(--gold);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-list {
        gap: 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        padding-right: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .sectors-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .sectors-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .sustainability-metrics {
        gap: 30px;
    }
    
    .metric-circle {
        width: 100px;
        height: 100px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .news-ticker {
        display: none;
    }
    
    .header {
        top: 0;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .search-box {
        width: 250px;
        right: -50px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black-soft);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--black-soft);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }

/* =============================================
   MOBILE OPTIMIZATION - Enhanced
   ============================================= */

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, a {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn {
        min-height: 48px;
        min-width: 48px;
    }
}

/* Tablet & Mobile Navigation */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--black-light);
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        border-bottom: 1px solid var(--gray-dark);
    }
    
    .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--black);
        padding: 10px 0 10px 20px;
        display: none;
        box-shadow: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .lang-switcher {
        gap: 5px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stat {
        min-width: 100px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Cards mobile optimization */
    .sector-card,
    .news-card,
    .project-card,
    .case-card {
        margin-bottom: 20px;
    }
    
    /* Form elements mobile */
    input, textarea, select {
        font-size: 16px !important; /* Prevents iOS zoom */
        padding: 14px 16px;
    }
    
    /* CTA Section mobile */
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Project cards mobile */
    .project-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .project-metrics {
        justify-content: center;
    }
    
    /* Back to top button */
    .back-to-top {
        bottom: 20px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        margin-top: 20px;
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
    
    .nav {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    .header, .footer, .whatsapp-float, .back-to-top, .news-ticker {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}
