﻿/* ===================================
   CSS Variables & Theme Setup
   =================================== */
:root {
    /* Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --accent-primary: #3b82f6;
    --accent-secondary: #8b5cf6;
    --accent-hover: #2563eb;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --overlay-gradient: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(15, 23, 42, 0.6) 100%);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --border-color: #334155;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-header {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-hero {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 60px 0;
}

/* ===================================
   Scroll Progress Bar
   =================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--accent-gradient);
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease-out;
}

/* ===================================
   Preloader
   =================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-icon {
    color: var(--accent-primary);
    animation: rotate 2s linear infinite;
    margin-bottom: 20px;
}

.preloader-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===================================
   Theme Toggle Button
   =================================== */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 1000;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-lg);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.theme-toggle svg {
    color: var(--accent-primary);
    transition: all var(--transition-speed);
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-speed);
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.98);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 0;
}

.navbar {
    padding: 1.2rem 0;
    transition: padding var(--transition-speed);
}

.header.scrolled .navbar {
    padding: 0.8rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform var(--transition-speed);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    color: var(--accent-primary);
    transition: transform var(--transition-speed);
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width var(--transition-speed);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-md);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-speed);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-gradient);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge svg {
    color: #fbbf24;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.title-highlight {
    display: inline-block;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.98);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.fade-in {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: white;
    color: var(--accent-primary);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 8px 50px rgba(255, 255, 255, 0.5); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    transition: all var(--transition-speed);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.3;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    z-index: 3;
    color: white;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

/* ===================================
   Section Styles
   =================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center .section-badge {
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 0.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--bg-secondary);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 18px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

[data-theme="dark"] .image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 18px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.badge-number {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.2;
}

.about-features {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.feature-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.feature-box h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.feature-box p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.about-content {
    padding: 0;
}

.about-highlights {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
}

.highlight-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.highlight-item span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-contact svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.contact-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.contact-number:hover {
    color: var(--accent-primary);
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.service-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-speed);
}

.service-card:hover .service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-speed);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-speed);
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    transition: transform var(--transition-speed);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ===================================
   Cranes Section
   =================================== */
.cranes {
    background: var(--bg-secondary);
}

.crane-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cranes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.crane-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-speed);
    border: 1px solid var(--border-color);
    position: relative;
}

.crane-card.featured {
    border: 2px solid var(--accent-primary);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: #fbbf24;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.crane-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.crane-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.crane-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.crane-card:hover .crane-image {
    transform: scale(1.1);
}

.crane-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transition: opacity var(--transition-speed);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.crane-card:hover .crane-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transition: opacity var(--transition-speed);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.overlay-content {
    color: white;
}

.overlay-content h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.overlay-content ul {
    list-style: none;
    font-size: 0.85rem;
    line-height: 1.6;
}

.crane-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--accent-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.crane-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.crane-content {
    padding: 1.5rem;
}

.crane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.crane-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.crane-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(251, 191, 36, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
}

.crane-rating svg {
    color: #fbbf24;
}

.crane-rating span {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.crane-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.crane-features {
    list-style: none;
    margin-bottom: 1.2rem;
}

.crane-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.crane-features li:last-child {
    border-bottom: none;
}

.crane-features svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.crane-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.crane-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-outline {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.95), transparent);
    opacity: 0;
    transition: opacity var(--transition-speed);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.95), transparent);
    opacity: 0;
    transition: opacity var(--transition-speed);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-content {
    color: white;
}

.gallery-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.gallery-content p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.gallery-view-btn {
    background: white;
    color: var(--accent-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.gallery-view-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info-card,
.contact-form-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-box {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed);
}

.contact-item-box:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-icon-circle {
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-details a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.contact-details a:hover {
    color: var(--accent-primary);
}

.contact-note {
    font-size: 0.85rem !important;
    font-style: italic;
    margin-top: 0.3rem !important;
}

.business-hours-card {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
}

.business-hours-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.hours-item span:last-child {
    color: var(--text-primary);
    font-weight: 700;
}

.social-connect h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.social-link.whatsapp {
    background: #25D366;
    color: white;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group label svg {
    color: var(--accent-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    position: relative;
    justify-content: center;
    margin-top: 1rem;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-submit.loading .btn-loader {
    display: block;
}

.btn-submit.loading span {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    color: var(--accent-primary);
}

.footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.footer-logo span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-speed);
}

.footer-social a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a,
.footer-section ul li {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-contact svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1400px) {
    .container, .container-hero {
        max-width: 1200px;
    }
    .container-header {
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .about-wrapper,
    .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: left var(--transition-speed);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
    
    .services-grid,
    .cranes-grid,
    .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
    
    .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
    
    .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
}

@media (max-width: 640px) {
    .container,
    .container-header,
    .container-hero {
        padding: 0 20px;
    }
    
    .section-padding {
    padding: 60px 0;
}
    
    .hero {
    position: relative;
    min-height: 100vh;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px 0;
    overflow: hidden;
}
    
    .hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-features {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
    
    .about-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
}



/* Additional optimizations for single view */
@media (min-width: 1024px) and (max-width: 1600px) {
    .hero-title {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }
    
    .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.98);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}
    
    .hero-buttons {
        margin-bottom: 3rem;
    }
    
    .stat-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

.contact-icon-circle svg {
    width: 20px;
    height: 20px;
}




/* ===================================
   MODERN CARD DESIGNS - Colorful & Smart
   =================================== */

/* Service Cards - Modern Gradient Design */
.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.8rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

[data-theme="dark"] .service-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px 20px 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Service Icon - Colorful Gradient */
.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-card[data-service="rental"] .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-card[data-service="lifting"] .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.service-card[data-service="operators"] .service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.service-card[data-service="support"] .service-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 25px rgba(67, 233, 123, 0.3);
}

.service-card[data-service="maintenance"] .service-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.3);
}

.service-card[data-service="planning"] .service-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 8px 25px rgba(48, 207, 208, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Crane Cards - Premium Glass Effect */
.crane-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .crane-card {
    background: linear-gradient(145deg, rgba(30,41,59,0.95) 0%, rgba(15,23,42,0.95) 100%);
}

.crane-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.crane-card:hover::before {
    opacity: 1;
}

.crane-card.featured {
    border: 2px solid #fbbf24;
    box-shadow: 0 10px 50px rgba(251, 191, 36, 0.2);
}

.crane-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.25);
}

.crane-card > * {
    position: relative;
    z-index: 1;
}

