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

:root {
--primary: #2563eb;
--secondary: #0ea5e9;
--accent: #f59e0b;
--dark: #1e293b;
--light: #f8fafc;
--text: #334155;
--border: #e2e8f0;
}

body {
font-family: 'Outfit', sans-serif;
color: var(--text);
line-height: 1.6;
font-size: 15px;
overflow-x: hidden;
}

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

.header {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
padding: 12px 0;
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s ease;
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
font-weight: 600;
color: var(--primary);
}

.nav {
display: flex;
gap: 28px;
}

.nav a {
color: var(--text);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
}

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

.nav-toggle {
display: none;
background: none;
border: none;
font-size: 20px;
color: var(--text);
cursor: pointer;
}

.hero-mega {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 80px 0 60px;
position: relative;
overflow: hidden;
}

.hero-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 400px;
height: 400px;
background: white;
top: -100px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: white;
bottom: -80px;
left: -80px;
}

.shape-3 {
width: 200px;
height: 200px;
background: white;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

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

.hero-text {
color: white;
}

.hero-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
backdrop-filter: blur(10px);
}

.hero-text h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 44px;
font-weight: 700;
line-height: 1.2;
margin-bottom: 20px;
}

.hero-text p {
font-size: 17px;
line-height: 1.7;
margin-bottom: 30px;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.btn-hero-primary {
background: white;
color: var(--primary);
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
display: inline-block;
}

.btn-hero-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
background: rgba(255, 255, 255, 0.15);
color: white;
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: background 0.3s;
display: inline-block;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
background: rgba(255, 255, 255, 0.25);
}

.hero-stats {
display: flex;
gap: 35px;
}

.stat-item {
text-align: left;
}

.stat-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 5px;
}

.stat-label {
font-size: 13px;
opacity: 0.9;
}

.hero-visual {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

.hero-card {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 25px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
text-align: center;
color: white;
transition: transform 0.3s;
}

.hero-card:hover {
transform: translateY(-5px);
}

.hero-card-1 {
grid-column: 1 / 2;
}

.hero-card-2 {
grid-column: 2 / 3;
}

.hero-card-3 {
grid-column: 1 / 3;
}

.hero-card i {
font-size: 32px;
margin-bottom: 12px;
display: block;
}

.hero-card span {
font-size: 14px;
font-weight: 600;
}

.trust-bar {
background: var(--dark);
padding: 20px 0;
}

.trust-content {
display: flex;
justify-content: space-between;
align-items: center;
color: white;
}

.trust-text {
font-size: 14px;
opacity: 0.9;
}

.trust-badges {
display: flex;
gap: 20px;
}

.trust-badge {
font-size: 12px;
font-weight: 600;
padding: 6px 14px;
background: rgba(255, 255, 255, 0.1);
border-radius: 6px;
}

.btn-primary {
display: inline-block;
background: var(--primary);
color: white;
padding: 12px 28px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: background 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: var(--secondary);
}

.btn-secondary {
display: inline-block;
background: var(--primary);
color: white;
padding: 10px 24px;
border-radius: 6px;
text-decoration: none;
font-weight: 500;
font-size: 13px;
transition: background 0.3s;
border: none;
cursor: pointer;
}

.btn-secondary:hover {
background: var(--secondary);
}

.section-label {
display: inline-block;
color: var(--primary);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
}

.features {
padding: 60px 0;
background: var(--light);
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-header h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 600;
color: var(--dark);
margin-bottom: 10px;
}

.section-header p {
font-size: 16px;
color: var(--text);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.feature-card {
background: white;
padding: 30px;
border-radius: 12px;
transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.feature-icon i {
font-size: 28px;
color: white;
}

.feature-card h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
color: var(--dark);
}

.feature-card p {
font-size: 14px;
line-height: 1.7;
}

.services-showcase {
padding: 60px 0;
}

.showcase-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.showcase-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 600;
color: var(--dark);
margin-bottom: 20px;
}

.showcase-content p {
margin-bottom: 20px;
line-height: 1.7;
}

.showcase-features {
display: grid;
gap: 12px;
margin: 25px 0;
}

.showcase-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
}

.showcase-item i {
color: var(--primary);
font-size: 16px;
}

.showcase-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.destinations-featured {
padding: 60px 0;
background: var(--light);
}

.destinations-layout {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 20px;
}

.destination-large,
.destination-small {
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 12px;
min-height: 300px;
position: relative;
overflow: hidden;
display: flex;
align-items: flex-end;
padding: 30px;
}

.destination-small {
min-height: 200px;
}

.destination-overlay {
color: white;
position: relative;
z-index: 1;
}

.destination-overlay h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
font-weight: 600;
margin-bottom: 10px;
}

.destination-overlay p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 15px;
opacity: 0.95;
}

.dest-link {
color: white;
text-decoration: none;
font-size: 13px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s;
}

