/* ========================================
   EFOR LOJISTIK - CSS STYLES
   ======================================== */

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

:root {
    --primary-color: #1a5276;
    --secondary-color: #2874a6;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --gray-light: #f5f6fa;
    --gray-medium: #dcdde1;
    --footer-dark: #1a252f;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 82, 118, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 82, 118, 0.3);
}

.text-center {
    text-align: center;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    margin-right: 5px;
    color: var(--accent-color);
}

.top-bar-right a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.top-bar-right a:hover {
    color: var(--accent-color);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo img {
    max-height: 80px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 10px 18px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-light);
}

.dropdown-menu a:hover {
    background-color: var(--gray-light);
    padding-left: 25px;
}

.dropdown > a i {
    font-size: 12px;
    margin-left: 5px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu-close {
    display: none;
}

.mobile-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: var(--gray-light);
    color: var(--accent-color);
}

/* ========================================
   HERO SLIDER SECTION
   ======================================== */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--primary-color);
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.85) 0%, rgba(40, 116, 166, 0.75) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 30px;
    margin-top: -120px;
    animation: slideContentFade 1s ease;
}

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

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 156, 18, 0.9);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: -80px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 20px 5px rgba(243, 156, 18, 0.2); }
}

.slide-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Outline Light Button */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-light:hover::before {
    left: 0;
}

.btn-outline-light:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent-color);
    border-color: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Floating Icons */
.slider-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.slider-floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 60px;
    animation: sliderFloat 10s ease-in-out infinite;
}

.slider-floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.slider-floating-icons i:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 3s;
    font-size: 80px;
}

.slider-floating-icons i:nth-child(3) {
    top: 30%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes sliderFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.3;
    }
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(26, 82, 118, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(243, 156, 18, 0.03) 0%, transparent 40%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.process-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(26, 82, 118, 0.05);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 82, 118, 0.12);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 20px;
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.2);
}

.process-icon i {
    font-size: 28px;
    color: var(--white);
}

.process-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.process-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 24px;
    z-index: 2;
}

.process-card:last-child .process-arrow {
    display: none;
}

/* ========================================
   FEATURES SHOWCASE SECTION
   ======================================== */
