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

/* Note: some older browsers might need additional prefixes */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #e94560;
    --accent-color: #0f3460;
    --text-dark: #2c2c54;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(233, 69, 96, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-secondary: linear-gradient(135deg, #e94560 0%, #c7384f 50%, #a02d3e 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 52, 96, 0.85) 50%, rgba(233, 69, 96, 0.75) 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(15, 52, 96, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(26, 26, 46, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.05); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

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

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

ul {
    list-style: none;
}

/* Premium scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c7384f 0%, #0f3460 100%);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 52, 96, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--bg-white);
    padding: 25px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.cookie-content a:hover {
    color: #ff6b7d;
    text-shadow: 0 0 8px rgba(233, 69, 96, 0.5);
}

.btn-accept {
    background: var(--gradient-secondary);
    color: var(--bg-white);
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-accept:hover {
    background: linear-gradient(135deg, #c7384f 0%, #e94560 50%, #ff6b7d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.6);
}

.btn-accept:active {
    transform: translateY(-1px);
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(233, 69, 96, 0.1);
    transition: all 0.3s ease;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-header:hover::after {
    opacity: 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    position: relative;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-family: 'Segoe UI', sans-serif;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

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

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

.main-nav a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 0 10px var(--secondary-color);
}

.main-nav a:hover::before {
    width: 100%;
}

.main-nav a:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1.5);
}

.main-nav a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--gradient-primary);
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

/* Animated wheel decoration */
.hero-wheel-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.wheel-silhouette {
    position: absolute;
    width: 600px;
    height: 600px;
    opacity: 0.5;
    filter: blur(0.5px);
    mix-blend-mode: screen;
}

.wheel-1 {
    top: -150px;
    right: -100px;
    width: 800px;
    height: 800px;
    opacity: 0.6;
    animation: rotateWheel 40s linear infinite, floatWheel1 15s ease-in-out infinite;
    max-width: 150%;
}

.wheel-2 {
    bottom: -200px;
    left: -150px;
    width: 700px;
    height: 700px;
    opacity: 0.55;
    animation: rotateWheel 35s linear infinite reverse, floatWheel2 18s ease-in-out infinite;
    max-width: 150%;
}

.wheel-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    opacity: 0.35;
    animation: rotateWheel 50s linear infinite, floatWheel3 20s ease-in-out infinite;
    max-width: 100%;
}

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

@keyframes floatWheel1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-30px, 20px) rotate(120deg);
    }
    66% {
        transform: translate(20px, -15px) rotate(240deg);
    }
}

@keyframes floatWheel2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(25px, -25px) rotate(180deg);
    }
}

@keyframes floatWheel3 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
    }
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease-out;
    filter: brightness(0.85) contrast(1.1);
}

.slide.active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 3;
    backdrop-filter: blur(0.5px);
    opacity: 0.85;
}

.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(15, 52, 96, 0.2) 0%, transparent 50%);
    animation: overlayPulse 8s ease-in-out infinite;
}

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

.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--bg-white);
    margin-bottom: 25px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease, glow 3s ease-in-out infinite;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.6);
    animation: lineExpand 1s ease 0.5s both;
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: 100px; opacity: 1; }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 rgba(233, 69, 96, 0); }
    50% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(233, 69, 96, 0.3); }
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    animation: fadeInUp 1s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: var(--gradient-secondary);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    animation: fadeInUp 1.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
    z-index: -1;
}

.btn-primary::after {
    content: '→';
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 350px;
    height: 350px;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.slider-btn:hover::before {
    width: 100px;
    height: 100px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.slider-btn:active {
    transform: scale(1.05);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
    align-items: center;
}

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

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--bg-white);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--bg-white);
    width: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.dot.active::before {
    opacity: 1;
    background: var(--secondary-color);
}

/* Quick Search */
.quick-search {
    background: var(--gradient-primary);
    padding: 80px 0;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
}

.quick-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: searchBackground 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes searchBackground {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

.search-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
}