.dest-link:hover {
gap: 12px;
}

.process {
padding: 60px 0;
}

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

.process-step {
text-align: center;
padding: 30px;
}

.step-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
margin-bottom: 15px;
}

.process-step h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: var(--dark);
}

.process-step p {
font-size: 14px;
line-height: 1.7;
}

.testimonials-modern {
padding: 60px 0;
background: var(--light);
}

.testimonials-slider {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.testimonial-modern {
background: white;
padding: 30px;
border-radius: 12px;
border: 1px solid var(--border);
}

.testimonial-content {
margin-bottom: 20px;
}

.quote-icon {
color: var(--primary);
font-size: 24px;
margin-bottom: 15px;
opacity: 0.3;
}

.testimonial-content p {
font-size: 14px;
line-height: 1.7;
font-style: italic;
}

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

.author-info strong {
display: block;
font-size: 15px;
color: var(--dark);
margin-bottom: 3px;
}

.author-info span {
font-size: 13px;
color: var(--text);
}

.testimonial-rating {
color: var(--accent);
font-size: 12px;
}

.final-cta {
padding: 60px 0;
}

.cta-box {
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 16px;
padding: 50px;
display: grid;
grid-template-columns: 1fr auto;
gap: 40px;
align-items: center;
}

.cta-content-new {
color: white;
}

.cta-content-new h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 600;
margin-bottom: 12px;
}

.cta-content-new p {
font-size: 16px;
opacity: 0.95;
line-height: 1.6;
}

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

.btn-cta-large {
background: white;
color: var(--primary);
padding: 16px 40px;
border-radius: 8px;
text-decoration: none;
font-weight: 700;
font-size: 15px;
display: inline-block;
transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-large:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-note {
color: white;
font-size: 12px;
margin-top: 12px;
opacity: 0.9;
}

.footer {
background: var(--dark);
color: white;
padding: 35px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 25px;
}

.footer-brand {
font-family: 'Space Grotesk', sans-serif;
font-size: 18px;
font-weight: 600;
margin-bottom: 15px;
}

.footer-info p {
font-size: 13px;
line-height: 1.7;
opacity: 0.9;
}

.footer-links {
display: flex;
flex-wrap: wrap;
gap: 15px;
}

.footer-links a {
color: white;
text-decoration: none;
font-size: 13px;
opacity: 0.9;
transition: opacity 0.3s;
}

.footer-links a:hover {
opacity: 1;
}

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

.footer-bottom p {
font-size: 12px;
opacity: 0.8;
}

.cookie-popup {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
z-index: 10000;
display: none;
max-width: 500px;
}

.cookie-popup.show {
display: block;
}

.cookie-content p {
font-size: 13px;
margin-bottom: 15px;
line-height: 1.6;
}

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

.btn-accept {
background: var(--primary);
color: white;
padding: 10px 24px;
border: none;
border-radius: 6px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: background 0.3s;
}

.btn-accept:hover {
background: var(--secondary);
}

.cookie-buttons a {
font-size: 13px;
color: var(--primary);
text-decoration: none;
}

.business-intro,
.tours-intro {
padding: 60px 0;
}

.content-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.content-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 600;
color: var(--dark);
margin-bottom: 20px;
}

.content-text p {
margin-bottom: 15px;
line-height: 1.7;
}

.content-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.intro-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 600;
color: var(--dark);
margin-bottom: 20px;
}

.intro-content p {
margin-bottom: 15px;
line-height: 1.7;
}

.business-services {
padding: 60px 0;
background: var(--light);
}

.services-list {
display: grid;
gap: 20px;
}

.service-item {
background: white;
padding: 25px;
border-radius: 10px;
display: flex;
gap: 20px;
align-items: flex-start;
transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
transform: translateX(5px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.service-icon i {
font-size: 22px;
color: white;
}

.service-details h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 8px;
color: var(--dark);
}

.service-details p {
font-size: 14px;
line-height: 1.6;
}

.business-benefits {
padding: 60px 0;
}

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

.benefit-card {
background: white;
padding: 30px;
border-radius: 12px;
border: 2px solid var(--border);
transition: border-color 0.3s;
}

.benefit-card:hover {
border-color: var(--primary);
}

.benefit-card h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
color: var(--dark);
}

.benefit-card p {
font-size: 14px;
line-height: 1.6;
}

.products {
padding: 60px 0;
background: var(--light);
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.product-card {
background: white;
padding: 35px;
border-radius: 12px;
transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 20px;
}

.product-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
}

.product-icon i {
font-size: 28px;
color: white;
}

.product-tag {
background: var(--accent);
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
}

.product-card h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
color: var(--dark);
}

.product-card p {
font-size: 14px;
line-height: 1.7;
margin-bottom: 20px;
}