.features-showcase {
    padding: 100px 0;
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.showcase-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(26, 82, 118, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.image-badge i {
    font-size: 30px;
    color: var(--accent-color);
}

.image-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.showcase-content .section-tag {
    display: inline-block;
    background: rgba(26, 82, 118, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.showcase-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.showcase-content h2 .highlight {
    color: var(--primary-color);
    position: relative;
}

.showcase-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(243, 156, 18, 0.3);
    z-index: -1;
}

.showcase-content > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.showcase-list {
    margin-bottom: 35px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.showcase-list li i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(26, 82, 118, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 82, 118, 0.1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    transform: scale(1.02);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .testimonial-author h4,
.testimonial-card.featured .testimonial-author span {
    color: var(--white);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-card.featured .testimonial-stars i {
    color: var(--accent-color);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card.featured .author-avatar {
    background: var(--white);
}

.author-avatar i {
    font-size: 20px;
    color: var(--white);
}

.testimonial-card.featured .author-avatar i {
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   CTA SECTION MAIN
   ======================================== */
.cta-section-main {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    position: relative;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.cta-badge i {
    font-size: 20px;
    color: var(--accent-color);
}

.cta-badge span {
    font-weight: 500;
    font-size: 14px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-weight: 600;
}

.btn-white:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.cta-features i {
    color: var(--accent-color);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-line::before {
    left: -5px;
}

.section-line::after {
    right: -5px;
}

.section-header p {
    color: var(--text-light);
    margin-top: 20px;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientLine 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes gradientLine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 82, 118, 0.2);
    border-color: rgba(26, 82, 118, 0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.3);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(26, 82, 118, 0.3);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    max-width: 350px;
    border: 1px solid rgba(26, 82, 118, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 30px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(26, 82, 118, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 82, 118, 0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.2);
}

.value-icon i {
    font-size: 28px;
    color: var(--white);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   CERTIFICATES SECTION
   ======================================== */
.certificates-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.certificate-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 2px solid rgba(26, 82, 118, 0.05);
}

.certificate-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(26, 82, 118, 0.1);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 82, 118, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.cert-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.certificate-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.certificate-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   ABOUT PREVIEW SECTION
   ======================================== */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

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

.about-preview h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-preview p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-preview .btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.3);
    padding: 18px 45px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.about-preview .btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5), 0 0 0 4px rgba(243, 156, 18, 0.2);
    transform: translateY(-4px) scale(1.02);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(26, 82, 118, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-item i {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--primary-color), #2980b9);
    background-size: 400% 400%;
    animation: pageHeaderGradient 15s ease infinite;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes pageHeaderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(243, 156, 18, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.breadcrumb {
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.breadcrumb span {
    color: var(--accent-color);
    font-weight: 500;
}

/* ========================================
   ABOUT SECTION (Detail Page)
   ======================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 500px;
}

.about-visual-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1a5276 100%);
    border-radius: 20px;
    padding: 60px 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 82, 118, 0.3);
}

.about-visual-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(243, 156, 18, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    animation: aboutBgPulse 8s ease-in-out infinite;
}

@keyframes aboutBgPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

.visual-icon.main-icon {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: mainIconPulse 3s ease-in-out infinite;
}

@keyframes mainIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(243, 156, 18, 0.3); }
}

.visual-icon.main-icon i {
    font-size: 70px;
    color: var(--white);
}

.visual-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.v-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatIconAbout 6s ease-in-out infinite;
}

.v-icon i {
    font-size: 22px;
    color: var(--white);
}

.v-icon.v-1 { top: 15%; left: 10%; animation-delay: 0s; }
.v-icon.v-2 { top: 20%; right: 15%; animation-delay: 1s; }
.v-icon.v-3 { top: 50%; left: 5%; animation-delay: 2s; }
.v-icon.v-4 { top: 50%; right: 8%; animation-delay: 3s; }
.v-icon.v-5 { bottom: 20%; left: 15%; animation-delay: 4s; }
.v-icon.v-6 { bottom: 25%; right: 12%; animation-delay: 5s; }

@keyframes floatIconAbout {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.visual-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    z-index: 2;
}

.v-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.v-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.v-label {
    display: block;
    font-size: 14px;
    color: var(--white);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 50px 35px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 82, 118, 0.05);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 82, 118, 0.15);
    border-color: rgba(26, 82, 118, 0.1);
}

.feature-item i {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.feature-item:hover h4 {
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   SERVICES CARDS SECTION
   ======================================== */
.services-cards-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card-large {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(26, 82, 118, 0.15);
}

.service-card-large.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
}

.service-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-card-large.full-width .service-card-image {
    width: 50%;
    height: auto;
    min-height: 300px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.7) 0%, rgba(40, 116, 166, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-large:hover .service-card-overlay {
    opacity: 1;
}

.service-card-overlay i {
    font-size: 60px;
    color: var(--white);
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.service-card-large:hover .service-card-overlay i {
    transform: scale(1);
}

.service-card-body {
    padding: 35px 30px;
    flex-grow: 1;
}

.service-card-large.full-width .service-card-body {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.service-features li i {
    color: var(--accent-color);
    font-size: 14px;
}

.transport-modes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.transport-modes li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-light);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.mode-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mode-icon i {
    color: var(--white);
    font-size: 14px;
}

.document-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.doc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.08) 0%, rgba(40, 116, 166, 0.08) 100%);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    color: var(--primary-color);
    border: 1px solid rgba(26, 82, 118, 0.1);
    transition: var(--transition);
}

.doc-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.doc-tag i {
    font-size: 14px;
}

/* Why Choose Banner */
.why-choose-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(243, 156, 18, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    animation: rotateBg 20s linear infinite;
}

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

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.why-item i {
    font-size: 28px;
    color: var(--accent-color);
    margin-top: 5px;
}

.why-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.why-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Page Header Image */
.page-header-image {
    padding: 120px 0;
    background-size: cover !important;
    background-position: center !important;
}

.page-header-image .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 156, 18, 0.9);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
}

.page-header-image .header-badge i {
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 40px;
    font-weight: 600;
}

.cta-section .btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

/* ========================================
   REFERENCES PAGES
   ======================================== */
.references-section {
    padding: 80px 0;
    background-color: var(--white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reference-card {
    background-color: var(--gray-light);
    padding: 50px 40px;
    text-align: center;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.reference-card:hover::before {
    opacity: 1;
}

.reference-card:hover {
    box-shadow: 0 15px 40px rgba(26, 82, 118, 0.2);
    transform: translateY(-8px);
}

.reference-card > * {
    position: relative;
    z-index: 1;
}

.reference-card:hover h3,
.reference-card:hover p {
    color: var(--white);
}

.reference-card:hover .reference-logo {
    background: var(--white);
}

.reference-card:hover .reference-logo i {
    color: var(--primary-color);
}

.reference-logo {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reference-logo i {
    font-size: 32px;
    color: var(--white);
}

.reference-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.reference-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ========================================
   FAIRS PAGE
   ======================================== */
.fairs-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

/* Countries Filter */
.countries-filter {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 100px;
    z-index: 100;
}

.countries-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.countries-scroll::-webkit-scrollbar {
    display: none;
}

.country-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-light);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.country-tag:hover {
    background: rgba(26, 82, 118, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.country-tag.active {
    background: var(--primary-color);
    color: var(--white);
}

.country-tag i {
    font-size: 14px;
}

/* Fairs Grid */
.fairs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

/* Fair Card New Design */
.fair-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(26, 82, 118, 0.05);
}

.fair-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 82, 118, 0.15);
}

.fair-card.featured {
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.2);
    border: 2px solid var(--accent-color);
}

.fair-card.featured:hover {
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.3);
}

.fair-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.fair-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fair-card:hover .fair-image img {
    transform: scale(1.1);
}

.fair-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
}

.fair-content {
    padding: 25px;
}

.fair-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.country-flag {
    width: 32px;
    height: 24px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 3px;
}

.fair-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.fair-location {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 0;
}

.fair-location i {
    margin-right: 5px;
    color: var(--primary-color);
}

.fair-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.fair-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.fair-sector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 82, 118, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
}

.fair-sector i {
    font-size: 11px;
}

.fair-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.fair-link:hover {
    color: var(--accent-color);
    gap: 10px;
}

.fair-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 20px 25px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(26, 82, 118, 0.08);
    text-decoration: none;
    color: inherit;
}

.quick-contact-item:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 82, 118, 0.2);
}

.quick-contact-item i {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.quick-contact-item:hover i {
    background: var(--accent-color);
    color: var(--white);
}

.quick-contact-item span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.quick-contact-item:hover span {
    color: rgba(255, 255, 255, 0.8);
}

.quick-contact-item strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.quick-contact-item:hover strong {
    color: var(--white);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

/* Contact Info Box New Design */
.contact-info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(26, 82, 118, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(243, 156, 18, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
}

.contact-info-box > * {
    position: relative;
    z-index: 1;
}

.contact-box-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-box-header i {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.contact-box-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.contact-items {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.contact-icon i {
    font-size: 18px;
    color: var(--accent-color);
}

.contact-details h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.contact-details p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.contact-details p small {
    font-size: 12px;
    opacity: 0.8;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social span {
    font-size: 14px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Contact Form Box New Design */
.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 82, 118, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-header p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Form New Design */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group label i {
    margin-right: 6px;
    color: var(--primary-color);
    font-size: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(26, 82, 118, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 82, 118, 0.4);
}

.map-section {
    margin-top: 60px;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--footer-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info li i {
    color: var(--accent-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--accent-color);
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        min-height: 400px;
    }
    
    .about-visual-bg {
        min-height: 400px;
        padding: 40px 30px;
    }
    
    .visual-icon.main-icon {
        width: 120px;
        height: 120px;
    }
    
    .visual-icon.main-icon i {
        font-size: 50px;
    }

    /* Timeline Responsive */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-year {
        left: 30px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 14px;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    /* Values & Certificates */
    .values-grid,
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-detail-item {
        flex-direction: column;
        text-align: center;
    }

    .service-icon-large {
        margin: 0 auto;
    }

    /* Process Section */
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-card:nth-child(3) .process-arrow {
        display: none;
    }
    
    /* Features Showcase */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .showcase-image {
        order: -1;
    }
    
    .image-wrapper img {
        height: 350px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-8px);
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 36px;
    }

    /* Quick Contact Bar */
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Fairs Grid */
    .fairs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .fair-card-large.full-width {
        flex-direction: column;
    }

    .fair-card-large.full-width .service-card-image,
    .fair-card-large.full-width .service-card-body {
        width: 100%;
    }

    /* Contact */
    .contact-info-box,
    .contact-form-box {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .header .container {
        height: 100px;
    }
    
    .logo img {
        max-height: 80px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 10000;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        cursor: pointer;
        font-size: 20px;
    }

    .mobile-menu-close::before {
        content: 'Menü';
        font-weight: 600;
        font-size: 16px;
    }

    .mobile-menu-close i {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .mobile-menu-close:hover i {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 10px 20px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 10px 20px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        padding: 15px;
        border-bottom: 1px solid var(--gray-light);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Hero Slider Responsive */
    .hero-slider {
        height: 650px;
    }

    .slide-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 0;
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .slide-badge {
        font-size: 12px;
        padding: 6px 15px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .slider-controls {
        gap: 20px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-floating-icons i {
        font-size: 40px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 600px;
    }

    .slide-content {
        margin-top: 0;
        padding: 0 15px;
    }

    .slide-content h1 {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .slide-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .slide-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .slider-controls {
        bottom: 20px;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .page-header h1 {
        font-size: 28px;
    }

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

    .contact-info-box {
        padding: 30px;
    }
    
    .about-visual {
        min-height: 350px;
    }
    
    .about-visual-bg {
        min-height: 350px;
        padding: 30px 20px;
    }
    
    .visual-icon.main-icon {
        width: 100px;
        height: 100px;
    }
    
    .visual-icon.main-icon i {
        font-size: 40px;
    }
    
    .v-icon {
        width: 40px;
        height: 40px;
    }
    
    .v-icon i {
        font-size: 18px;
    }
    
    .visual-stats {
        gap: 15px;
    }
    
    .v-stat {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .v-number {
        font-size: 20px;
    }
    
    .v-label {
        font-size: 12px;
    }
    
    /* Process Section */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-arrow {
        display: none !important;
    }
    
    .process-card {
        padding: 30px 25px;
    }
    
    /* Features Showcase */
    .showcase-content h2 {
        font-size: 28px;
    }
    
    .image-badge {
        right: 10px;
        bottom: 10px;
        padding: 12px 15px;
    }
    
    .image-badge i {
        font-size: 24px;
    }
    
    .image-badge span {
        font-size: 12px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content > p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-white,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    /* Fairs Mobile */
    .countries-scroll {
        padding: 0 10px;
    }
    
    .country-tag {
        padding: 8px 15px;
        font-size: 12px;
    }

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

    .fair-content {
        padding: 20px;
    }

    .fair-header h3 {
        font-size: 18px;
    }

    .fair-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    /* Contact Mobile */
    .quick-contact-item {
        padding: 15px 20px;
    }

    .quick-contact-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .contact-box-header i,
    .form-header i {
        font-size: 36px;
    }

    .contact-item {
        gap: 12px;
    }

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

    .contact-icon i {
        font-size: 15px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .contact-social {
        flex-direction: column;
        gap: 12px;
    }

    .btn-submit {
        padding: 14px;
        font-size: 15px;
    }

    /* Timeline Mobile */
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 16px;
    }

    /* Values & Certificates Mobile */
    .values-grid,
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card,
    .certificate-card {
        padding: 30px 25px;
    }
}

/* ========================================
   SIDE FLOATING CONTACT BUTTON (Web)
   ======================================== */
.side-contact-float {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(26, 82, 118, 0.85);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.side-contact-btn i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.side-contact-btn:hover {
    background: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(26, 82, 118, 0.4);
    border-color: var(--accent-color);
}

.side-contact-btn.whatsapp {
    background: rgba(37, 211, 102, 0.85);
}

.side-contact-btn.whatsapp:hover {
    background: #25d366;
    border-color: #128c7e;
}

.contact-text {
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.3s ease;
}

.side-contact-btn:hover .contact-text {
    max-width: 200px;
}

/* Hide side buttons on mobile, show bottom bar */
@media (max-width: 768px) {
    .side-contact-float {
        display: none;
    }
    
    body {
        padding-bottom: 70px;
    }
}

/* ========================================
   MOBILE FLOATING CONTACT BAR - COMPACT
   ======================================== */
.mobile-contact-bar {
    display: flex;
    position: fixed;
    bottom: 8px;
    left: 8px;
    right: 8px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 8px;
    gap: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-contact-btn:hover::before,
.mobile-contact-btn:active::before {
    opacity: 1;
}

.mobile-contact-btn i {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.mobile-contact-btn span {
    position: relative;
    z-index: 1;
}

.phone-btn {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 3px 12px rgba(26, 82, 118, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-btn:hover,
.phone-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(26, 82, 118, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

.whatsapp-btn {
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-btn:hover,
.whatsapp-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Hide bottom bar on desktop, only show side buttons */
@media (min-width: 769px) {
    .mobile-contact-bar {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
}