.search-wrapper h2 {
    color: var(--bg-white);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-form {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-select {
    flex: 1;
    min-width: 220px;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-select:hover {
    border-color: rgba(233, 69, 96, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.2), 0 10px 30px rgba(233, 69, 96, 0.25);
    background: var(--bg-white);
}

.btn-search {
    padding: 18px 50px;
    background: var(--gradient-secondary);
    color: var(--bg-white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
    position: relative;
    overflow: hidden;
}

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

.btn-search:hover::before {
    width: 400px;
    height: 400px;
}

.btn-search:hover {
    background: linear-gradient(135deg, #c7384f 0%, #e94560 50%, #ff6b7d 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
}

.btn-search:active {
    transform: translateY(-1px);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

/* Hero section should have no padding - it's full viewport height */
.hero-section {
    padding: 0 !important;
    margin-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-header p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 750px;
    margin: 35px auto 0;
    line-height: 1.8;
    font-weight: 400;
}

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

/* Featured Vehicles */
.featured-vehicles {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.featured-vehicles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(233, 69, 96, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(15, 52, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.vehicle-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, rgba(15, 52, 96, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

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

.vehicle-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.25);
    border-color: rgba(233, 69, 96, 0.3);
}

.vehicle-image {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    overflow: hidden;
}

.vehicle-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-image::after {
    background: linear-gradient(180deg, transparent 0%, rgba(233, 69, 96, 0.1) 100%);
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-new,
.badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-new {
    background: var(--gradient-secondary);
}

.badge-featured {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.vehicle-info {
    padding: 30px;
    position: relative;
    z-index: 2;
    background: var(--bg-white);
}

.vehicle-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.vehicle-price {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

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

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 30%, rgba(15, 52, 96, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(233, 69, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.accordion-wrapper {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: 2px solid rgba(233, 69, 96, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--bg-white);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-secondary);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.accordion-item.active::before {
    transform: scaleY(1);
    transform-origin: top;
}

.accordion-item.active {
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateX(5px);
}

.accordion-header {
    width: 100%;
    padding: 30px 35px;
    background: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
    letter-spacing: -0.5px;
}

.accordion-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: width 0.4s ease;
}

.accordion-item.active .accordion-header::after {
    width: 100%;
}

.accordion-header:hover {
    background: linear-gradient(90deg, rgba(233, 69, 96, 0.05) 0%, transparent 100%);
    padding-left: 40px;
}

.accordion-icon {
    font-size: 32px;
    font-weight: 300;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
    color: var(--secondary-color);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--gradient-secondary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 600px;
}

.accordion-inner {
    padding: 0 35px 30px;
}

.accordion-inner p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
}

.accordion-inner ul {
    list-style: none;
    padding-left: 0;
    color: var(--text-light);
}

.accordion-inner li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.accordion-inner li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

/* Why Choose Us */
.why-choose {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: featureBackground 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes featureBackground {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

.why-choose .section-header h2 {
    color: var(--bg-white) !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.2);
    -webkit-text-fill-color: var(--bg-white) !important;
    background: none !important;
}

.why-choose .section-header p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.why-choose .section-header::before {
    background: var(--gradient-secondary) !important;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.6) !important;
}

.why-choose .section-header h2::after {
    background: var(--gradient-secondary) !important;
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.5) !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 45px 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.3);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(15, 52, 96, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    filter: blur(10px);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.5;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(233, 69, 96, 0.5);
}

.feature-icon img {
    width: 55px;
    height: 55px;
    transition: var(--transition);
    object-fit: contain;
}

.feature-icon svg {
    width: 55px;
    height: 55px;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 24px;
    color: var(--bg-white);
    margin-bottom: 18px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: testimonialBackground 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes testimonialBackground {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.testimonials .section-header h2 {
    color: var(--bg-white) !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.2);
    -webkit-text-fill-color: var(--bg-white) !important;
    background: none !important;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.testimonials .section-header::before {
    background: var(--gradient-secondary) !important;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.6) !important;
}

.testimonials .section-header h2::after {
    background: var(--gradient-secondary) !important;
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.5) !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(233, 69, 96, 0.2);
    font-weight: 900;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover::before {
    opacity: 1;
    top: -30px;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.2);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.about-text h2 {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.5);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(15, 52, 96, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 35px 80px rgba(233, 69, 96, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(15, 52, 96, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.contact-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(233, 69, 96, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.contact-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.15);
    border-color: rgba(233, 69, 96, 0.3);
}

.contact-item h3 {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 15px;
}

.contact-item a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-item a:hover {
    color: #ff6b7d;
    text-shadow: 0 0 8px rgba(233, 69, 96, 0.3);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.02) 0%, rgba(15, 52, 96, 0.02) 100%);
    opacity: 0;
    transition: var(--transition);
}

.contact-form-wrapper:hover::before {
    opacity: 1;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid rgba(233, 69, 96, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1), 0 10px 30px rgba(233, 69, 96, 0.15);
    background: var(--bg-white);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    margin-top: 10px;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    color: var(--bg-white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

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

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section li {
    transition: var(--transition-fast);
}

.footer-section li:hover {
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 35px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Policy Pages Styles */
.policy-page {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.policy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 52, 96, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.policy-content {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 70px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.1);
    position: relative;
    z-index: 1;
}

.policy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 25px 0 0 25px;
}

.policy-content h1 {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 20px;
}

.policy-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.policy-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 20px;
}

.policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.policy-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.policy-content p {
    margin-bottom: 25px;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 16px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 25px;
    padding-left: 35px;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 12px;
    line-height: 1.9;
    position: relative;
    font-size: 16px;
}

.policy-content ul li::marker {
    color: var(--secondary-color);
    font-weight: 700;
}

.policy-content a {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    transition: var(--transition-fast);
}

.policy-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

.policy-content a:hover::after {
    width: 100%;
}

.policy-content a:hover {
    color: #ff6b7d;
}

.policy-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, rgba(15, 52, 96, 0.05) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    display: inline-block;
}

/* Thanks Page */
.thanks-page {
    padding: 150px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.thanks-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(233, 69, 96, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 30% 70%, rgba(15, 52, 96, 0.05) 0%, transparent 60%);
    animation: thanksBackground 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes thanksBackground {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-20px, -20px); }
}

.thanks-content {
    max-width: 650px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 70px 60px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(233, 69, 96, 0.1);
    position: relative;
    z-index: 1;
    animation: thanksFadeIn 0.8s ease;
}

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

.thanks-content::before {
    content: '✓';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--bg-white);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
    animation: checkmarkPulse 2s ease-in-out infinite;
}

@keyframes checkmarkPulse {
    0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4); }
    50% { transform: translateX(-50%) scale(1.1); box-shadow: 0 15px 50px rgba(233, 69, 96, 0.6); }
}

.thanks-content h1 {
    font-size: 52px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    margin-top: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.9;
}

.thanks-content a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.thanks-content a:hover {
    color: #ff6b7d;
    text-shadow: 0 0 8px rgba(233, 69, 96, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Fix horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 320px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: calc(100vh - 70px);
        overflow-y: auto;
        border-left: 1px solid rgba(233, 69, 96, 0.1);
        z-index: 9998;
    }
    
    /* Hide or reduce wheel decorations on mobile */
    .wheel-1,
    .wheel-2,
    .wheel-3 {
        display: none;
    }
    
    .hero-section {
        overflow-x: hidden;
    }

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

    .main-nav ul {
        flex-direction: column;
        padding: 40px 30px;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(233, 69, 96, 0.1);
        transition: var(--transition-fast);
    }

    .main-nav li:hover {
        background: linear-gradient(90deg, rgba(233, 69, 96, 0.05) 0%, transparent 100%);
        padding-left: 10px;
    }

    .main-nav a {
        display: block;
        padding: 20px 15px;
        font-size: 16px;
        font-weight: 600;
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

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

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-accept {
        width: 100%;
    }

    .policy-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    /* Ensure no horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 38px;
    }

    .hero-title::after {
        width: 60px;
        height: 4px;
    }

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

    .section-header::before {
        width: 60px;
        height: 4px;
    }

    .slide-content {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-row {
        flex-direction: column;
    }

    .form-select,
    .btn-search {
        width: 100%;
        box-sizing: border-box;
    }

    .search-form {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .policy-content {
        padding: 35px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .policy-content h1 {
        font-size: 38px;
    }

    .policy-content h1::after {
        width: 70px;
        height: 4px;
    }

    .thanks-content {
        padding: 45px 30px;
        width: 100%;
        box-sizing: border-box;
    }

    .thanks-content h1 {
        font-size: 42px;
    }

    .accordion-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .accordion-header {
        padding: 25px 20px;
        font-size: 20px;
    }
    
    /* Ensure all sections don't overflow */
    section {
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    /* Strict overflow control for small screens */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
        word-wrap: break-word;
    }

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

    .btn-primary {
        padding: 16px 30px;
        font-size: 15px;
        width: auto;
        max-width: 100%;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

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

    .section-header h2 {
        font-size: 32px;
        word-wrap: break-word;
    }

    .section-header::before {
        width: 60px;
        height: 4px;
    }

    .thanks-content {
        padding: 40px 25px;
        width: 100%;
        margin: 0 15px;
    }

    .thanks-content h1 {
        font-size: 38px;
        word-wrap: break-word;
    }

    .policy-content {
        padding: 30px 20px;
        width: 100%;
    }

    .policy-content h1 {
        font-size: 36px;
        word-wrap: break-word;
    }
    
    /* Fix any elements that might overflow */
    .slide-content {
        padding: 0 15px;
        width: 100%;
    }
    
    .hero-slider {
        width: 100%;
        overflow: hidden;
    }
    
    .slide-image {
        width: 100%;
        max-width: 100%;
    }
}
