/* Root Variables */
:root {
    --primary-orange: #FF6B1A;
    --primary-orange-dark: #E85D15;
    --steel-gray: #2C3E50;
    --coal-black: #1A1A1A;
    --safety-yellow: #FFC107;
    --white: #FFFFFF;
    --slate-gray: #5D6D7E;
    --trust-blue: #0A4D8C;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--coal-black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 30, 46, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(26, 30, 46, 0.98);
    box-shadow: 0 4px 40px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.company-logo {
    height: 90px;
    width: auto;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.company-logo:hover {
    filter: brightness(1.1);
}

.logo-icon-pro {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255,107,26,0.3);
}

.logo-icon-pro svg {
    color: white;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-subtext {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--primary-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 20px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.nav-link.active {
    color: var(--white);
    background: rgba(255,107,26,0.15);
}

.nav-link::after {
    display: none;
}

/* Download Catalogue Button in Nav */
.nav-download {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 107, 26, 0.3);
    transition: all 0.3s ease;
}

.nav-download:hover {
    background: linear-gradient(135deg, var(--primary-orange-dark) 0%, var(--primary-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.4);
}

.nav-download span:first-child {
    font-size: 16px;
}

.nav-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-phone {
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.nav-phone svg {
    width: 18px;
    height: 18px;
}

.nav-phone:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255,107,26,0.25);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255,107,26,0.35);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,26,0.25);
}

.btn-sm {
    padding: 11px 28px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 15px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-background.jpg') center center / cover no-repeat;
    overflow: hidden;
    padding-top: 120px; /* Increased padding for badge visibility */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,107,26,0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255,107,26,0.03) 2px, transparent 2px);
    background-size: 100px 100px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,107,26,0.15) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.4), rgba(26,26,26,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 100px 40px 0 40px; /* Added 100px top padding */
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,107,26,0.15);
    border: 1px solid rgba(255,107,26,0.3);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 800;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--safety-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 45px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.desktop-break {
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-shadow {
    box-shadow: 0 10px 40px rgba(255,107,26,0.3);
}

.btn-shadow:hover {
    box-shadow: 0 15px 50px rgba(255,107,26,0.4);
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.btn-icon {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.trust-badges {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,107,26,0.3);
    transform: translateY(-2px);
}

.badge-icon-wrapper {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon-wrapper svg {
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(10px); }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255,107,26,0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255,107,26,0.7);
    }
}

/* Section Titles */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 25px;
    font-weight: 800;
    color: var(--coal-black);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--safety-yellow));
    border-radius: 3px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,26,0.2), transparent);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--safety-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 54px;
    opacity: 0.08;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    opacity: 0.12;
    transform: scale(1.1) rotate(5deg);
}

.service-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.service-card:hover .service-image::after {
    background: rgba(0,0,0,0);
}

.service-card h3 {
    padding: 30px 30px 15px;
    font-size: 24px;
    color: var(--steel-gray);
    font-weight: 700;
}

