:root {
    --primary: #ED760E;
    --primary-hover: #d1660a;
    --accent: #FFD700;
    --highlight: #FFAE42;
    --dark: #1a1a1a;
    --dark-grey: #333333;
    --light-grey: #f5f5f5;
    --border: #e0e0e0;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 24px rgba(0,0,0,0.15);
    --shadow-orange: 0 10px 24px rgba(237, 118, 14, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    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(90deg, var(--primary), var(--highlight));
    border-radius: 2px;
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--white); }

.bg-light { background-color: var(--light-grey); }
.bg-white { background-color: var(--white); }
.section-dark { 
    background-color: var(--dark); 
    color: var(--white);
}
.section-dark .section-title { color: var(--white); }

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--highlight));
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(237, 118, 14, 0.4);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-text {
    background: transparent;
    color: var(--text-light);
}
.btn-text:hover {
    color: var(--text);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.header.scrolled .logo {
    color: var(--dark);
}

.logo-icon {
    color: var(--accent);
}

.main-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.header.scrolled .main-nav a {
    color: var(--dark);
}

.main-nav a:hover {
    color: var(--primary);
}

.nav-btn {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--white) !important;
}

.nav-btn:hover {
    background: var(--primary-hover);
    color: var(--white) !important;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.header.scrolled .hamburger span {
    background: var(--dark);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right var(--transition-normal);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
    font-family: var(--font-heading);
}

.mobile-nav-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(237, 118, 14, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(237, 118, 14, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(237, 118, 14, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse:hover {
    animation: none;
}

/* Step Map */
.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding-left: 40px;
}

.step-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--primary) 0, var(--primary) 10px, transparent 10px, transparent 20px);
    z-index: 1;
    /* Draw animation handled by JS */
    height: 0;
    transition: height 1.5s ease;
}

.step-line.drawn {
    height: 100%;
}

.step {
    position: relative;
    padding-bottom: 3rem;
    z-index: 2;
    padding-left: 15px;
}

.step:last-child {
    padding-bottom: 0;
}

.step-icon {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px var(--light-grey);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-content p {
    color: var(--text-light);
}

.mini-prices {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mini-price-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    border: 1px solid var(--border);
}

.mini-price-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.mini-price-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mini-price-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.mini-price-card .details {
    font-size: 0.85rem;
    color: var(--text-light);
}

.booking-form-container {
    max-width: 500px;
    margin: 4rem auto 0;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.booking-form-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* relops */
.relops-section {
    overflow: hidden;
}

.relops-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.relops-track {
    display: flex;
    height: 500px;
    transition: transform 0.5s ease;
}

.relops-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.slide-overlay h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.relops-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.relops-nav:hover {
    background: var(--primary);
}

.relops-nav.prev { left: 20px; }
.relops-nav.next { right: 20px; }

.relops-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.dot.active {
    background: var(--primary);
}

/* Accordion */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: #fdfdfd;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.accordion-content p, .accordion-content ul {
    padding: 0 20px 20px;
    margin: 0;
}

.accordion-content ul {
    list-style-type: disc;
    padding-left: 40px;
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* Arbitrary large value */
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* About Circle */
.about-circle-container {
    position: relative;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-center-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 10px solid var(--white);
    position: relative;
    z-index: 10;
}

.about-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-panel {
    position: absolute;
    width: 250px;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    z-index: 5;
    transition: transform var(--transition-normal);
    opacity: 0;
}

.about-circle-container.visible .about-panel {
    opacity: 1;
}

.about-panel h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.about-panel p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.panel-tl { top: 50px; left: 0; transform: translateX(-20px); }
.panel-tr { top: 50px; right: 0; transform: translateX(20px); }
.panel-bl { bottom: 50px; left: 0; transform: translateX(-20px); }
.panel-br { bottom: 50px; right: 0; transform: translateX(20px); }
.panel-top { top: -20px; left: 50%; transform: translateX(-50%) translateY(-20px); }
.panel-bottom { bottom: -20px; left: 50%; transform: translateX(-50%) translateY(20px); }

.about-circle-container.visible .panel-tl { transform: translateX(0); transition-delay: 0.1s;}
.about-circle-container.visible .panel-tr { transform: translateX(0); transition-delay: 0.2s;}
.about-circle-container.visible .panel-bl { transform: translateX(0); transition-delay: 0.3s;}
.about-circle-container.visible .panel-br { transform: translateX(0); transition-delay: 0.4s;}
.about-circle-container.visible .panel-top { transform: translateX(-50%) translateY(0); transition-delay: 0.5s;}
.about-circle-container.visible .panel-bottom { transform: translateX(-50%) translateY(0); transition-delay: 0.6s;}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Schedule Table */
.table-responsive {
    overflow-x: auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.schedule-table th, .schedule-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.schedule-table th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: rgba(237, 118, 14, 0.05);
}

.schedule-table tbody tr:hover {
    background-color: rgba(237, 118, 14, 0.1);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.price-card.highlighted {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-card.highlighted:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.card-header h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.card-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-body .features {
    list-style: none;
}

.card-body .features li {
    margin-bottom: 10px;
    color: var(--text);
}

/* Calculator */
.calculator-container {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calc-group {
    margin-bottom: 20px;
}

.calc-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--font-heading);
}

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

.range-slider input[type="range"] {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 8px;
    background: var(--light-grey);
    border-radius: 4px;
    outline: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.range-val {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
}

.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.calc-result {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.result-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--light-grey);
    border-radius: 8px;
}

.result-box.highlighted {
    background: rgba(237, 118, 14, 0.1);
    border: 1px solid var(--primary);
}

.result-label {
    font-weight: 600;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Selling Text */
.selling-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--light-grey);
}

.pull-quote {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 2rem 0;
    font-style: italic;
}

/* Infographic */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(237, 118, 14, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.info-item h4 {
    margin-bottom: 5px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-weight: 600;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-divider {
    border: none;
    height: 2px;
    background: var(--primary);
    width: 100%;
    opacity: 0.3;
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: var(--light-grey);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer a {
    color: var(--light-grey);
}

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

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

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    transition: background var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s ease;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-circle-container { height: auto; flex-direction: column; gap: 20px; padding: 40px 0;}
    .about-panel { position: static; transform: none !important; width: 100%; max-width: 300px;}
    .about-center-image { margin: 20px 0; }
    .calculator-container { grid-template-columns: 1fr; }
    .price-card.highlighted { transform: none; }
    .price-card.highlighted:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    
    .section { padding: 50px 0; }
    .section-title { font-size: 2rem; }
    
    .relops-track { height: 400px; }
    .slide-overlay h3 { font-size: 1.5rem; }
    
    .cookie-banner { flex-direction: column; text-align: center; }
    
    .steps-container { padding-left: 20px; }
    .step-line { left: 9px; }
    .step-icon { width: 30px; height: 30px; left: -25px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .btn { padding: 10px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .mini-prices { flex-direction: column; }
    .mini-price-card { max-width: 100%; }
}