/* Gallery Items - Modern Hover Effect */
.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(59, 130, 246, 0.08);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Contact Cards - Premium Design */
.contact-info-card,
.contact-form-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.12);
    border: 2px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s;
}

[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-form-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.contact-info-card:hover,
.contact-form-card:hover {
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.18);
}

/* Contact Item Box - Gradient Background */
.contact-item-box {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-item-box:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
}

/* Feature Box - Colorful Backgrounds */
.feature-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.08) 0%, rgba(56, 249, 215, 0.08) 100%);
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(67, 233, 123, 0.15);
}

.feature-box:first-child {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.08) 0%, rgba(0, 242, 254, 0.08) 100%);
    border-color: rgba(79, 172, 254, 0.15);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.2);
}

/* Stat Items - Colorful Icons */
.stat-item:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-item:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Business Hours Card - Modern Design */
.business-hours-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

/* Form Inputs - Modern Style */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-primary);
    transition: all 0.3s;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background: #ffffff;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    background: var(--bg-secondary);
}

/* Crane Badge - Colorful */
.crane-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Featured Badge - Animated */
.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Icon Animations - JS will add classes */
.service-icon svg,
.stat-icon svg {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.service-card:hover .service-icon svg {
    animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Gradient Text Effects */
.service-title,
.crane-title {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover .service-title,
.crane-card:hover .crane-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ===================================
   ULTRA COMPACT SECTIONS - Single View Optimized
   =================================== */

/* Reduce all vertical spacing */
.section-header-center {
    margin-bottom: 2rem;
}

.section-badge {
    margin-bottom: 0.8rem;
    padding: 5px 14px;
    font-size: 0.75rem;
}

.section-title {
    margin-bottom: 0.6rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.section-description {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About Section - Ultra Compact */
.about-content {
    padding: 0;
}

.about-highlights {
    margin: 1.2rem 0;
    gap: 0.5rem;
}

.highlight-item {
    padding: 0.4rem 0;
}

.about-cta {
    margin-top: 1.5rem;
}

/* Service Cards - Compact & Colorful */
.service-card {
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(59, 130, 246, 0.06);
}

.service-icon-wrapper {
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.service-description {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-features {
    margin-bottom: 1rem;
}

.service-features li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
}

.service-number {
    font-size: 2.2rem;
}

/* Crane Cards - Premium Compact */
.crane-content {
    padding: 1.3rem;
}

.crane-header {
    margin-bottom: 0.6rem;
}

.crane-title {
    font-size: 1.2rem;
}

.crane-description {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.crane-features {
    margin-bottom: 1rem;
}

.crane-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.crane-footer {
    padding-top: 0.8rem;
}

.price-value {
    font-size: 1.2rem;
}

/* Gallery - Compact Grid */
.gallery-item {
    aspect-ratio: 16/10;
}

/* Contact Section - Streamlined */
.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.contact-info-card p {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.contact-items {
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.contact-item-box {
    padding: 0.8rem;
}

.contact-details h4 {
    font-size: 0.95rem;
}

.business-hours-card {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
}

.business-hours-card h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.social-connect h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.form-group label {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    font-size: 0.9rem;
}

.contact-form {
    gap: 0.8rem;
}

.form-row {
    gap: 0.8rem;
}

/* Crane Filters - Compact */
.crane-filters {
    margin-bottom: 1.5rem;
}

.filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Feature Boxes - Smaller */
.feature-box {
    padding: 1rem;
    gap: 0.6rem;
}

.feature-box h4 {
    font-size: 0.9rem;
}

.feature-box p {
    font-size: 0.75rem;
}

.feature-box svg {
    width: 28px;
    height: 28px;
}

/* Image Badge - Smaller */
.image-badge {
    padding: 15px;
    bottom: 15px;
    right: 15px;
}

.badge-number {
    font-size: 2rem;
}

.badge-text {
    font-size: 0.75rem;
}

/* Hours Items - Compact */
.hours-item {
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

/* Smart Responsive Heights */
@media (min-width: 1024px) and (max-height: 900px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .hero {
        padding: 80px 0 50px 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 3.2rem);
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Extra compact for small screens */
@media (max-width: 968px) {
    .section-padding {
        padding: 35px 0;
    }
    
    .services-grid,
    .cranes-grid,
    .gallery-grid {
        gap: 1.2rem;
    }
}


/* ===================================
   GIF Logo & Preloader Styles
   =================================== */

.preloader-gif {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(139, 92, 246, 0.6);
    }
}

.logo-gif {
    width: 50px !important;
    height: 50px !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo:hover .logo-gif {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.footer-logo-gif {
    width: 45px !important;
    height: 45px !important;
    border-radius: 10px;
}

.footer-logo:hover .footer-logo-gif {
    transform: scale(1.05) rotate(10deg);
}

/* Remove old icon styles */
.preloader-icon {
    display: none;
}

.logo-icon {
    display: none;
}


/* ===================================
   ENHANCED COLORFUL CARD BACKGROUNDS
   =================================== */

/* Service Cards - More Visible Gradient Backgrounds */
.service-card[data-service="rental"] {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.service-card[data-service="rental"]:hover {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.18) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-color: rgba(102, 126, 234, 0.4);
}

.service-card[data-service="lifting"] {
    background: linear-gradient(145deg, rgba(240, 147, 251, 0.12) 0%, rgba(245, 87, 108, 0.08) 100%);
    border: 2px solid rgba(240, 147, 251, 0.2);
}

.service-card[data-service="lifting"]:hover {
    background: linear-gradient(145deg, rgba(240, 147, 251, 0.18) 0%, rgba(245, 87, 108, 0.12) 100%);
    border-color: rgba(240, 147, 251, 0.4);
}

.service-card[data-service="operators"] {
    background: linear-gradient(145deg, rgba(79, 172, 254, 0.12) 0%, rgba(0, 242, 254, 0.08) 100%);
    border: 2px solid rgba(79, 172, 254, 0.2);
}

.service-card[data-service="operators"]:hover {
    background: linear-gradient(145deg, rgba(79, 172, 254, 0.18) 0%, rgba(0, 242, 254, 0.12) 100%);
    border-color: rgba(79, 172, 254, 0.4);
}

.service-card[data-service="support"] {
    background: linear-gradient(145deg, rgba(67, 233, 123, 0.12) 0%, rgba(56, 249, 215, 0.08) 100%);
    border: 2px solid rgba(67, 233, 123, 0.2);
}

.service-card[data-service="support"]:hover {
    background: linear-gradient(145deg, rgba(67, 233, 123, 0.18) 0%, rgba(56, 249, 215, 0.12) 100%);
    border-color: rgba(67, 233, 123, 0.4);
}

.service-card[data-service="maintenance"] {
    background: linear-gradient(145deg, rgba(250, 112, 154, 0.12) 0%, rgba(254, 225, 64, 0.08) 100%);
    border: 2px solid rgba(250, 112, 154, 0.2);
}

.service-card[data-service="maintenance"]:hover {
    background: linear-gradient(145deg, rgba(250, 112, 154, 0.18) 0%, rgba(254, 225, 64, 0.12) 100%);
    border-color: rgba(250, 112, 154, 0.4);
}

.service-card[data-service="planning"] {
    background: linear-gradient(145deg, rgba(48, 207, 208, 0.12) 0%, rgba(51, 8, 103, 0.08) 100%);
    border: 2px solid rgba(48, 207, 208, 0.2);
}

.service-card[data-service="planning"]:hover {
    background: linear-gradient(145deg, rgba(48, 207, 208, 0.18) 0%, rgba(51, 8, 103, 0.12) 100%);
    border-color: rgba(48, 207, 208, 0.4);
}

/* Crane Cards - More Visible Colors */
.crane-card[data-category="light"] {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.1) 0%, rgba(248, 250, 252, 1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.25);
}

.crane-card[data-category="light"]:hover {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.15) 0%, rgba(248, 250, 252, 1) 100%);
}

.crane-card[data-category="medium"] {
    background: linear-gradient(145deg, rgba(240, 147, 251, 0.1) 0%, rgba(248, 250, 252, 1) 100%);
    border: 2px solid rgba(240, 147, 251, 0.25);
}

.crane-card[data-category="medium"]:hover {
    background: linear-gradient(145deg, rgba(240, 147, 251, 0.15) 0%, rgba(248, 250, 252, 1) 100%);
}

.crane-card[data-category="heavy"] {
    background: linear-gradient(145deg, rgba(67, 233, 123, 0.1) 0%, rgba(248, 250, 252, 1) 100%);
    border: 2px solid rgba(67, 233, 123, 0.25);
}

.crane-card[data-category="heavy"]:hover {
    background: linear-gradient(145deg, rgba(67, 233, 123, 0.15) 0%, rgba(248, 250, 252, 1) 100%);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .crane-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
}

/* Contact Cards - More Visible Gradient */
.contact-info-card {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.contact-form-card {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-form-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
}

/* Feature Boxes - More Visible */
.feature-box:first-child {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.1) 100%);
    border: 2px solid rgba(79, 172, 254, 0.25);
}

.feature-box:last-child {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15) 0%, rgba(56, 249, 215, 0.1) 100%);
    border: 2px solid rgba(67, 233, 123, 0.25);
}

/* Contact Item Boxes - More Visible */
.contact-item-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.contact-item-box:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-color: rgba(59, 130, 246, 0.35);
}

/* Business Hours Card - More Visible */
.business-hours-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

/* Gallery Items - Colorful Border */
.gallery-item {
    border: 2px solid rgba(59, 130, 246, 0.15);
}

.gallery-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
}


/* ===================================
   IMMEDIATE LOAD - No Scroll Animations
   =================================== */

/* All cards visible immediately */
.service-card,
.crane-card,
.gallery-item,
.contact-item-box,
.stat-item,
.feature-box {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

/* Remove any fade-in delays */
.fade-in,
.fade-in-delay,
.slide-in-left,
.slide-in-right,
.slide-in-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Instant visibility for all elements */
* {
    animation-delay: 0s !important;
}

/* Keep only hover animations active */
.service-card:hover,
.crane-card:hover,
.gallery-item:hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===================================
   PROFESSIONAL CONTACT SECTION - Modern Layout
   =================================== */

/* Quick Contact Grid - 4 Cards in Row */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.qc-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(59, 130, 246, 0.15);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.qc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.qc-card:hover::before {
    opacity: 1;
}

[data-theme="dark"] .qc-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.qc-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.4);
}

.qc-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.qc-card:hover .qc-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.phone-card .qc-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.email-card .qc-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.whatsapp-card .qc-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.location-card .qc-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.qc-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.qc-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.qc-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    position: relative;
    z-index: 1;
}

/* Contact Main Row - Form + Sidebar */
.contact-main-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.12);
}

