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

:root {
--primary-color: #0f766e;
--secondary-color: #134e4a;
--accent-color: #f97316;
--highlight-color: #fbbf24;
--text-dark: #1f2937;
--text-light: #6b7280;
--bg-light: #f0fdfa;
--bg-white: #ffffff;
--border-color: #e5e7eb;
--success-color: #10b981;
--error-color: #ef4444;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--text-dark);
font-size: 14px;
}

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

header {
background: var(--bg-white);
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
position: relative;
z-index: 1000;
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 15px;
max-width: 1200px;
margin: 0 auto;
}

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}

nav ul {
display: flex;
list-style: none;
gap: 20px;
}

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

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

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

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

.mega-hero {
position: relative;
min-height: 70vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
padding: 80px 15px 60px;
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
pointer-events: none;
}

.hero-content {
position: relative;
z-index: 2;
max-width: 900px;
margin: 0 auto;
text-align: center;
color: var(--bg-white);
}

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

.mega-hero h1 {
font-size: 42px;
font-weight: 800;
margin-bottom: 20px;
line-height: 1.2;
color: var(--bg-white);
}

.mega-hero p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.6;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

.hero-btn-primary {
background: var(--bg-white);
color: var(--primary-color);
padding: 14px 32px;
border-radius: 8px;
font-weight: 700;
font-size: 15px;
text-decoration: none;
transition: all 0.3s;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.hero-btn-secondary {
background: transparent;
color: var(--bg-white);
padding: 14px 32px;
border-radius: 8px;
font-weight: 700;
font-size: 15px;
text-decoration: none;
border: 2px solid var(--bg-white);
transition: all 0.3s;
}

.hero-btn-secondary:hover {
background: var(--bg-white);
color: var(--primary-color);
}

.hero-stats {
position: relative;
z-index: 2;
display: flex;
gap: 40px;
justify-content: center;
flex-wrap: wrap;
margin-top: 20px;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
color: var(--bg-white);
}

.stat-number {
font-size: 32px;
font-weight: 800;
line-height: 1;
margin-bottom: 5px;
}

.stat-label {
font-size: 13px;
opacity: 0.9;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.hero h1 {
font-size: 32px;
margin-bottom: 15px;
font-weight: 700;
}

.hero p {
font-size: 16px;
margin-bottom: 25px;
opacity: 0.95;
}

.intro-section {
background: var(--bg-white);
padding: 50px 15px;
}

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

.intro-content h2 {
font-size: 28px;
margin-bottom: 20px;
color: var(--text-dark);
}

.intro-content p {
font-size: 16px;
line-height: 1.8;
color: var(--text-light);
margin-bottom: 15px;
}

.visual-showcase {
background: var(--bg-light);
padding: 50px 15px;
}

.showcase-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 30px;
}

.showcase-card {
position: relative;
border-radius: 12px;
overflow: hidden;
height: 350px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

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

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

.showcase-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
padding: 30px 20px 20px;
color: var(--bg-white);
}

.showcase-overlay h3 {
font-size: 22px;
margin-bottom: 8px;
color: var(--bg-white);
}

.showcase-overlay p {
font-size: 14px;
opacity: 0.95;
line-height: 1.5;
}

.process-section {
background: var(--bg-white);
padding: 50px 15px;
}

.process-timeline {
max-width: 800px;
margin: 40px auto 0;
}

.timeline-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
align-items: flex-start;
}

.timeline-number {
flex-shrink: 0;
width: 50px;
height: 50px;
background: var(--primary-color);
color: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 700;
}

.timeline-content h3 {
font-size: 18px;
margin-bottom: 8px;
color: var(--primary-color);
}

.timeline-content p {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
}

.value-section {
background: var(--bg-light);
padding: 50px 15px;
}

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

.value-item {
background: var(--bg-white);
padding: 25px;
border-radius: 10px;
text-align: center;
border-left: 4px solid var(--accent-color);
}

.value-item h3 {
font-size: 20px;
margin-bottom: 10px;
color: var(--primary-color);
}

.value-item p {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
}

.specialties {
background: var(--bg-white);
padding: 50px 15px;
}

.specialty-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.specialty-item {
background: var(--bg-light);
padding: 25px;
border-radius: 10px;
}

.specialty-item h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary-color);
}

.specialty-item p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}

.ready-section {
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
padding: 60px 15px;
text-align: center;
}

