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

:root {
--primary: #0066cc;
--secondary: #ff6b35;
--accent: #ffd700;
--dark: #1a1a2e;
--light: #f5f7fa;
--text: #333;
--border: #e0e0e0;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text);
font-size: 14px;
}

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

.header-unique {
background: linear-gradient(135deg, var(--primary), var(--dark));
padding: 12px 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
font-size: 18px;
font-weight: bold;
color: white;
}

.nav-menu {
display: flex;
gap: 20px;
}

.nav-menu a {
color: white;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

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

.menu-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 22px;
cursor: pointer;
}

.hero-mega {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, #0066cc 0%, #004c99 50%, #1a1a2e 100%);
overflow: hidden;
padding: 80px 0 60px;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(255,107,53,0.15), transparent 50%),
radial-gradient(circle at 70% 80%, rgba(255,215,0,0.1), transparent 40%);
}

.hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}

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

.shape-1 {
width: 400px;
height: 400px;
background: var(--accent);
top: -100px;
right: -100px;
animation: float 20s infinite;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--secondary);
bottom: -80px;
left: -80px;
animation: float 15s infinite reverse;
}

.shape-3 {
width: 200px;
height: 200px;
background: white;
top: 50%;
left: 50%;
animation: float 25s infinite;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
33% { transform: translate(30px, -30px) rotate(120deg); }
66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content-mega {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
margin: 0 auto;
}

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

.hero-title-mega {
font-size: 56px;
font-weight: 800;
color: white;
margin-bottom: 20px;
line-height: 1.1;
}

.hero-highlight {
background: linear-gradient(90deg, var(--accent), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-text-mega {
font-size: 18px;
color: rgba(255,255,255,0.9);
margin-bottom: 30px;
line-height: 1.7;
}

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

.btn-hero-primary {
background: var(--secondary);
color: white;
padding: 14px 32px;
text-decoration: none;
border-radius: 30px;
font-size: 15px;
font-weight: 600;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

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

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

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

.hero-stats {
display: flex;
justify-content: center;
gap: 50px;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
}

.stat-number {
font-size: 32px;
font-weight: 800;
color: var(--accent);
line-height: 1;
}

.stat-label {
font-size: 12px;
color: rgba(255,255,255,0.8);
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 5px;
}

section {
padding: 60px 0;
}

.section-label {
display: inline-block;
background: var(--primary);
color: white;
padding: 4px 12px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 12px;
}

h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--dark);
font-weight: 700;
}

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

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

.intro-modern {
background: white;
}

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

.intro-text p {
color: #555;
}

.intro-image img {
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

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

.exp-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

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

.exp-icon {
font-size: 40px;
margin-bottom: 15px;
}

.destinations-section {
background: white;
}

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

.dest-card {
background: var(--light);
padding: 25px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

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

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

.planning-list {
display: flex;
flex-direction: column;
gap: 25px;
margin-top: 25px;
}

.planning-item {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.link-arrow {
display: inline-block;
color: var(--primary);
text-decoration: none;
font-weight: 600;
font-size: 13px;
margin-top: 10px;
}

.link-arrow:after {
content: " →";
}

.planning-image img {
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tips-section {
background: white;
}

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

.tip-card {
background: var(--light);
padding: 25px;
border-radius: 12px;
}

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

.section-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 30px;
color: #555;
}

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

.neighborhood-card {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
position: relative;
}

.neighborhood-tag {
display: inline-block;
background: var(--secondary);
color: white;
padding: 4px 10px;
border-radius: 12px;
font-size: 11px;
margin-top: 10px;
}

.culture-section {
background: white;
}

.culture-content p {
color: #555;
margin-bottom: 30px;
}

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

.culture-item {
background: var(--light);
padding: 25px;
border-radius: 12px;
}

.practical-info {
background: var(--light);
}

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

.info-card {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cta-modern {
background: linear-gradient(135deg, var(--primary), var(--dark));
color: white;
text-align: center;
padding: 80px 0;
}

.cta-content h2 {
color: white;
font-size: 36px;
margin-bottom: 20px;
}

.cta-content p {
color: rgba(255,255,255,0.9);
font-size: 16px;
max-width: 600px;
margin: 0 auto 30px;
}

.btn-cta-large {
display: inline-block;
background: var(--secondary);
color: white;
padding: 16px 40px;
text-decoration: none;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.btn-cta-large:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255,107,53,0.6);
}

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

.cta-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

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

.btn-secondary:hover {
transform: translateY(-2px);
}

img {
max-width: 100%;
height: auto;
display: block;
}

.page-header {
background: linear-gradient(135deg, var(--primary), var(--dark));
color: white;
padding: 50px 0;
text-align: center;
}

.page-header h1 {
font-size: 36px;
margin-bottom: 10px;
}

.budget-overview, .cost-breakdown, .climate-overview, .seasons {
background: white;
}

.budget-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
transition: transform 0.3s;
}

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

.budget-card.featured {
border: 2px solid var(--secondary);
}

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

.budget-card ul {
list-style: none;
padding: 0;
text-align: left;
}

.budget-card ul li {
padding: 8px 0;
font-size: 13px;
}

.budget-card ul li:before {
content: "✓ ";
color: var(--secondary);
font-weight: bold;
}

.cost-category {
background: var(--light);
padding: 25px;
margin-bottom: 20px;
border-radius: 12px;
}

.cost-category ul {
margin-top: 12px;
}

.cost-category ul li {
margin-bottom: 8px;
font-size: 13px;
}

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

.product-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
}

.product-price {
font-size: 28px;
font-weight: 700;
color: var(--secondary);
margin: 15px 0;
}

.season-card {
background: var(--light);
padding: 25px;
border-radius: 12px;
}

.season-card ul {
margin-top: 12px;
list-style: none;
padding-left: 0;
}

.season-card ul li {
padding: 6px 0;
font-size: 13px;
}

.season-card ul li:before {
content: "• ";
color: var(--primary);
font-weight: bold;
}

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

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

.contact-intro {
background: var(--light);
}

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

.contact-form {
display: flex;
flex-direction: column;
gap: 18px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 6px;
font-weight: 600;
font-size: 13px;
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 14px;
font-family: inherit;
transition: border 0.3s;
}

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

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 12px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-top: 2px;
}

.checkbox-label a {
color: var(--primary);
}

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

.contact-item h3 {
font-size: 18px;
margin-bottom: 8px;
}

.contact-item p {
font-size: 14px;
color: #555;
}

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

.map-wrapper {
margin-top: 25px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-contact {
background: white;
}

.faq-list {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 25px;
}

.faq-item {
background: var(--light);
padding: 20px;
border-radius: 12px;
}

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

.faq-item p {
font-size: 13px;
}

.thankyou-page, .error-page {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(135deg, var(--primary), var(--dark));
color: white;
text-align: center;
padding: 20px;
}

.thankyou-content, .error-content {
max-width: 600px;
}

.thankyou-icon {
font-size: 60px;
color: #28a745;
margin-bottom: 20px;
background: white;
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.thankyou-page h1, .error-page h2 {
font-size: 32px;
margin-bottom: 18px;
color: white;
}

.thankyou-page p, .error-page p {
font-size: 16px;
margin-bottom: 15px;
}

.thankyou-subtext, .error-subtext {
font-size: 14px;
opacity: 0.9;
}

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

.thankyou-footer {
margin-top: 40px;
font-size: 13px;
opacity: 0.8;
}

.error-code {
font-size: 100px;
font-weight: 800;
color: var(--accent);
margin-bottom: 15px;
}

.policy-page {
background: white;
padding: 50px 0;
}

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

.update-date {
font-size: 12px;
color: #666;
margin-bottom: 30px;
}

.policy-content h2 {
margin-top: 35px;
font-size: 24px;
}

.policy-content h3 {
margin-top: 25px;
font-size: 18px;
}

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

.policy-content ul li {
margin-bottom: 10px;
font-size: 14px;
}

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

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

.footer-section h4 {
font-size: 16px;
margin-bottom: 15px;
color: var(--accent);
}

.footer-section p {
font-size: 13px;
}

.footer-section a {
display: block;
color: white;
text-decoration: none;
font-size: 13px;
margin-bottom: 10px;
transition: color 0.3s;
}

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: white;
padding: 18px;
box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
z-index: 1000;
display: none;
}

.privacy-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 {
margin: 0;
font-size: 13px;
flex: 1;
}

.popup-content button {
background: var(--secondary);
color: white;
border: none;
padding: 10px 24px;
border-radius: 20px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
}

.popup-content button:hover {
background: #e55a2b;
}

@media (max-width: 768px) {
.menu-toggle {
display: block;
}

.nav-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--dark);
flex-direction: column;
padding: 20px;
gap: 15px;
}

.nav-menu.active {
display: flex;
}

.hero-mega {
min-height: 70vh;
padding: 60px 0 40px;
}

.hero-title-mega {
font-size: 36px;
}

.hero-text-mega {
font-size: 16px;
}

.hero-stats {
gap: 30px;
}

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

h2 {
font-size: 26px;
}

h3 {
font-size: 18px;
}

.intro-grid,
.planning-content,
.contact-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.grid-2, .grid-3 {
grid-template-columns: 1fr;
}

.experience-grid,
.dest-grid,
.tips-grid,
.neighborhood-grid,
.culture-grid,
.info-grid {
grid-template-columns: 1fr;
}

section {
padding: 40px 0;
}

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

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

@media (max-width: 480px) {
body {
font-size: 13px;
}

.hero-mega {
min-height: 60vh;
padding: 50px 0 30px;
}

.hero-title-mega {
font-size: 28px;
}

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

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

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

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

h2 {
font-size: 22px;
}

section {
padding: 35px 0;
}

.logo {
font-size: 16px;
}

.exp-card,
.dest-card,
.tip-card,
.neighborhood-card,
.culture-item,
.info-card {
padding: 20px;
}
}