[data-theme="dark"] .contact-form-wrapper {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Form Grid - 2 Columns */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.6rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-field label svg {
    color: var(--accent-primary);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 16px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    transition: all 0.3s;
}

[data-theme="dark"] .form-field input,
[data-theme="dark"] .form-field select,
[data-theme="dark"] .form-field textarea {
    background: rgba(30, 41, 59, 0.6);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background: #ffffff;
}

[data-theme="dark"] .form-field input:focus,
[data-theme="dark"] .form-field select:focus,
[data-theme="dark"] .form-field textarea:focus {
    background: var(--bg-secondary);
}

.form-field textarea {
    resize: vertical;
    min-height: 90px;
}

/* Modern Submit Button */
.btn-submit-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    margin-top: 1rem;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
}

.btn-submit-modern svg {
    transition: transform 0.3s;
}

.btn-submit-modern:hover svg {
    transform: translateX(4px);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.8rem;
    border-radius: 16px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s;
}

[data-theme="dark"] .info-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hours Grid */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-primary);
}

.hour-row.emergency {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.1) 0%, rgba(56, 249, 215, 0.1) 100%);
    border-left-color: #10b981;
}

.hour-row span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hour-row strong {
    color: var(--accent-primary);
    font-size: 0.95rem;
    font-weight: 800;
}

.hour-row.emergency strong {
    color: #10b981;
}

/* Social Buttons */
.social-btns {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    color: white;
}

.wa-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.phone-btn {
    background: var(--accent-gradient);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

/* Responsive Contact Section */
@media (max-width: 1200px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-main-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.8rem;
    }
}


/* ===================================
   COMPLETE NEW CONTACT SECTION DESIGN
   =================================== */

/* Contact Methods Row - 3 Cards */
.contact-methods-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,1) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .contact-method-card {
    background: linear-gradient(145deg, rgba(30,41,59,0.9) 0%, rgba(15,23,42,0.95) 100%);
}

.contact-method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.contact-method-card:hover::before {
    opacity: 1;
}

.contact-method-card > * {
    position: relative;
    z-index: 1;
}