.ready-content {
max-width: 700px;
margin: 0 auto;
}

.ready-content h2 {
font-size: 32px;
color: var(--bg-white);
margin-bottom: 15px;
}

.ready-content p {
font-size: 16px;
color: var(--bg-white);
opacity: 0.95;
margin-bottom: 25px;
line-height: 1.6;
}

.comparison-section {
background: var(--bg-light);
padding: 50px 15px;
}

.comparison-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.comparison-item {
background: var(--bg-white);
padding: 25px;
border-radius: 10px;
border-top: 4px solid var(--primary-color);
}

.comparison-item h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary-color);
}

.comparison-item p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}

.faq-section {
background: var(--bg-white);
padding: 50px 15px;
}

.faq-list {
max-width: 800px;
margin: 30px auto 0;
}

.faq-item {
background: var(--bg-light);
padding: 20px;
border-radius: 8px;
margin-bottom: 15px;
}

.faq-item h3 {
font-size: 17px;
margin-bottom: 10px;
color: var(--primary-color);
}

.faq-item p {
font-size: 14px;
color: var(--text-light);
line-height: 1.7;
}

.why-contact {
background: var(--bg-light);
padding: 50px 15px;
}

.next-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 30px;
}

.step-card {
background: var(--bg-white);
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-card h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--primary-color);
}

.step-card p {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
}

section {
padding: 40px 15px;
}

h2 {
font-size: 24px;
margin-bottom: 20px;
color: var(--text-dark);
text-align: center;
}

h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--text-dark);
}

.cta-btn, .btn-primary {
display: inline-block;
background: var(--accent-color);
color: var(--bg-white);
padding: 10px 24px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.cta-btn:hover, .btn-primary:hover {
background: #d97706;
transform: translateY(-2px);
}

.btn-secondary {
display: inline-block;
background: var(--bg-white);
color: var(--primary-color);
padding: 8px 20px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 13px;
border: 2px solid var(--primary-color);
transition: all 0.3s;
}

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

.features {
background: var(--bg-white);
}

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

.feature-item {
padding: 25px;
background: var(--bg-light);
border-radius: 10px;
text-align: center;
transition: transform 0.3s;
}

.feature-item:hover {
transform: translateY(-3px);
}

.feature-icon {
width: 50px;
height: 50px;
margin: 0 auto 15px;
background: var(--primary-color);
color: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
}

.feature-item h3 {
margin-bottom: 10px;
font-size: 17px;
}

.feature-item p {
font-size: 14px;
color: var(--text-light);
line-height: 1.5;
}

.services {
background: var(--bg-light);
}

.service-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.service-card {
background: var(--bg-white);
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
margin-bottom: 12px;
}

.service-card p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 15px;
line-height: 1.5;
}

.destinations-preview {
background: var(--bg-white);
}

.dest-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.dest-card {
background: var(--bg-light);
border-radius: 8px;
overflow: hidden;
}

.dest-card img {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
}

.dest-card h3 {
padding: 15px 15px 5px;
font-size: 17px;
}

.dest-card p {
padding: 0 15px 15px;
font-size: 14px;
color: var(--text-light);
}

.how-it-works {
background: var(--bg-light);
}

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

.step {
text-align: center;
padding: 20px;
background: var(--bg-white);
border-radius: 8px;
}

.step-number {
display: inline-block;
width: 40px;
height: 40px;
background: var(--primary-color);
color: var(--bg-white);
border-radius: 50%;
line-height: 40px;
font-weight: 700;
font-size: 18px;
margin-bottom: 15px;
}

.step h3 {
margin-bottom: 10px;
font-size: 17px;
}

.step p {
font-size: 14px;
color: var(--text-light);
}

.testimonials {
background: var(--bg-white);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.testimonial {
background: var(--bg-light);
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--primary-color);
}

.testimonial p {
font-size: 14px;
font-style: italic;
color: var(--text-dark);
margin-bottom: 10px;
line-height: 1.6;
}

.testimonial cite {
font-size: 13px;
color: var(--text-light);
font-style: normal;
font-weight: 600;
}

.cta-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--bg-white);
text-align: center;
padding: 50px 15px;
}

.cta-section h2 {
color: var(--bg-white);
font-size: 26px;
margin-bottom: 12px;
}

.cta-section p {
font-size: 15px;
margin-bottom: 25px;
opacity: 0.95;
}

