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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
    padding: 20px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 70px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00BCD4;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 188, 212, 0.3);
    background: rgba(0, 188, 212, 0.05);
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: rgba(0, 188, 212, 0.15);
    border-color: #00BCD4;
}

.nav-phone svg {
    width: 18px;
    height: 18px;
    stroke: #00BCD4;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 20% { transform: rotate(-10deg); }
    15%, 25% { transform: rotate(10deg); }
    30% { transform: rotate(0deg); }
}

.nav-phone a {
    color: #00BCD4;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #00BCD4;
}

/* Hero Section */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1920') center/cover;
    filter: blur(12px) brightness(0.4);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 188, 212, 0.2) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: glow 8s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.5; transform: scale(1); }
    to { opacity: 0.8; transform: scale(1.1); }
}

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

.hero-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.badge-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #00BCD4;
    font-weight: 700;
}

.badge-text {
    font-size: 13px;
    letter-spacing: 2px;
    color: #999999;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 86px;
    font-weight: 800;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #00BCD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00BCD4, transparent);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.hero-cta-button {
    margin-top: 20px;
}

.btn-hero-book {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #00BCD4 0%, #00E5FF 100%);
    color: #000000;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.4);
    text-transform: uppercase;
}

.btn-hero-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.6);
    background: linear-gradient(135deg, #00E5FF 0%, #00BCD4 100%);
}

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

.stat-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, #00BCD4, transparent);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00BCD4;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-car {
    position: relative;
}

.car-showcase {
    position: relative;
}

.car-image {
    width: 100%;
    height: auto;
    opacity: 0.9;
    filter: brightness(0.8) contrast(1.1);
}

.car-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #00BCD4;
    border: 3px solid rgba(0, 188, 212, 0.4);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 50%;
}

.point:hover {
    transform: scale(1.3);
    background: #00E5FF;
    border-color: #00E5FF;
}

.point-tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #00BCD4;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 1;
    pointer-events: none;
    border: 1px solid rgba(0, 188, 212, 0.4);
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.point-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.6);
}

.point:hover .point-tooltip {
    background: rgba(0, 0, 0, 0.8);
    border-color: #00BCD4;
    color: #00E5FF;
}

/* Sections */
section {
    padding: 120px 0;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #00BCD4;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.section-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00BCD4, transparent);
    margin: 0 auto;
}

/* Services */
.services-premium {
    position: relative;
    overflow: hidden;
}

.services-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?w=1920') center/cover;
    filter: blur(15px) brightness(0.3);
    transform: scale(1.1);
    z-index: -1;
}

.services-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 188, 212, 0.15) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: -1;
}

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

.service-card-premium {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    padding: 50px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card-premium:hover::before {
    left: 100%;
}

.service-card-premium:hover {
    border-color: #00BCD4;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 188, 212, 0.2);
}

.service-icon-premium {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    background: rgba(0, 188, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-premium {
    background: rgba(0, 188, 212, 0.2);
    border-color: #00BCD4;
}

.service-icon-premium svg {
    width: 40px;
    height: 40px;
    stroke: #00BCD4;
}

.service-card-premium h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-card-premium p {
    font-size: 15px;
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 30px;
}

.service-line {
    width: 60px;
    height: 2px;
    background: #00BCD4;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-services-book {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #00BCD4 0%, #00E5FF 100%);
    color: #000000;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.4);
    text-transform: uppercase;
    text-decoration: none;
}

.btn-services-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.6);
    background: transparent;
    border-color: #00BCD4;
    color: #00BCD4;
}

/* Process */
.process-premium {
    position: relative;
    overflow: hidden;
}

.process-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?w=1920') center/cover;
    filter: blur(18px) brightness(0.25);
    transform: scale(1.1);
    z-index: -1;
}

.process-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 188, 212, 0.1) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: -1;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    align-items: center;
}

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

.process-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 188, 212, 0.3);
    margin-bottom: 20px;
}

.process-step h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

.process-connector {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.5), rgba(0, 188, 212, 0.1));
}

/* Gallery */
.gallery-premium {
    position: relative;
    overflow: hidden;
}

.gallery-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1601362840469-51e4d8d58785?w=1920') center/cover;
    filter: blur(14px) brightness(0.35);
    transform: scale(1.1);
    z-index: -1;
    animation: slowPan 25s ease-in-out infinite alternate;
}

@keyframes slowPan {
    from { transform: scale(1.1) translateX(0); }
    to { transform: scale(1.15) translateX(-20px); }
}