.contact-method-card.phone {
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-method-card.phone:hover {
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
}

.contact-method-card.whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-method-card.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.6);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.3);
}

.contact-method-card.email {
    border-color: rgba(240, 147, 251, 0.3);
}

.contact-method-card.email:hover {
    border-color: rgba(240, 147, 251, 0.6);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(240, 147, 251, 0.3);
}

.method-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.5s;
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.4);
}

.contact-method-card.phone .method-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-method-card.whatsapp .method-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

.contact-method-card.email .method-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 35px rgba(240, 147, 251, 0.4);
}

.contact-method-card:hover .method-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
}

.contact-method-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.method-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.8rem;
}

.method-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Contact Content Grid - Form + Info */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
}

/* Contact Form Container */
.contact-form-container {
    width: 100%;
}

.form-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] .form-card {
    background: linear-gradient(145deg, rgba(30,41,59,0.95) 0%, rgba(15,23,42,0.98) 100%);
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.15);
}

.header-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.form-card-header h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-card-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Modern Form Columns */
.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Input Groups with Icons */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group.full {
    grid-column: 1 / -1;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--accent-primary);
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    transition: all 0.3s;
}

[data-theme="dark"] .input-group input,
[data-theme="dark"] .input-group select,
[data-theme="dark"] .input-group textarea {
    background: rgba(30, 41, 59, 0.5);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background: #ffffff;
    padding-left: 50px;
}

[data-theme="dark"] .input-group input:focus,
[data-theme="dark"] .input-group select:focus,
[data-theme="dark"] .input-group textarea:focus {
    background: rgba(30, 41, 59, 0.8);
}

.input-group input:focus + .input-icon,
.input-group select:focus + .input-icon,
.input-group textarea:focus + .input-icon {
    transform: scale(1.2);
    color: var(--accent-primary);
}

.input-group textarea {
    resize: vertical;
    min-height: 90px;
    padding-top: 14px;
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.4);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.form-submit-btn:hover::before {
    transform: translateX(100%);
}

.form-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6);
}

.form-submit-btn svg {
    transition: transform 0.3s;
}

.form-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Contact Info Cards Sidebar */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-mini-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
}

[data-theme="dark"] .info-mini-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
}

.info-mini-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

.mini-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s;
}

.info-mini-card:nth-child(2) .mini-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.info-mini-card:nth-child(3) .mini-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.info-mini-card:hover .mini-icon {
    transform: scale(1.1) rotate(10deg);
}

.mini-content h5 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.mini-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.highlight-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* CTA Banner */
.cta-banner {
    background: var(--accent-gradient);
    padding: 2rem;
    border-radius: 18px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.banner-content svg {
    flex-shrink: 0;
}

.banner-content h4 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.banner-content p {
    font-size: 0.9rem;
    opacity: 0.95;
}

.banner-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: white;
    color: var(--accent-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Contact Section */
@media (max-width: 1200px) {
    .contact-methods-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .cta-banner {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .contact-methods-row {
        grid-template-columns: 1fr;
    }
    
    .form-columns {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
}

/* Remove old contact styles */
.contact-wrapper,
.contact-info-section,
.contact-form-section,
.contact-info-card:not(.form-card),
.contact-form-card,
.contact-items,
.contact-item-box,
.business-hours-card,
.social-connect {
    display: none !important;
}


/* ===================================
   ULTRA COMPACT & SMART CONTACT DESIGN
   =================================== */

/* Contact Methods - Smaller Cards, Equal Height */
.contact-methods-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,1) 100%);
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

[data-theme="dark"] .contact-method-card {
    background: linear-gradient(145deg, rgba(30,41,59,0.9) 0%, rgba(15,23,42,0.95) 100%);
}

.contact-method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.contact-method-card.phone::before {
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.15), transparent 70%);
}

.contact-method-card.whatsapp::before {
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.15), transparent 70%);
}

.contact-method-card.email::before {
    background: radial-gradient(circle at center, rgba(240, 147, 251, 0.15), transparent 70%);
}

.contact-method-card:hover::before {
    opacity: 1;
}

.contact-method-card > * {
    position: relative;
    z-index: 1;
}

.contact-method-card.phone {
    border-color: rgba(102, 126, 234, 0.25);
}

.contact-method-card.phone:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.contact-method-card.whatsapp {
    border-color: rgba(37, 211, 102, 0.25);
}

.contact-method-card.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
}

.contact-method-card.email {
    border-color: rgba(240, 147, 251, 0.25);
}

.contact-method-card.email:hover {
    border-color: rgba(240, 147, 251, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.25);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    color: white;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-method-card.phone .method-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-method-card.whatsapp .method-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-method-card.email .method-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1);
}

.contact-method-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.method-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.method-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Contact Content Grid - Compact */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 1.5rem;
}

/* Form Card - Compact */
.form-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.12);
}

[data-theme="dark"] .form-card {
    background: linear-gradient(145deg, rgba(30,41,59,0.95) 0%, rgba(15,23,42,0.98) 100%);
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.12);
}

.header-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.form-card-header h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-card-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Form Columns - Compact */
.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Input Groups - Compact */
.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    pointer-events: none;
    z-index: 2;
}

.input-group.full .input-icon {
    top: 18px;
    transform: translateY(0);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 11px 14px 11px 44px;
    border: 2px solid rgba(59, 130, 246, 0.18);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-primary);
    transition: all 0.3s;
}

[data-theme="dark"] .input-group input,
[data-theme="dark"] .input-group select,
[data-theme="dark"] .input-group textarea {
    background: rgba(30, 41, 59, 0.4);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
    background: #ffffff;
}

[data-theme="dark"] .input-group input:focus,
[data-theme="dark"] .input-group select:focus,
[data-theme="dark"] .input-group textarea:focus {
    background: rgba(30, 41, 59, 0.7);
}

.input-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Submit Button - Compact */
.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    margin-top: 0.8rem;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.5);
}

/* Info Mini Cards - Compact & Equal Height */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-mini-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(139, 92, 246, 0.06) 100%);
    padding: 1.2rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid rgba(102, 126, 234, 0.22);
    transition: all 0.3s;
    min-height: 85px;
}

[data-theme="dark"] .info-mini-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.info-mini-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.mini-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-mini-card:nth-child(2) .mini-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.info-mini-card:nth-child(3) .mini-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.mini-content h5 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.mini-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.highlight-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* CTA Banner - Compact */
.cta-banner {
    background: var(--accent-gradient);
    padding: 1.5rem;
    border-radius: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35);
    min-height: 140px;
    justify-content: center;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banner-content svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.banner-content h4 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.banner-content p {
    font-size: 0.85rem;
}