.products {
background: var(--bg-white);
}

.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.product-card {
background: var(--bg-light);
padding: 25px;
border-radius: 8px;
text-align: center;
border: 2px solid var(--border-color);
position: relative;
}

.product-card.featured {
border-color: var(--accent-color);
box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.badge {
position: absolute;
top: -10px;
right: 15px;
background: var(--accent-color);
color: var(--bg-white);
padding: 4px 12px;
border-radius: 12px;
font-size: 12px;
font-weight: 600;
}

.product-card h3 {
margin-bottom: 15px;
font-size: 20px;
}

.price {
font-size: 32px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 20px;
}

.product-features {
list-style: none;
margin-bottom: 20px;
text-align: left;
}

.product-features li {
padding: 8px 0;
font-size: 14px;
color: var(--text-light);
border-bottom: 1px solid var(--border-color);
}

.product-features li:last-child {
border-bottom: none;
}

.planning-process {
background: var(--bg-light);
}

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

.process-item {
background: var(--bg-white);
padding: 20px;
border-radius: 8px;
}

.process-item h3 {
color: var(--primary-color);
margin-bottom: 10px;
font-size: 17px;
}

.process-item p {
font-size: 14px;
color: var(--text-light);
line-height: 1.5;
}

.included {
background: var(--bg-white);
}

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

.included-item {
padding: 20px;
background: var(--bg-light);
border-radius: 8px;
}

.included-item h3 {
margin-bottom: 10px;
font-size: 16px;
}

.included-item p {
font-size: 14px;
color: var(--text-light);
}

.destination-categories {
background: var(--bg-white);
}

.category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.category-card {
background: var(--bg-light);
padding: 25px;
border-radius: 8px;
text-align: center;
}

.category-card h3 {
margin-bottom: 12px;
font-size: 18px;
}

.category-card p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 15px;
line-height: 1.5;
}

.featured-destinations {
background: var(--bg-light);
}

.featured-list {
display: grid;
gap: 25px;
margin-top: 30px;
}

.featured-dest {
background: var(--bg-white);
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.featured-dest h3 {
margin-bottom: 12px;
font-size: 20px;
color: var(--primary-color);
}

.featured-dest p {
font-size: 14px;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 15px;
}

.travel-tips {
background: var(--bg-white);
}

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

.tip-item {
padding: 20px;
background: var(--bg-light);
border-radius: 8px;
}

.tip-item h3 {
margin-bottom: 10px;
font-size: 16px;
}

.tip-item p {
font-size: 14px;
color: var(--text-light);
line-height: 1.5;
}

.contact-section {
background: var(--bg-white);
}

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

.contact-info {
background: var(--bg-light);
padding: 25px;
border-radius: 8px;
}

.contact-info h2 {
text-align: left;
font-size: 22px;
margin-bottom: 15px;
}

.contact-info p {
font-size: 14px;
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.6;
}

.info-item {
margin-bottom: 20px;
}

.info-item h3 {
font-size: 15px;
margin-bottom: 8px;
color: var(--primary-color);
}

.info-item p {
font-size: 14px;
color: var(--text-dark);
margin-bottom: 0;
}

.contact-form-wrapper {
background: var(--bg-light);
padding: 25px;
border-radius: 8px;
}

.contact-form-wrapper h2 {
text-align: left;
font-size: 22px;
margin-bottom: 20px;
}

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

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

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

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

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 8px;
font-weight: 400;
cursor: pointer;
}

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

.map-section {
background: var(--bg-light);
}

.map-container {
margin-top: 25px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.fullpage-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 20px;
}

.fullpage-content {
text-align: center;
color: var(--bg-white);
max-width: 600px;
}

.fullpage-content h1 {
font-size: 36px;
margin-bottom: 20px;
}

.fullpage-content p {
font-size: 16px;
margin-bottom: 15px;
line-height: 1.6;
opacity: 0.95;
}

.policy-page {
background: var(--bg-white);
padding: 40px 15px;
}

.policy-page h1 {
font-size: 28px;
margin-bottom: 10px;
color: var(--text-dark);
}

.update-date {
font-size: 13px;
color: var(--text-light);
margin-bottom: 30px;
}

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

.policy-content h2 {
font-size: 20px;
margin-top: 30px;
margin-bottom: 15px;
text-align: left;
color: var(--text-dark);
}

