:root {
    --primary-color: #FFD700;
    --secondary-color: #1a1a1a;
    --accent-color: #FFA500;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.25);
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(0,0,0,0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(26,26,26,0.6)), url('../img/intro-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    padding: 80px 0 60px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-content .lead {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-phone {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-call {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.6s backwards;
    text-decoration: none;
    display: inline-block;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--secondary-color);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--secondary-color);
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.floating-call-btn i {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

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

.section-light {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.section-dark {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    border: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 1rem;
}

.feature-card ul li:before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Price Table */
.price-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-table .table-responsive {
    border-radius: 20px;
}

.price-table table {
    margin: 0;
}

.price-table thead {
    background: linear-gradient(135deg, var(--secondary-color), #2c3e50);
    color: white;
}

.price-table th {
    padding: 1.5rem 1rem;
    font-weight: 600;
    border: none;
    white-space: nowrap;
}

.price-table td {
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    vertical-align: middle;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .price-table th,
    .price-table td {
        padding: 0.9rem 0.6rem;
        font-size: 0.95rem;
    }
}

.price-table tbody tr:hover {
    background: #f8f9fa;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(26,26,26,0.9)), url('../img/voru_contact.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 40px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #aaa;
    padding: 3rem 0 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin: 0 1rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .floating-call-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-call-btn i {
        font-size: 1.5rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .contact-card {
        margin-bottom: 2rem;
    }
}