.banner-btn {
    padding: 11px 24px;
    font-size: 0.95rem;
}

/* Remove extra padding from contact section */
.contact.section-padding {
    padding: 45px 0;
}


/* ===================================
   PREMIUM PROFESSIONAL CONTACT SECTION
   =================================== */

/* Remove old contact wrapper styles */
.contact-wrapper,
.contact-info-section,
.contact-form-section {
    display: none !important;
}

/* Contact Methods Row - Premium 3 Cards with Equal Height */
.contact-methods-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 2.2rem 1.8rem;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 3px solid;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

[data-theme="dark"] .contact-method-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

/* Animated gradient background */
.contact-method-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        transparent
    );
    animation: rotateGradient 8s linear infinite;
    z-index: 0;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-method-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 21px;
    z-index: 0;
}

[data-theme="dark"] .contact-method-card::after {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.contact-method-card > * {
    position: relative;
    z-index: 1;
}

.contact-method-card.phone {
    border-color: #667eea;
}

.contact-method-card.phone:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.35);
}

.contact-method-card.whatsapp {
    border-color: #25D366;
}

.contact-method-card.whatsapp:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(37, 211, 102, 0.35);
}

.contact-method-card.email {
    border-color: #f093fb;
}

.contact-method-card.email:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(240, 147, 251, 0.35);
}

.method-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: white;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.contact-method-card.phone .method-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.45);
}

.contact-method-card.whatsapp .method-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.45);
}

.contact-method-card.email .method-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 15px 45px rgba(240, 147, 251, 0.45);
}

.method-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: inherit;
    border-radius: inherit;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.15) rotate(-10deg);
}

.contact-method-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.method-value {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.method-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    border: 2px solid rgba(59, 130, 246, 0.25);
}

/* Contact Content Grid - Premium Layout */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Form Card - Premium Glass Design */
.form-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
    padding: 2.5rem;
    border-radius: 28px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .form-card {
    background: linear-gradient(145deg, rgba(30,41,59,0.98) 0%, rgba(15,23,42,0.98) 100%);
}

.form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    animation: formGlow 10s linear infinite;
    z-index: 0;
}

@keyframes formGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-card > * {
    position: relative;
    z-index: 1;
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary)) 1;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    animation: headerIconPulse 3s ease-in-out infinite;
}

@keyframes headerIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-card-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.form-card-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Form Columns */
.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Premium Input Groups */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group.full {
    grid-column: 1 / -1;
    margin-top: 0.3rem;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    pointer-events: none;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.input-group.full .input-icon {
    top: 18px;
    transform: translateY(0);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 13px 16px 13px 48px;
    border: 2px solid rgba(59, 130, 246, 0.25);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.6) 0%, rgba(248,250,252,0.8) 100%);
    color: var(--text-primary);
    transition: all 0.4s;
    font-weight: 500;
}

[data-theme="dark"] .input-group input,
[data-theme="dark"] .input-group select,
[data-theme="dark"] .input-group textarea {
    background: linear-gradient(145deg, rgba(30,41,59,0.5) 0%, rgba(15,23,42,0.7) 100%);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.15), 0 8px 25px rgba(59, 130, 246, 0.2);
    background: #ffffff;
    transform: translateY(-2px);
}

[data-theme="dark"] .input-group input:focus,
[data-theme="dark"] .input-group select:focus,
[data-theme="dark"] .input-group textarea:focus {
    background: rgba(30, 41, 59, 0.9);
}

.input-group input:focus ~ .input-icon,
.input-group select:focus ~ .input-icon,
.input-group textarea:focus ~ .input-icon {
    transform: translateY(-50%) scale(1.2) rotate(10deg);
}

.input-group.full input:focus ~ .input-icon,
.input-group.full textarea:focus ~ .input-icon {
    transform: translateY(0) scale(1.2) rotate(10deg);
}

.input-group textarea {
    resize: vertical;
    min-height: 85px;
    padding-top: 13px;
}

/* Premium Submit Button with Glow */
.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.45);
    margin-top: 1.2rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s;
}

.form-submit-btn:hover::before {
    transform: translateX(100%);
}

.form-submit-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--accent-gradient);
    border-radius: inherit;
    opacity: 0;
    filter: blur(15px);
    z-index: -1;
    transition: opacity 0.5s;
}

.form-submit-btn:hover::after {
    opacity: 0.8;
}

.form-submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.6);
}

.form-submit-btn svg {
    transition: transform 0.4s;
}

.form-submit-btn:hover svg {
    transform: translateX(6px) scale(1.1);
}

/* Info Cards Sidebar - Equal Heights */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

.info-mini-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    padding: 1.5rem 1.3rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex: 1;
    min-height: 95px;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .info-mini-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.18) 0%, rgba(139, 92, 246, 0.12) 100%);
}

.info-mini-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transition: width 0.4s;
}

.info-mini-card:nth-child(2)::before {
    background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
}

.info-mini-card:nth-child(3)::before {
    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
}

.info-mini-card:hover::before {
    width: 100%;
    opacity: 0.15;
}

.info-mini-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.5);
}

.mini-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.info-mini-card:nth-child(1) .mini-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.info-mini-card:nth-child(2) .mini-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

.info-mini-card:nth-child(3) .mini-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.info-mini-card:hover .mini-icon {
    transform: scale(1.15) rotate(15deg);
}

.mini-content {
    text-align: left;
    flex: 1;
    position: relative;
    z-index: 1;
}

.mini-content h5 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.mini-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.highlight-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    display: inline-block;
    padding: 3px 10px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

/* CTA Banner - Premium Design with Equal Height */
.cta-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 1.8rem;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 165px;
    justify-content: space-between;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 12px,
        rgba(255,255,255,0.05) 12px,
        rgba(255,255,255,0.05) 24px
    );
    animation: bannerPattern 20s linear infinite;
}

@keyframes bannerPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 24px); }
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.banner-content svg {
    flex-shrink: 0;
    animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

.banner-content h4 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 0.9rem;
    opacity: 0.95;
}

.banner-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.banner-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.banner-btn:hover::before {
    transform: translateX(100%);
}

.banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Responsive - Keep Equal Heights */
@media (max-width: 1200px) {
    .contact-methods-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .cta-banner {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        min-height: auto;
    }
    
    .banner-btn {
        width: auto;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .contact-methods-row {
        grid-template-columns: 1fr;
    }
    
    .contact-method-card {
        min-height: 200px;
    }
    
    .form-columns {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
    }
}


/* ===================================
   SMART COMPACT CONTACT DESIGN
   =================================== */

.contact.section-padding {
    padding: 40px 0;
}

/* Top 3 Contact Cards - Compact & Smart */
.top-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.top-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.8rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 3px solid;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .top-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.top-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.phone-card {
    border-color: #667eea;
}

.phone-card::before {
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.12), transparent 70%);
}

.whatsapp-card {
    border-color: #25D366;
}

.whatsapp-card::before {
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.12), transparent 70%);
}

.email-card {
    border-color: #f093fb;
}

.email-card::before {
    background: radial-gradient(circle at center, rgba(240, 147, 251, 0.12), transparent 70%);
}

.top-card:hover::before {
    opacity: 1;
}

.top-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

.top-card > * {
    position: relative;
    z-index: 1;
}

.top-card-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    transition: all 0.4s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.phone-card .top-card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.whatsapp-card .top-card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.email-card .top-card-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.top-card:hover .top-card-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.top-card h4 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.6rem;
}

.card-badge {
    display: inline-block;
    padding: 5px 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    border: 2px solid rgba(59, 130, 246, 0.25);
}

/* Bottom Row - Form + Info Cards */
.bottom-contact-row {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 1.5rem;
}

/* Compact Form Card */
.compact-form-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 24px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 12px 45px rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] .compact-form-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.compact-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.15);
}

.form-icon-badge {
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.compact-form-header h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compact-form-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Smart Form Grid - 2x2 + Full Width */
.smart-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.smart-input {
    position: relative;
    display: flex;
    align-items: center;
}

.smart-input.full {
    grid-column: 1 / -1;
}

.smart-input svg {
    position: absolute;
    left: 14px;
    color: var(--accent-primary);
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s;
}

.smart-input input,
.smart-input select,
.smart-input textarea {
    width: 100%;
    padding: 11px 14px 11px 42px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
    transition: all 0.3s;
    font-weight: 500;
}

[data-theme="dark"] .smart-input input,
[data-theme="dark"] .smart-input select,
[data-theme="dark"] .smart-input textarea {
    background: rgba(30, 41, 59, 0.4);
}

.smart-input input:focus,
.smart-input select:focus,
.smart-input textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
    background: #ffffff;
}

[data-theme="dark"] .smart-input input:focus,
[data-theme="dark"] .smart-input select:focus,
[data-theme="dark"] .smart-input textarea:focus {
    background: rgba(30, 41, 59, 0.7);
}

.smart-input input:focus ~ svg,
.smart-input select:focus ~ svg,
.smart-input textarea:focus ~ svg {
    transform: scale(1.15);
}

.smart-input textarea {
    resize: vertical;
    min-height: 70px;
}

/* Smart Submit Button */
.smart-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 32px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.4);
    margin-top: 0.8rem;
}

.smart-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(59, 130, 246, 0.55);
}

.smart-submit-btn svg {
    transition: transform 0.3s;
}

.smart-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Side Info Cards - Compact & Equal */
.side-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(139, 92, 246, 0.08));
    padding: 1.3rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid rgba(102, 126, 234, 0.25);
    transition: all 0.3s;
    flex: 1;
    min-height: 95px;
    position: relative;
}

[data-theme="dark"] .side-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.18), rgba(139, 92, 246, 0.12));
}

.side-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 18px 0 0 18px;
    transition: width 0.3s;
}

.hours-card::after {
    background: linear-gradient(180deg, #667eea, #764ba2);
}

.location-card::after {
    background: linear-gradient(180deg, #f093fb, #f5576c);
}

.certified-card::after {
    background: linear-gradient(180deg, #4facfe, #00f2fe);
}

.side-card:hover::after {
    width: 100%;
    opacity: 0.1;
}

.side-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.2);
}

.side-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s;
}

.hours-card .side-card-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.location-card .side-card-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.certified-card .side-card-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.side-card:hover .side-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.side-card-content {
    flex: 1;
}

.side-card-content h5 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.side-card-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.info-highlight {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-primary);
    display: inline-block;
    padding: 3px 10px;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 10px;
}

/* Responsive Contact */
@media (max-width: 1200px) {
    .top-contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bottom-contact-row {
        grid-template-columns: 1fr;
    }
    
    .side-info-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .top-contact-cards {
        grid-template-columns: 1fr;
    }
    
    .smart-form-grid {
        grid-template-columns: 1fr;
    }
    
    .side-info-cards {
        grid-template-columns: 1fr;
    }
    
    .top-card {
        min-height: 180px;
    }
}


/* ===================================
   HIDE CRANE FILTERS
   =================================== */

.crane-filters {
    display: none !important;
}

/* Adjust cranes section spacing without filters */
.cranes .section-header-center {
    margin-bottom: 2rem;
}



/* ===================================
   NEW HERO OVERLAY EFFECTS - Advanced Design
   =================================== */

/* Override hero overlay with new design */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.15), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.15), transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

/* Animated gradient overlay option 2 */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(59, 130, 246, 0.05) 25%,
        transparent 50%,
        rgba(139, 92, 246, 0.05) 75%,
        transparent 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
    pointer-events: none;
}

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

/* Spotlight effect */
.hero .hero-content::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    z-index: -1;
    animation: spotlight 10s ease-in-out infinite;
}

@keyframes spotlight {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) translateY(10%) scale(1.1);
        opacity: 0.7;
    }
}



/* ===================================
   SMART SERVICE CARDS - Center Aligned Premium Design
   =================================== */

/* Override service cards with centered design */
.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(59, 130, 246, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
}

[data-theme="dark"] .service-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 24px 24px 0 0;
}

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

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.3);
}

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

/* Service Icon Wrapper - Center Aligned */
.service-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

/* Service Icon - Larger & More Prominent */
.service-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: inherit;
    border-radius: inherit;
    opacity: 0.4;
    filter: blur(12px);
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.6);
}

/* Different colors for each service icon */
.service-card[data-service="rental"] {
    border-color: rgba(102, 126, 234, 0.25);
}

.service-card[data-service="rental"]:hover {
    border-color: rgba(102, 126, 234, 0.5);
}

.service-card[data-service="rental"] .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card[data-service="lifting"] {
    border-color: rgba(240, 147, 251, 0.25);
}