.gallery-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(0, 188, 212, 0.2) 0%, rgba(0, 0, 0, 0.9) 60%);
    z-index: -1;
}

.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gallery-item-premium {
    position: relative;
}

.gallery-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #00BCD4;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 188, 212, 0.3);
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.2);
    transition: all 0.4s ease;
}

.comparison-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 188, 212, 0.4);
    border-color: #00BCD4;
}

.comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-after {
    clip-path: inset(0 0 0 50%);
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    letter-spacing: 4px;
    font-weight: 600;
}

.before-img {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #555555;
}

.after-img {
    background: linear-gradient(135deg, #00BCD4 0%, #00E5FF 100%);
    color: #000000;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00BCD4;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle {
    width: 3px;
    height: 60px;
    background: #00BCD4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-handle::before,
.slider-handle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.slider-handle::before {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 10px 6px;
    border-color: transparent transparent #00BCD4 transparent;
}

.slider-handle::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 6px 0 6px;
    border-color: #00BCD4 transparent transparent transparent;
}

/* Packages */
.packages-premium {
    position: relative;
    overflow: hidden;
}

.packages-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?w=1920') center/cover;
    filter: blur(16px) brightness(0.3);
    transform: scale(1.1);
    z-index: -1;
}

.packages-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 188, 212, 0.15) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

.packages-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.package-premium-card {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    padding: 60px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-premium-card::before {
    display: none;
}

.package-premium-card:hover {
    border-color: #00BCD4;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 188, 212, 0.3);
}

.package-premium-card.featured {
    border-color: #00BCD4;
    transform: scale(1.08);
    z-index: 10;
    overflow: visible;
}

.packages-grid-premium > .package-premium-card:not(.featured) {
    margin-top: 40px;
}

.featured-label {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00BCD4 0%, #00E5FF 100%);
    color: #000000;
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.6);
    border-radius: 4px;
    z-index: 9999;
}

.package-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
}

.package-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.package-subtitle {
    font-size: 12px;
    color: #00BCD4;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
}

.package-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #00BCD4;
}

.package-price span {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}

.package-description {
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    flex-grow: 1;
    text-align: left;
}

.package-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.package-list li {
    padding: 15px 0;
    font-size: 15px;
    color: #aaaaaa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-list li:last-child {
    border-bottom: none;
}

/* Buttons */
.btn-premium {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #00BCD4;
    color: #00BCD4;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    width: 100%;
    position: relative;
    z-index: 100;
}

.btn-premium:hover {
    background: #00BCD4;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
    z-index: 101;
}

.btn-cyan {
    background: linear-gradient(135deg, #00BCD4 0%, #00E5FF 100%);
    color: #000000;
    border-color: #00BCD4;
}

.btn-cyan:hover {
    background: transparent;
    color: #00BCD4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
}

/* Contact */
.contact-premium {
    position: relative;
    overflow: hidden;
}

.contact-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920') center/cover;
    filter: blur(20px) brightness(0.25);
    transform: scale(1.1);
    z-index: -1;
    animation: gentleFloat 30s ease-in-out infinite alternate;
}

@keyframes gentleFloat {
    from { transform: scale(1.1) translateY(0); }
    to { transform: scale(1.15) translateY(-30px); }
}

.contact-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.25) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: -1;
}

.contact-content-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info-premium h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.contact-info-premium p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: #00BCD4;
}

.contact-item a,
.contact-item span {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.btn-book-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px 40px;
    background: linear-gradient(135deg, #00BCD4 0%, #00E5FF 100%);
    color: #000000;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-book-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-book-premium:hover::before {
    left: 100%;
}

.btn-book-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 188, 212, 0.6);
}

.btn-book-premium svg {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.btn-book-premium:hover svg {
    transform: translateX(10px);
}

/* Footer */
.footer-premium {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 188, 212, 0.2);
}

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

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: #666666;
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #00BCD4;
    margin-bottom: 25px;
}

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

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a,
.footer-links ul li {
    font-size: 14px;
    color: #999999;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #00BCD4;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 188, 212, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: #666666;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-premium,
    .gallery-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-connector {
        width: 2px;
        height: 50px;
        background: linear-gradient(180deg, rgba(0, 188, 212, 0.5), rgba(0, 188, 212, 0.1));
        margin: 20px auto;
    }
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        padding: 40px;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .title-main {
        font-size: 56px;
    }
    
    .title-sub {
        font-size: 36px;
    }
    
    .packages-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .contact-content-premium {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .title-main {
        font-size: 42px;
    }
    
    .title-sub {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-grid-premium,
    .gallery-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
}