.product-details {
display: flex;
gap: 20px;
margin-bottom: 20px;
padding: 15px 0;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}

.product-duration,
.product-group {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--text);
}

.product-duration i,
.product-group i {
color: var(--primary);
}

.product-price {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
}

.tour-features {
padding: 60px 0;
}

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

.feature-item h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
color: var(--dark);
}

.feature-item p {
font-size: 14px;
line-height: 1.6;
}

.tour-info {
padding: 60px 0;
background: var(--light);
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.info-card {
background: white;
padding: 25px;
border-radius: 12px;
}

.info-card h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
color: var(--dark);
}

.info-card p {
font-size: 14px;
line-height: 1.7;
}

.contact-section {
padding: 60px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contact-info h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 600;
color: var(--dark);
margin-bottom: 20px;
}

.contact-info > p {
margin-bottom: 30px;
line-height: 1.7;
}

.contact-details {
display: grid;
gap: 25px;
}

.contact-item {
display: flex;
gap: 15px;
}

.contact-item i {
font-size: 20px;
color: var(--primary);
margin-top: 3px;
}

.contact-item strong {
display: block;
font-size: 15px;
margin-bottom: 5px;
color: var(--dark);
}

.contact-item p {
font-size: 14px;
line-height: 1.6;
}

.contact-form-wrapper {
background: var(--light);
padding: 35px;
border-radius: 12px;
}

.contact-form h3 {
font-size: 22px;
font-weight: 600;
margin-bottom: 25px;
color: var(--dark);
}

.form-group {
margin-bottom: 18px;
}

.form-group label {
display: block;
font-size: 14px;
font-weight: 500;
margin-bottom: 8px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 14px;
font-family: 'Outfit', sans-serif;
transition: border-color 0.3s;
}

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

.checkbox-group {
display: flex;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 13px;
line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
width: auto;
margin-top: 3px;
cursor: pointer;
}

.map-section {
padding: 60px 0;
background: var(--light);
}

.map-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 600;
color: var(--dark);
margin-bottom: 30px;
text-align: center;
}

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
padding: 60px 0;
min-height: calc(100vh - 300px);
display: flex;
align-items: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.thankyou-icon,
.error-icon {
font-size: 70px;
color: var(--primary);
margin-bottom: 25px;
}

.thankyou-content h1,
.error-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--dark);
margin-bottom: 18px;
}

.error-content h1 {
font-size: 64px;
margin-bottom: 10px;
}

.error-content h2 {
font-size: 26px;
font-weight: 600;
color: var(--dark);
margin-bottom: 18px;
}

.thankyou-content p,
.error-content p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 12px;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
}

.policy-hero {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 45px 0;
text-align: center;
}

.policy-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
margin-bottom: 10px;
}

.policy-hero p {
font-size: 14px;
opacity: 0.9;
}

.policy-content {
padding: 60px 0;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
font-weight: 600;
color: var(--dark);
margin-top: 35px;
margin-bottom: 15px;
}

.policy-text h2:first-child {
margin-top: 0;
}

.policy-text h3 {
font-size: 19px;
font-weight: 600;
color: var(--dark);
margin-top: 22px;
margin-bottom: 12px;
}

.policy-text p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 15px;
}

.policy-text strong {
color: var(--dark);
font-weight: 600;
}

@media (max-width: 968px) {
.hero-grid,
.showcase-grid,
.content-wrapper,
.contact-wrapper,
.cta-box {
grid-template-columns: 1fr;
gap: 35px;
}

.hero-text h1 {
font-size: 36px;
}

.hero-stats {
gap: 25px;
}

.stat-number {
font-size: 28px;
}

.destinations-layout {
grid-template-columns: 1fr;
}

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

.cta-content-new h2 {
font-size: 28px;
}

.footer-content {
grid-template-columns: 1fr;
gap: 25px;
}

.footer-links {
flex-direction: column;
gap: 10px;
}
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 56px;
left: -100%;
width: 100%;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
transition: left 0.3s;
gap: 12px;
}

.nav.active {
left: 0;
}

.nav-toggle {
display: block;
}

.hero-mega {
padding: 50px 0 40px;
}

.hero-text h1 {
font-size: 30px;
}

.hero-text p {
font-size: 15px;
}

.hero-buttons {
flex-direction: column;
}

.btn-hero-primary,
.btn-hero-secondary {
width: 100%;
text-align: center;
}

.hero-stats {
flex-wrap: wrap;
gap: 20px;
}

.trust-content {
flex-direction: column;
gap: 15px;
text-align: center;
}

.trust-badges {
justify-content: center;
flex-wrap: wrap;
}

.features-grid,
.benefits-grid,
.products-grid,
.info-grid {
grid-template-columns: 1fr;
}

.process-grid {
grid-template-columns: repeat(2, 1fr);
}