.service-card[data-service="lifting"]:hover {
    border-color: rgba(240, 147, 251, 0.5);
}

.service-card[data-service="lifting"] .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 12px 40px rgba(240, 147, 251, 0.4);
}

.service-card[data-service="operators"] {
    border-color: rgba(79, 172, 254, 0.25);
}

.service-card[data-service="operators"]:hover {
    border-color: rgba(79, 172, 254, 0.5);
}

.service-card[data-service="operators"] .service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 12px 40px rgba(79, 172, 254, 0.4);
}

.service-card[data-service="support"] {
    border-color: rgba(67, 233, 123, 0.25);
}

.service-card[data-service="support"]:hover {
    border-color: rgba(67, 233, 123, 0.5);
}

.service-card[data-service="support"] .service-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 12px 40px rgba(67, 233, 123, 0.4);
}

.service-card[data-service="maintenance"] {
    border-color: rgba(250, 112, 154, 0.25);
}

.service-card[data-service="maintenance"]:hover {
    border-color: rgba(250, 112, 154, 0.5);
}

.service-card[data-service="maintenance"] .service-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 12px 40px rgba(250, 112, 154, 0.4);
}

.service-card[data-service="planning"] {
    border-color: rgba(48, 207, 208, 0.25);
}

.service-card[data-service="planning"]:hover {
    border-color: rgba(48, 207, 208, 0.5);
}

.service-card[data-service="planning"] .service-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 12px 40px rgba(48, 207, 208, 0.4);
}

/* Service Number - Centered Above Icon */
.service-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.2;
}

/* Service Title - Center Aligned */
.service-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

/* Service Description - Center Aligned */
.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Service Features - Center Aligned List */
.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.6rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s;
    width: fit-content;
    min-width: 70%;
}

.service-features li:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.service-features svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* Service Link - Center Aligned with Arrow */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    background: var(--accent-gradient);
    text-decoration: none;
    font-weight: 800;
    padding: 10px 28px;
    border-radius: 25px;
    transition: all 0.4s;
    margin-top: 0.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-link:hover {
    gap: 14px;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.service-link svg {
    transition: transform 0.3s;
}

.service-link:hover svg {
    transform: translateX(5px) scale(1.1);
}


/* ===================================
   SMALL COMPACT SERVICE CARDS - Premium Design
   =================================== */

/* Override with compact design */
.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.5rem 1.2rem;
    border-radius: 18px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

[data-theme="dark"] .service-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

/* Service Icon Wrapper - Compact */
.service-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.3rem;
}

/* Service Number - Small Badge Style */
.service-number {
    font-size: 0.8rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 3px 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    line-height: 1;
    opacity: 0.8;
}

/* Service Icon - Smaller & Compact */
.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.5);
}

/* Service Title - Compact */
.service-title {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0.7rem;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

/* Service Description - Compact */
.service-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.85rem;
    text-align: center;
}

/* Service Features - Compact Pills */
.service-features {
    list-style: none;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.4rem 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    background: rgba(59, 130, 246, 0.06);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    transition: all 0.3s;
    width: auto;
    max-width: 95%;
}

.service-features li svg {
    width: 14px;
    height: 14px;
}

.service-features li:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.02);
}

/* Service Link - Compact Button */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    background: var(--accent-gradient);
    text-decoration: none;
    font-weight: 800;
    padding: 8px 22px;
    border-radius: 20px;
    transition: all 0.4s;
    margin-top: auto;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    font-size: 0.85rem;
}

.service-link svg {
    width: 16px;
    height: 16px;
}

.service-link:hover {
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}


/* ===================================
   ULTRA SMART SERVICE CARDS - Premium Compact Design
   =================================== */

/* Service Cards - Ultra Smart Design */
.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.8rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

[data-theme="dark"] .service-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(139, 92, 246, 0.08), transparent 65%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

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

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--accent-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::after {
    opacity: 0.3;
}

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

/* Service Icon Wrapper - Icon Only Centered */
.service-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    position: relative;
    width: 100%;
}

/* Service Number - Top Right Corner Badge */
.service-number {
    position: absolute;
    top: -1.2rem;
    right: -1rem;
    font-size: 1rem;
    font-weight: 900;
    background: var(--accent-gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    line-height: 1;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

/* Service Icon - Premium Design */
.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: inherit;
    border-radius: inherit;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 18px 50px rgba(102, 126, 234, 0.6);
}

.service-card:hover .service-icon::before {
    opacity: 0.5;
    filter: blur(15px);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

/* Unique Colors for Each Service */
.service-card[data-service="rental"] {
    border-color: rgba(102, 126, 234, 0.3);
}

.service-card[data-service="rental"]:hover {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

.service-card[data-service="rental"] .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card[data-service="lifting"] {
    border-color: rgba(240, 147, 251, 0.3);
}

.service-card[data-service="lifting"]:hover {
    border-color: rgba(240, 147, 251, 0.6);
    box-shadow: 0 20px 60px rgba(240, 147, 251, 0.25);
}

.service-card[data-service="lifting"] .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-card[data-service="operators"] {
    border-color: rgba(79, 172, 254, 0.3);
}

.service-card[data-service="operators"]:hover {
    border-color: rgba(79, 172, 254, 0.6);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.25);
}

.service-card[data-service="operators"] .service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-card[data-service="support"] {
    border-color: rgba(67, 233, 123, 0.3);
}

.service-card[data-service="support"]:hover {
    border-color: rgba(67, 233, 123, 0.6);
    box-shadow: 0 20px 60px rgba(67, 233, 123, 0.25);
}

.service-card[data-service="support"] .service-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-card[data-service="maintenance"] {
    border-color: rgba(250, 112, 154, 0.3);
}

.service-card[data-service="maintenance"]:hover {
    border-color: rgba(250, 112, 154, 0.6);
    box-shadow: 0 20px 60px rgba(250, 112, 154, 0.25);
}

.service-card[data-service="maintenance"] .service-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-card[data-service="planning"] {
    border-color: rgba(48, 207, 208, 0.3);
}

.service-card[data-service="planning"]:hover {
    border-color: rgba(48, 207, 208, 0.6);
    box-shadow: 0 20px 60px rgba(48, 207, 208, 0.25);
}

.service-card[data-service="planning"] .service-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* Service Title - Compact */
.service-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

/* Service Description - Compact */
.service-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.85rem;
    text-align: center;
}

/* Service Features - Compact Pills */
.service-features {
    list-style: none;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.35rem 0.9rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    background: rgba(59, 130, 246, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    transition: all 0.3s;
    width: fit-content;
}

.service-features li svg {
    width: 13px;
    height: 13px;
}

/* Service Link - Compact Button */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    background: var(--accent-gradient);
    text-decoration: none;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 18px;
    transition: all 0.4s;
    margin-top: auto;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
    font-size: 0.8rem;
}

.service-link svg {
    width: 14px;
    height: 14px;
}

.service-link:hover {
    gap: 10px;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(59, 130, 246, 0.5);
}


/* ===================================
   SIMPLE LARGE NUMBERS - Clean Design
   =================================== */

/* Service Icon Wrapper - Back to Original Layout */
.service-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

/* Service Number - Large Simple Corner Number */
.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    opacity: 0.08;
    position: relative;
    background: none;
    border: none;
    padding: 0;
}