.service-card p {
    padding: 0 30px 25px;
    color: var(--slate-gray);
    line-height: 1.8;
    font-size: 15px;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px;
    color: var(--primary-orange);
    font-weight: 700;
    border-top: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    background: rgba(255,107,26,0.05);
    padding-left: 35px;
    color: var(--primary-orange-dark);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.why-choose-image .placeholder-image {
    height: 500px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.why-choose-content .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.why-choose-content .section-title::after {
    left: 0;
    transform: none;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 26, 0.25);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: var(--primary-orange-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 26, 0.35);
}

.feature h4 {
    margin-bottom: 8px;
    color: var(--steel-gray);
    font-size: 18px;
    font-weight: 700;
}

.feature p {
    color: var(--slate-gray);
    font-size: 15px;
}

/* Equipment Section */
.equipment {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.equipment-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.equipment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    border: 2px solid var(--primary-orange);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.equipment-card:hover::after {
    opacity: 1;
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.equipment-image {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.equipment-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.equipment-card:hover .equipment-image::before {
    opacity: 1;
}

.equipment-placeholder {
    font-size: 110px;
    opacity: 0.35;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.equipment-card:hover .equipment-placeholder {
    transform: scale(1.1);
    opacity: 0.45;
}

.equipment-info {
    padding: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.equipment-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--steel-gray);
    font-weight: 700;
}

.equipment-specs {
    color: var(--slate-gray);
    font-size: 14px;
    margin-bottom: 18px;
    font-weight: 500;
}

.equipment-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.equipment-features span {
    background: linear-gradient(135deg, rgba(255,107,26,0.1) 0%, rgba(255,193,7,0.1) 100%);
    color: var(--primary-orange);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255,107,26,0.2);
    transition: all 0.3s ease;
}

.equipment-features span:hover {
    background: linear-gradient(135deg, rgba(255,107,26,0.15) 0%, rgba(255,193,7,0.15) 100%);
    transform: translateY(-2px);
}

/* Statistics Section */
.statistics {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1e2e 50%, #16213e 100%);
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,107,26,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,193,7,0.08) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

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

.stat {
    text-align: center;
    color: var(--white);
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,107,26,0.3);
    box-shadow: 0 20px 60px rgba(255,107,26,0.15);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--safety-yellow) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(255,107,26,0.3);
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.testimonial-card {
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange), var(--safety-yellow));
    border-radius: 16px 0 0 16px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

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

.testimonial-quote {
    position: absolute;
    top: 35px;
    left: 35px;
    font-size: 100px;
    color: rgba(255,107,26,0.08);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

.testimonial-text {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-gray);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.testimonial-author strong {
    color: var(--steel-gray);
    font-size: 17px;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--slate-gray);
    font-size: 14px;
    font-weight: 500;
}

.testimonial-rating {
    color: var(--safety-yellow);
    font-size: 22px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(255,193,7,0.2);
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.trust-logo {
    padding: 18px 35px;
    background: var(--white);
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    color: var(--steel-gray);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.trust-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: rgba(255,107,26,0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-text {
    margin-bottom: 20px;
    color: var(--slate-gray);
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature h4 {
    margin-bottom: 8px;
    color: var(--steel-gray);
}

.about-feature p {
    color: var(--slate-gray);
    font-size: 15px;
}

.about-image .placeholder-image {
    height: 500px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1e2e 50%, #16213e 100%);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255,107,26,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,193,7,0.08) 0%, transparent 50%);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto 60px;
    background: rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form select,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(255,107,26,0.1);
}

.contact-form select option {
    background: var(--steel-gray);
    color: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    width: 100%;
    margin-top: 15px;
    font-size: 16px;
    padding: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    color: var(--white);
    padding: 25px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,107,26,0.3);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 36px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
}

.contact-info-item a,
.contact-info-item span {
    color: var(--white);
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.contact-info-item a:hover {
    color: var(--primary-orange);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1e2e 0%, #0f1419 100%);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-company-logo {
    height: 108px;
    width: auto;
    filter: brightness(0.9);
}

.footer-logo .logo-icon-pro {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,107,26,0.3);
}

.footer-logo .logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

.footer-logo .logo-subtext {
    font-size: 11px;
    color: var(--primary-orange);
    letter-spacing: 2px;
}

.footer-tagline {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-orange);
    font-size: 15px;
}

.footer-section p[data-translate="footer_description_line1"],
.footer-section p[data-translate="footer_description_line2"] {
    margin: 0;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-section p[data-translate="footer_description_line1"] {
    margin-top: 8px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255,107,26,0.3);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

/* Mobile Call Button */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 8px 30px rgba(255,107,26,0.4);
    z-index: 999;
    animation: mobilePulse 2s infinite;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

@keyframes mobilePulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255,107,26,0.4);
        transform: translateX(-50%) translateY(0);
    }
    50% {
        box-shadow: 0 12px 40px rgba(255,107,26,0.6);
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Ensure badge is visible on smaller desktop screens */
    .hero {
        padding-top: 140px;
    }
}

/* For screens around 1920x1200 and similar */
@media (max-width: 1400px) and (min-width: 1025px) {
    .hero {
        padding-top: 130px;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 30, 46, 0.98);
        padding: 25px;
        gap: 5px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .desktop-break {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .badge {
        width: 100%;
        max-width: 320px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .stat-number {
        font-size: 56px;
    }

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

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

    .contact-form {
        padding: 35px 25px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .contact-info-item {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-call-btn {
        display: block;
    }

    .scroll-indicator {
        display: none;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .logo-text {
        font-size: 18px;
    }

    .company-logo {
        height: 120px;
    }

    .footer-company-logo {
        height: 90px;
    }
}

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

    .nav-logo .logo-text {
        font-size: 16px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 48px;
    }
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin: 0 15px;
}

.language-switcher-mobile {
    display: none !important; /* Hidden on desktop */
}

.language-switcher-desktop {
    display: flex !important; /* Visible on desktop */
}

/* Hide mobile language switcher on desktop - extra specificity */
.nav-menu .language-switcher-mobile {
    display: none !important;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.language-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-orange);
}

.language-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.language-flag .fi {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}


.language-text {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.language-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-btn:hover .language-arrow {
    transform: translateY(2px);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(26, 30, 46, 0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.language-option:hover {
    background: rgba(255,107,26,0.1);
    color: var(--primary-orange);
}

.language-option .language-flag {
    margin-right: 10px;
}

.language-option .language-flag .fi {
    font-size: 20px;
    width: 24px;
    height: 18px;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-switcher {
    margin: 0 15px 0 0;
}

/* RTL Mobile Menu Fix */
@media (max-width: 768px) {
    /* Fix mobile menu layout in RTL */
    [dir="rtl"] .nav-menu {
        flex-direction: column; /* Override row-reverse for mobile */
        align-items: stretch;
        text-align: right;
    }
    
    [dir="rtl"] .nav-menu.active {
        display: flex;
        flex-direction: column;
    }
    
    [dir="rtl"] .nav-link {
        text-align: right;
        padding: 12px 20px;
    }
    
    [dir="rtl"] .language-switcher-mobile {
        direction: rtl;
        align-self: stretch;
    }
    
    [dir="rtl"] .language-btn {
        width: 100%;
        justify-content: flex-start;
    }
    
    [dir="rtl"] .language-dropdown {
        left: 0;
        right: auto;
        text-align: right;
        width: 100%;
    }
    
    [dir="rtl"] .language-option {
        flex-direction: row-reverse;
        text-align: right;
    }
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,26,0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .language-switcher-desktop {
        display: none !important; /* Hide desktop version on mobile */
    }
    
    .nav-menu .language-switcher-mobile {
        display: block !important; /* Show mobile version */
        margin: 15px 0;
        width: 100%;
        padding: 0;
        order: 10; /* Put at bottom of mobile menu */
    }
    
    .language-switcher-mobile {
        display: none !important; /* Still hidden if not in nav-menu */
    }
    
    .language-switcher {
        margin: 0;
        width: 100%;
    }
    
    .language-btn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .language-flag {
        font-size: 22px;
    }
    
    /* Mobile dropdown - show directly below button in menu */
    .nav-menu .language-dropdown {
        position: static !important; /* Not absolute/fixed */
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin-top: 8px;
        transform: none !important;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu .language-dropdown.active {
        opacity: 1;
        max-height: 300px;
        transform: none !important;
    }
    
    .language-dropdown.active {
        transform: translateY(0);
    }
}


/* Catalogue Download Section */
.catalogue-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1e2e 0%, #2d3548 100%);
    position: relative;
    overflow: hidden;
}

.catalogue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,107,26,0.1)"/></svg>');
    opacity: 0.3;
}

.catalogue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.catalogue-badge {
    display: inline-block;
    background: rgba(255,107,26,0.15);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalogue-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.catalogue-description {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 35px;
}

.catalogue-features {
    list-style: none;
    margin-bottom: 40px;
}

.catalogue-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: var(--white);
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.catalogue-features li:last-child {
    border-bottom: none;
}

.catalogue-feature-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,26,0.2);
    border-radius: 10px;
    flex-shrink: 0;
    border: 2px solid rgba(255,107,26,0.3);
}

.catalogue-download-btn {
    box-shadow: 0 10px 30px rgba(255,107,26,0.3);
    transition: all 0.3s ease;
}

.catalogue-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,26,0.4);
}

.catalogue-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalogue-mockup {
    position: relative;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.catalogue-mockup:hover {
    transform: scale(1.05);
}

.catalogue-cover {
    width: 400px;
    height: 520px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.catalogue-cover:hover {
    box-shadow: 0 25px 80px rgba(255,107,26,0.4);
}

.catalogue-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalogue-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255,107,26,0.95) 0%, transparent 100%);
    padding: 40px 30px;
    color: var(--white);
}

.catalogue-year {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.catalogue-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Responsive Catalogue Section */
@media (max-width: 992px) {
    .catalogue-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .catalogue-title {
        font-size: 36px;
    }
    
    .catalogue-cover {
        width: 350px;
        height: 455px;
    }
}

@media (max-width: 768px) {
    .catalogue-section {
        padding: 60px 0;
    }
    
    .catalogue-title {
        font-size: 28px;
    }
    
    .catalogue-description {
        font-size: 16px;
    }
    
    .catalogue-cover {
        width: 300px;
        height: 390px;
    }
    
    .catalogue-year {
        font-size: 36px;
    }
    
    .catalogue-label {
        font-size: 16px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    position: relative;
    z-index: 1;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #25D366;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    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);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile to save space */
    }
}