.testimonials-slider {
grid-template-columns: 1fr;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.cookie-popup {
left: 10px;
right: 10px;
bottom: 10px;
}

.cta-box {
padding: 35px 25px;
}
}

@media (max-width: 580px) {
.logo {
font-size: 17px;
}

.hero-text h1 {
font-size: 26px;
}

.hero-badge {
font-size: 11px;
padding: 5px 12px;
}

.hero-visual {
grid-template-columns: 1fr;
}

.hero-card-3 {
grid-column: 1 / 2;
}

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

.section-header p {
font-size: 14px;
}

.showcase-content h2,
.content-text h2,
.intro-content h2,
.contact-info h2,
.map-section h2,
.cta-content-new h2 {
font-size: 26px;
}

.contact-form-wrapper {
padding: 25px;
}

.contact-form h3 {
font-size: 20px;
}

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

.step-number {
font-size: 38px;
}

.policy-hero h1 {
font-size: 30px;
}

.policy-text h2 {
font-size: 22px;
}

.policy-text h3 {
font-size: 18px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 28px;
}

.error-content h1 {
font-size: 52px;
}

.thankyou-icon,
.error-icon {
font-size: 60px;
}
}

@media (max-width: 420px) {
.container {
padding: 0 15px;
}

.hero-mega {
padding: 40px 0 30px;
}

.hero-text h1 {
font-size: 24px;
}

.hero-text p {
font-size: 14px;
}

.btn-hero-primary,
.btn-hero-secondary {
padding: 12px 24px;
font-size: 13px;
}

.stat-number {
font-size: 24px;
}

.stat-label {
font-size: 12px;
}

.hero-card {
padding: 20px;
}

.hero-card i {
font-size: 28px;
}

.hero-card span {
font-size: 13px;
}

.trust-bar {
padding: 15px 0;
}

.trust-text {
font-size: 13px;
}

.trust-badge {
font-size: 11px;
padding: 5px 10px;
}

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

.feature-card,
.benefit-card,
.product-card,
.info-card {
padding: 25px;
}

.feature-icon,
.product-icon {
width: 50px;
height: 50px;
}

.feature-icon i,
.product-icon i {
font-size: 24px;
}

.service-item {
flex-direction: column;
text-align: center;
}

.service-icon {
margin: 0 auto;
}

.showcase-content h2,
.content-text h2,
.intro-content h2 {
font-size: 24px;
}

.destination-large,
.destination-small {
padding: 25px;
min-height: 250px;
}

.destination-small {
min-height: 180px;
}

.destination-overlay h3 {
font-size: 20px;
}

.destination-overlay p {
font-size: 13px;
}

.process-step {
padding: 20px;
}

.step-number {
font-size: 32px;
}

.process-step h3 {
font-size: 18px;
}

.testimonial-modern {
padding: 25px;
}

.quote-icon {
font-size: 20px;
}

.cta-box {
padding: 30px 20px;
}

.cta-content-new h2 {
font-size: 24px;
}

.cta-content-new p {
font-size: 14px;
}

.btn-cta-large {
padding: 14px 32px;
font-size: 14px;
width: 100%;
}

.product-details {
flex-direction: column;
gap: 10px;
}

.product-price {
font-size: 28px;
}

.contact-form-wrapper {
padding: 20px;
}

.contact-item {
flex-direction: column;
text-align: center;
}

.contact-item i {
margin-top: 0;
}

.form-group input,
.form-group textarea {
padding: 10px;
font-size: 13px;
}

.btn-primary,
.btn-secondary {
width: 100%;
text-align: center;
}

.footer {
padding: 30px 0 15px;
}

.footer-brand {
font-size: 16px;
}

.footer-info p,
.footer-links a {
font-size: 12px;
}

.cookie-popup {
padding: 15px;
}

.cookie-content p {
font-size: 12px;
}

.btn-accept {
padding: 8px 20px;
font-size: 12px;
}

.cookie-buttons a {
font-size: 12px;
}

.policy-hero {
padding: 35px 0;
}

.policy-hero h1 {
font-size: 26px;
}

.policy-text h2 {
font-size: 20px;
}

.policy-text h3 {
font-size: 17px;
}

.policy-text p {
font-size: 13px;
}
}

@media (max-width: 360px) {
.hero-text h1 {
font-size: 22px;
}

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

.showcase-content h2,
.content-text h2,
.intro-content h2,
.contact-info h2,
.cta-content-new h2 {
font-size: 22px;
}

.hero-stats {
flex-direction: column;
gap: 15px;
}

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

.feature-card h3,
.benefit-card h3,
.product-card h3,
.info-card h3 {
font-size: 16px;
}

.destination-overlay h3 {
font-size: 18px;
}

.process-step h3 {
font-size: 17px;
}

.cta-content-new h2 {
font-size: 22px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 24px;
}

.error-content h1 {
font-size: 48px;
}
}