/* Service Icon - Left Side */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.4);
}

.service-icon svg {
    width: 34px;
    height: 34px;
}

/* Remove service link styles */
.service-link {
    display: none !important;
}

/* Adjust card height without button */
.service-card {
    min-height: 260px;
}


/* ===================================
   FIX SERVICE CARDS - Centered Icon & Visible Numbers
   =================================== */

/* Service Icon Wrapper - Center Icon with Number on Top */
.service-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
}

/* Service Number - Large Visible Number at Top */
.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 0.8;
    opacity: 0.12;
    position: absolute;
    top: -35px;
    right: 10px;
    z-index: 0;
    background: none;
    border: none;
    padding: 0;
}

/* Service Icon - Centered */
.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: inherit;
    border-radius: inherit;
    opacity: 0.35;
    filter: blur(12px);
    z-index: -1;
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 20px 55px rgba(102, 126, 234, 0.6);
}


/* ===================================
   PREMIUM SMART FOOTER DESIGN
   =================================== */

/* Footer - Modern Dark Design */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary)) 1;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(59, 130, 246, 0.03) 50px,
        rgba(59, 130, 246, 0.03) 100px
    );
    pointer-events: none;
}

[data-theme="dark"] .footer {
    background: linear-gradient(180deg, #000000 0%, #0f172a 100%);
}

/* Footer Content Grid - Compact */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Footer Logo Section - Enhanced */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--accent-primary);
    transition: all 0.3s;
}

.footer-logo:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.footer-logo-gif {
    width: 50px !important;
    height: 50px !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: #f1f5f9;
}

.footer-logo span {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
}

/* Footer About Text */
.footer-about p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Footer Social - Premium Design */
.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.footer-social a:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

/* Footer Section Headings */
.footer-section h4 {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    color: #f1f5f9;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Footer Links - Enhanced */
.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-section ul li a,
.footer-section ul li {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.footer-section ul li a::before {
    content: 'â†’';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--accent-primary);
    font-weight: bold;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
    transform: translateX(8px);
}

/* Footer Contact Items - Icon Style */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.footer-contact li:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.footer-contact svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.footer-contact a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--accent-primary);
}

/* Footer Bottom - Premium Design */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(59, 130, 246, 0.2);
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom p::before {
    content: 'Â©';
    font-size: 1.2rem;
    color: var(--accent-primary);
}

/* Footer Links - Enhanced */
.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

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

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
}


/* ===================================
   COMPACT SMART FOOTER - Light/Dark Theme
   =================================== */

/* Footer - Light Theme by Default */
.footer {
    background: var(--bg-primary);
    border-top: 2px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    position: relative;
}

[data-theme="dark"] .footer {
    background: var(--bg-secondary);
    border-top: 2px solid rgba(59, 130, 246, 0.2);
}

/* Footer Content - Compact Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* Footer Logo - Compact */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-primary);
    transition: all 0.3s;
}

.footer-logo:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(3px);
}

.footer-logo-gif {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px;
}

.footer-logo h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.footer-logo span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Footer About - Compact */
.footer-about p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

/* Footer Social - Compact */
.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Footer Section Headings - Compact */
.footer-section h4 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Footer Links - Compact */
.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-section ul li a,
.footer-section ul li {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.3rem 0;
    font-size: 0.85rem;
}

.footer-section ul li a::before {
    content: 'â†’';
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
    transform: translateX(6px);
}

/* Footer Contact Items - Compact */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    background: rgba(59, 130, 246, 0.04);
    border-radius: 10px;
    transition: all 0.3s;
}

.footer-contact li:hover {
    background: rgba(59, 130, 246, 0.08);
    transform: translateX(4px);
}

.footer-contact svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.footer-contact span,
.footer-contact a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-contact a:hover {
    color: var(--accent-primary);
}

/* Footer Bottom - Compact */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-bottom p {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer Links - Compact */
.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

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

/* Responsive Footer - Compact */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}


/* ===================================
   ULTRA COMPACT FOOTER - Minimal Height
   =================================== */

/* Footer - Super Compact */
.footer {
    background: var(--bg-primary);
    border-top: 2px solid var(--border-color);
    padding: 2rem 0 1rem;
}

[data-theme="dark"] .footer {
    background: var(--bg-secondary);
}

/* Footer Content - 3 Column Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.3fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

/* Footer Logo - Compact */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: rgba(59, 130, 246, 0.06);
    border-radius: 10px;
    border-left: 3px solid var(--accent-primary);
    transition: all 0.3s;
}

.footer-logo:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(3px);
}

.footer-logo-gif {
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px;
}

.footer-logo h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.footer-logo span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Footer About - Compact */
.footer-about p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

/* Footer Social - Compact */
.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Footer Quick Links - 2 Column Grid */
.footer-links-section {
    display: flex;
    flex-direction: column;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.footer-links-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* Footer Section Headings - Compact */
.footer-section h4 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
}

/* Footer Links - Compact */
.footer-section ul li a,
.footer-section ul li {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.25rem 0;
    font-size: 0.8rem;
}

.footer-section ul li a::before {
    content: 'â†’';
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s;
    color: var(--accent-primary);
    font-size: 0.8rem;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

/* Footer Contact - Compact */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.04);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-contact li:hover {
    background: rgba(59, 130, 246, 0.08);
    transform: translateX(3px);
}

.footer-contact svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.footer-contact span,
.footer-contact a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.3;
}

.footer-contact a {
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent-primary);
}

/* Footer Bottom - Ultra Compact */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-bottom p {
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 1.2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

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

/* Responsive Footer - Ultra Compact */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 1.5rem 0 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
        padding-top: 0.8rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
}