.policy-content h3 {
font-size: 17px;
margin-top: 20px;
margin-bottom: 10px;
color: var(--text-dark);
}

.policy-content p {
font-size: 14px;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 15px;
}

.policy-content ul {
margin: 15px 0 15px 25px;
}

.policy-content li {
font-size: 14px;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 8px;
}

footer {
background: var(--text-dark);
color: var(--bg-white);
padding: 40px 15px 20px;
}

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

.footer-col h4 {
font-size: 16px;
margin-bottom: 15px;
color: var(--bg-white);
}

.footer-col p {
font-size: 13px;
color: #9ca3af;
line-height: 1.6;
margin-bottom: 8px;
}

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

.footer-col li {
margin-bottom: 8px;
}

.footer-col a {
color: #9ca3af;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-col a:hover {
color: var(--bg-white);
}

.footer-bottom {
border-top: 1px solid #374151;
padding-top: 20px;
text-align: center;
}

.footer-bottom p {
font-size: 13px;
color: #9ca3af;
margin-bottom: 12px;
}

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

.footer-links a {
color: #9ca3af;
text-decoration: none;
font-size: 12px;
transition: color 0.3s;
}

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

.popup {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
z-index: 10000;
padding: 20px;
}

.popup.show {
display: block;
}

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

.popup-content p {
font-size: 14px;
color: var(--text-dark);
margin: 0;
flex: 1;
min-width: 250px;
}

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

.popup-buttons a {
color: var(--primary-color);
text-decoration: none;
font-size: 14px;
font-weight: 600;
}

@media (min-width: 768px) {
.contact-wrapper {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
.menu-toggle {
display: block;
}
nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
nav.active {
display: block;
}
nav ul {
flex-direction: column;
padding: 15px;
gap: 0;
}
nav li {
border-bottom: 1px solid var(--border-color);
}
nav li:last-child {
border-bottom: none;
}
nav a {
display: block;
padding: 12px 0;
}
.mega-hero {
min-height: 60vh;
padding: 60px 15px 40px;
}
.mega-hero h1 {
font-size: 32px;
}
.mega-hero p {
font-size: 16px;
}
.hero-stats {
gap: 30px;
}
.stat-number {
font-size: 28px;
}
.showcase-card {
height: 300px;
}
.timeline-item {
flex-direction: column;
align-items: center;
text-align: center;
}
}

@media (max-width: 480px) {
.logo {
font-size: 16px;
}
.mega-hero {
min-height: 50vh;
padding: 50px 15px 30px;
}
.mega-hero h1 {
font-size: 26px;
}
.mega-hero p {
font-size: 15px;
}
.hero-buttons {
flex-direction: column;
width: 100%;
}
.hero-btn-primary,
.hero-btn-secondary {
width: 100%;
text-align: center;
}
.hero-stats {
flex-direction: column;
gap: 20px;
}
.stat-number {
font-size: 24px;
}
h2 {
font-size: 20px;
}
h3 {
font-size: 16px;
}
.feature-grid,
.service-list,
.dest-grid,
.steps,
.testimonial-grid,
.product-grid,
.process-steps,
.included-grid,
.category-grid,
.tips-grid,
.showcase-grid,
.value-grid,
.specialty-list,
.comparison-grid,
.next-steps {
grid-template-columns: 1fr;
}
.showcase-card {
height: 250px;
}
.fullpage-content h1 {
font-size: 24px;
}
.popup-content {
flex-direction: column;
align-items: flex-start;
}
.popup-buttons {
width: 100%;
justify-content: space-between;
}
}

@media (max-width: 320px) {
body {
font-size: 13px;
}
.container {
padding: 0 10px;
}
.logo {
font-size: 14px;
}
.mega-hero {
min-height: 45vh;
padding: 40px 10px 25px;
}
.mega-hero h1 {
font-size: 22px;
}
.mega-hero p {
font-size: 14px;
}
.hero-badge {
font-size: 11px;
padding: 5px 12px;
}
.hero-btn-primary,
.hero-btn-secondary {
padding: 12px 24px;
font-size: 14px;
}
.stat-number {
font-size: 20px;
}
.stat-label {
font-size: 11px;
}
section {
padding: 30px 10px;
}
h2 {
font-size: 18px;
}
.cta-btn, .btn-primary {
padding: 8px 18px;
font-size: 13px;
}
.showcase-card {
height: 220px;
}
.ready-content h2 {
font-size: 24px;
}
}
