/* Apply to body or main wrapper */
body {
  background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  /* Add padding for iOS status bar */
  padding-top: env(safe-area-inset-top);
  /* Ensure content doesn't go under status bar */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* If you have a fixed header, apply this to it */
.header {
  padding-top: env(safe-area-inset-top);
}



/* ===== PAYMENT SECTION ===== */

.payment-section {
padding: 40px 20px;
position: relative;
overflow: hidden;
z-index: 10;
isolation: isolate;
}

.payment-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(100,116,139,0.08)"/><circle cx="80" cy="40" r="1.5" fill="rgba(100,116,139,0.06)"/><circle cx="40" cy="70" r="1" fill="rgba(100,116,139,0.05)"/><circle cx="90" cy="80" r="1.2" fill="rgba(100,116,139,0.07)"/><circle cx="10" cy="60" r="0.8" fill="rgba(100,116,139,0.04)"/></svg>') repeat;
animation: float 20s ease-in-out infinite;
}

.payment-container {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 10;
}

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

/* Also update text colors for better contrast on light background */
.payment-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
  color: transparent;
  margin: 0 0 15px 0;

}

.payment-subtitle {
font-size: 1.2rem;
color: #ffffff;
margin: 0;
font-weight: 300;
}

.payment-card {
background: rgba(255,255,255,0.95);
backdrop-filter: blur(20px);
border-radius: 24px;
padding: 60px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
border: 1px solid rgba(255,255,255,0.2);
margin-bottom: 40px;
}

.pricing-info {
margin-bottom: 40px;
}

.price-display {
display: flex;
align-items: baseline;
justify-content: center;
margin-bottom: 30px;
gap: 8px;
}

.currency {
font-size: 1.2rem;
color: #666;
font-weight: 500;
}

.amount {
font-size: 3.5rem;
font-weight: 800;
color: #333;
font-family: 'Inter', sans-serif;
}

.period {
font-size: 1.1rem;
color: #666;
font-weight: 400;
}

.price-includes {
display: grid;
gap: 15px;
}

.include-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 0;
}

.check-icon {
width: 20px;
height: 20px;
color: #10b981;
stroke-width: 3;
flex-shrink: 0;
}

.include-item span {
color: #555;
font-weight: 500;
}

.vipps-button {
width: 100%;
background: linear-gradient(135deg, #ff5b24 0%, #ff8f00 100%);
border: none;
border-radius: 16px;
padding: 20px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 8px 24px rgba(255, 91, 36, 0.3);
margin-bottom: 25px;
}

.vipps-button:hover {
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(255, 91, 36, 0.4);
}

.vipps-button:active {
transform: translateY(0);
}

.vipps-content {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}

.vipps-text {
color: white;
font-size: 1.2rem;
font-weight: 600;
font-family: 'Inter', sans-serif;
}

.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.spinner {
width: 24px;
height: 24px;
border: 3px solid rgba(255,255,255,0.3);
border-top: 3px solid white;
border-radius: 50%;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.payment-security {
margin-bottom: 20px;
}

.security-badges {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 15px;
}

.security-badge {
display: flex;
align-items: center;
gap: 8px;
color: #666;
}

.shield-icon,
.lock-icon {
width: 18px;
height: 18px;
stroke-width: 2;
}

.security-badge span {
font-size: 0.9rem;
font-weight: 500;
}

.payment-terms {
text-align: center;
font-size: 0.85rem;
color: #777;
margin: 0;
}

.terms-link {
color: #667eea;
text-decoration: none;
font-weight: 500;
}

.terms-link:hover {
text-decoration: underline;
}

.payment-support {
text-align: center;
padding-top: 20px;
border-top: 1px solid #eee;
}

.support-text {
margin: 0;
font-size: 0.9rem;
color: #666;
}

.support-link {
color: #667eea;
text-decoration: none;
font-weight: 500;
}

.support-link:hover {
text-decoration: underline;
}

@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-10px) rotate(5deg); }
}

@media (max-width: 768px) {
.payment-section {
padding: 60px 15px;
}

.payment-title {
font-size: 2.2rem;
}

.payment-card {
padding: 60px 20px;
}

.amount {
font-size: 2.8rem;
}

.security-badges {
flex-direction: column;
gap: 15px;
align-items: center;
}

.trust-indicators {
grid-template-columns: 1fr;
gap: 20px;
}

.trust-number {
font-size: 1.6rem;
}
}

@media (max-width: 480px) {
.price-display {
flex-direction: column;
gap: 0;
align-items: center;
}

.include-item {
padding: 8px 0;
}

.include-item span {
font-size: 0.9rem;
}
}


/* ===== instruction section DESIGN ===== */
.sauna-instructions-section {
padding: 80px 20px;
position: relative;
overflow: hidden;
min-height: 100vh;
}

.sauna-instructions-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 30%),
radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 30%),
radial-gradient(circle at 40% 90%, rgba(79, 70, 229, 0.1) 0%, transparent 30%);
pointer-events: none;
}

.instructions-container {
max-width: 1000px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.instructions-header {
text-align: center;
margin-bottom: 60px;
color: white;
}

.instructions-header h2 {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 16px;
background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.instructions-header p {
font-size: 1.2rem;
opacity: 0.9;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.instructions-grid {
  font-family: 'Inter', sans-serif;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-bottom: 60px;
}

.instruction-card {
  font-family: 'Inter', sans-serif;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 20px;
padding: 30px;
color: white;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.instruction-card::before {
content: attr(data-step);
position: absolute;
top: 20px;
right: 20px;
width: 30px;
height: 30px;
background: linear-gradient(135deg, #fbbf24, #f59e0b);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.9rem;
color: #1e1b4b;
}

.instruction-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
border-color: rgba(251, 191, 36, 0.3);
}

.card-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #fbbf24, #f59e0b);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
color: #1e1b4b;
}

.instruction-card h3 {
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 12px;
color: #fbbf24;
}

.instruction-card p {
opacity: 0.9;
margin-bottom: 20px;
line-height: 1.6;
}

.step-details ul {
list-style: none;
padding: 0;
margin: 0;
}

.step-details li {
padding: 8px 0;
padding-left: 24px;
position: relative;
opacity: 0.8;
font-size: 0.95rem;
}

.step-details li::before {
content: '✓';
position: absolute;
left: 0;
color: #fbbf24;
font-weight: 700;
}

.video-trigger {
background: linear-gradient(135deg, #8b5cf6, #7c3aed);
border: none;
border-radius: 12px;
padding: 12px 20px;
color: white;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
margin-top: 16px;
}

.video-trigger:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.weather-section {
margin-bottom: 60px;
}

.weather-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 20px;
padding: 30px;
color: white;
max-width: 600px;
margin: 0 auto;
}

.weather-card h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 20px;
color: #fbbf24;
text-align: center;
}

.weather-display {
background: rgba(0, 0, 0, 0.2);
border-radius: 12px;
padding: 20px;
margin-bottom: 16px;
}

.weather-loading {
display: flex;
align-items: center;
gap: 12px;
justify-content: center;
}

.loading-spinner {
width: 20px;
height: 20px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-top: 2px solid #fbbf24;
border-radius: 50%;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.weather-info {
text-align: center;
}

.weather-main {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 15px;
}

.weather-temp {
font-size: 2rem;
font-weight: 700;
color: #fbbf24;
}

.weather-desc {
font-size: 1.1rem;
text-transform: capitalize;
opacity: 0.9;
}

.weather-details {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 15px;
margin-top: 15px;
}

.weather-detail {
text-align: center;
padding: 10px;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
}

.weather-detail-label {
font-size: 0.8rem;
opacity: 0.7;
margin-bottom: 5px;
}

.weather-detail-value {
font-weight: 600;
color: #fbbf24;
}

.weather-error {
text-align: center;
color: #ff6b6b;
padding: 20px;
}

.weather-tip {
text-align: center;
opacity: 0.8;
font-size: 0.95rem;
margin: 0;
}

/* Video Modal */
.video-modal {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(10px);
}

.modal-content {
position: relative;
background: #1e1b4b;
margin: 5% auto;
padding: 0;
border-radius: 20px;
width: 90%;
max-width: 800px;
overflow: hidden;
}

.modal-close {
position: absolute;
top: 15px;
right: 20px;
color: white;
font-size: 2rem;
font-weight: 700;
cursor: pointer;
z-index: 10000;
background: none;
border: none;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(0, 0, 0, 0.5);
transition: all 0.3s ease;
}

.modal-close:hover {
background: rgba(0, 0, 0, 0.8);
}

.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
}

.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.instructions-header h2 {
font-size: 2.2rem;
}

.instructions-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.instruction-card {
padding: 24px;
}

.weather-card {
padding: 30px 20px;
}

.modal-content {
width: 95%;
margin: 10% auto;
}

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

/* Touch device optimizations */
@media (hover: none) {
.instruction-card:hover {
transform: none;
}

.instruction-card:active {
transform: scale(0.98);
}
}


/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%);
position: relative;
width: 100%;
overflow: hidden;
perspective: 1000px;
}

.social-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.4" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
pointer-events: none;
}

/* ===== CONTAINER ===== */
.social-container {
background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%);
max-width: 100%;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 1;
}


/* ===== GRID LAYOUT ===== */
.social-grid {
display: grid;
grid-template-columns: 1fr;
text-align: center;
gap: 40px;
margin: 60px 0;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

/* ===== PLATFORM CARDS ===== */
.platform-card {
background: rgba(255,255,255,0.08);
backdrop-filter: blur(25px) saturate(120%);
border-radius: 32px;
padding: 40px 30px;
text-align: center;
border: 1px solid rgba(255,255,255,0.18);
box-shadow:
0 20px 40px rgba(0,0,0,0.1),
0 8px 16px rgba(0,0,0,0.1),
inset 0 1px 0 rgba(255,255,255,0.2);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
transform-style: preserve-3d;
}

.platform-card:hover {
transform: translateY(-8px) rotateX(2deg);
box-shadow:
0 32px 64px rgba(0,0,0,0.15),
0 16px 32px rgba(0,0,0,0.12),
inset 0 1px 0 rgba(255,255,255,0.3);
backdrop-filter: blur(30px) saturate(140%);
}

.platform-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
background: var(--platform-color);
border-radius: 32px 32px 0 0;
}

.platform-card::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
pointer-events: none;
border-radius: 32px;
}

/* ===== PLATFORM SPECIFIC CARDS ===== */
.instagram-card {
--platform-color: linear-gradient(45deg, #833AB4, #E4405F, #F56040);
}

.facebook-card {
--platform-color: #1877F2;
}

/* Google Card - White Box */
.google-card {
--platform-color: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
background: rgba(255,255,255,0.98);
backdrop-filter: blur(25px) saturate(120%);
border: 1px solid rgba(255,255,255,0.9);
color: #333;
box-shadow:
0 20px 40px rgba(0,0,0,0.15),
0 8px 16px rgba(0,0,0,0.1),
inset 0 1px 0 rgba(255,255,255,1);
}

.google-card:hover {
background: rgba(255,255,255,1);
box-shadow:
0 32px 64px rgba(0,0,0,0.2),
0 16px 32px rgba(0,0,0,0.15),
inset 0 1px 0 rgba(255,255,255,1);
}

.google-card::before {
background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.google-card::after {
background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
}

/* ===== PLATFORM CONTENT ===== */
.platform-icon {
font-size: 3.5rem;
margin-bottom: 25px;
display: block;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.platform-title {
font-size: 1.8rem;
font-family: 'Inter', sans-serif;
font-weight: 700;
margin-bottom: 18px;
color: #ffffff;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.google-card .platform-title {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
font-weight: 800;
font-size: 2rem;
background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
background-size: 200% 200%;
animation: gradient-shift 3s ease-in-out infinite;
text-shadow: none;
}

@keyframes gradient-shift {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}

.platform-description {
font-size: 1.1rem;
font-family: 'Inter', sans-serif;
margin-bottom: 25px;
opacity: 0.9;
line-height: 1.6;
color: #ffffff;
}

.google-card .platform-description {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
font-weight: 400;
font-size: 1.15rem;
color: #555;
opacity: 0.8;
}

/* ===== PREVIEW SECTIONS ===== */
.instagram-preview, .google-preview, .facebook-embed {
background: rgba(255,255,255,0.95);
backdrop-filter: blur(20px);
border-radius: 20px;
padding: 20px;
margin: 20px 0;
color: #333;
text-align: left;
font-size: 14px;
box-shadow:
0 12px 24px rgba(0,0,0,0.1),
0 4px 8px rgba(0,0,0,0.05),
inset 0 1px 0 rgba(255,255,255,0.8);
border: 1px solid rgba(255,255,255,0.3);
transition: all 0.3s ease;
}

.google-card .google-preview {
background: rgba(248, 250, 252, 0.95);
border: 1px solid rgba(0,0,0,0.1);
box-shadow:
0 8px 16px rgba(0,0,0,0.08),
0 2px 4px rgba(0,0,0,0.05),
inset 0 1px 0 rgba(255,255,255,0.9);
}

.instagram-preview:hover, .google-preview:hover, .facebook-embed:hover {
transform: translateY(-2px);
box-shadow:
0 16px 32px rgba(0,0,0,0.12),
0 6px 12px rgba(0,0,0,0.08),
inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ===== PREVIEW ELEMENTS ===== */
.post-header, .review-header {
display: flex;
align-items: center;
margin-bottom: 15px;
}

.profile-pic {
width: 36px;
height: 36px;
border-radius: 50%;
background: linear-gradient(45deg, #833AB4, #E4405F);
margin-right: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
font-size: 12px;
box-shadow: 0 4px 8px rgba(131,58,180,0.3);
}

.google-logo {
width: 24px;
height: 24px;
margin-right: 10px;
background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 700;
font-size: 11px;
font-family: 'Inter', sans-serif;
box-shadow: 0 4px 8px rgba(66,133,244,0.3);
}

.stars {
color: #FFD700;
font-size: 18px;
margin-bottom: 10px;
filter: drop-shadow(0 2px 4px rgba(255,215,0,0.3));
}

.review-text {
line-height: 1.4;
color: #1e293b;
font-style: italic;
font-weight: 400;
font-family: 'Inter', sans-serif;
margin-bottom: 10px;
}

.review-author {
font-size: 11px;
color: #64748b;
font-weight: 500;
font-family: 'Inter', sans-serif;
}

/* ===== BUTTONS ===== */
.platform-btn {
border: none;
padding: 18px 30px;
font-size: 1.1rem;
font-weight: 700;
border-radius: 60px;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
margin: 20px 0;
width: 100%;
max-width: 280px;
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
}

.platform-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.5s ease;
}

.platform-btn:hover::before {
left: 100%;
}

/* Instagram Button */
.instagram-btn {
background: linear-gradient(45deg, #833AB4, #E4405F);
color: white;
box-shadow:
0 12px 30px rgba(131,58,180,0.3),
0 4px 8px rgba(131,58,180,0.2);
border: 1px solid rgba(255,255,255,0.2);
}

.instagram-btn:hover {
transform: translateY(-3px) scale(1.02);
box-shadow:
0 20px 40px rgba(131,58,180,0.4),
0 8px 16px rgba(131,58,180,0.3);
}

/* Facebook Button */
.facebook-btn {
background: rgba(255,255,255,0.9);
color: #1877F2;
border: 2px solid #1877F2;
box-shadow:
0 12px 30px rgba(24,119,242,0.2),
0 4px 8px rgba(24,119,242,0.1);
}

.facebook-btn:hover {
background: #1877F2;
color: white;
transform: translateY(-3px) scale(1.02);
box-shadow:
0 20px 40px rgba(24,119,242,0.3),
0 8px 16px rgba(24,119,242,0.2);
}

/* Google Button */
.google-btn {
background: rgba(255,255,255,0.9);
color: #4285F4;
border: 2px solid transparent;
background-origin: border-box;
background-clip: content-box, border-box;
box-shadow:
0 12px 30px rgba(66,133,244,0.2),
0 4px 8px rgba(66,133,244,0.1);
font-family: 'Inter', sans-serif;
font-weight: 700;
}

.google-btn:hover {
background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
color: white;
transform: translateY(-3px) scale(1.02);
box-shadow:
0 20px 40px rgba(66,133,244,0.3),
0 8px 16px rgba(66,133,244,0.2);
}

.google-card small {
opacity: 0.6;
font-size: 0.9rem;
font-family: 'Inter', sans-serif;
font-weight: 400;
margin-top: 10px;
display: block;
color: #666;
}

/* ===== INSTAGRAM GALLERY ===== */
.instagram-gallery-section {
margin: 50px 0 30px 0;
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(25px) saturate(120%);
border-radius: 32px;
padding: 35px 25px;
border: 1px solid rgba(255, 255, 255, 0.18);
box-shadow:
0 20px 40px rgba(0,0,0,0.1),
inset 0 1px 0 rgba(255,255,255,0.2);
}

.gallery-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
flex-wrap: wrap;
gap: 15px;
}

.gallery-header h3 {
color: white;
font-size: 1.8rem;
font-weight: 700;
margin: 0;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.view-all-link {
color: #FFD700;
text-decoration: none;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
font-size: 1.1rem;
padding: 8px 16px;
border-radius: 20px;
background: rgba(255,215,0,0.1);
backdrop-filter: blur(10px);
}

.view-all-link:hover {
transform: translateX(5px);
color: #FFF;
background: rgba(255,215,0,0.2);
}

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

.photo-item {
position: relative;
aspect-ratio: 1/1;
border-radius: 16px;
overflow: hidden;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow:
0 8px 16px rgba(0,0,0,0.1),
0 4px 8px rgba(0,0,0,0.1);
}

.photo-item:hover {
transform: scale(1.05) translateY(-4px);
box-shadow:
0 20px 40px rgba(0,0,0,0.2),
0 8px 16px rgba(0,0,0,0.15);
}

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

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

.photo-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.8) 100%);
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 16px;
opacity: 0;
transition: all 0.3s ease;
backdrop-filter: blur(2px);
}

.photo-item:hover .photo-overlay {
opacity: 1;
}

.photo-stats {
display: flex;
gap: 15px;
color: white;
font-size: 0.9rem;
align-self: flex-start;
font-weight: 600;
}

.share-photo {
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.3);
border-radius: 50%;
width: 42px;
height: 42px;
color: white;
cursor: pointer;
transition: all 0.3s ease;
align-self: flex-end;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
}

.share-photo:hover {
background: #FFD700;
color: #1a1a1a;
transform: scale(1.1);
}

/* ===== BONUS BANNER ===== */
.bonus-banner {
background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
font-family: 'Inter', sans-serif;
color: #1a1a1a;
border-radius: 24px;
padding: 25px;
margin: 40px 0 25px 0;
font-weight: 700;
box-shadow:
0 15px 35px rgba(255,215,0,0.3),
0 5px 15px rgba(255,215,0,0.2);
border: 2px solid rgba(255,255,255,0.3);
backdrop-filter: blur(10px);
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
font-size: 1.1rem;
}

/* ===== SOCIAL STATS ===== */
.social-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 20px;
margin-top: 30px;
}

.stat-item {
background: rgba(255,255,255,0.08);
backdrop-filter: blur(20px);
border-radius: 20px;
padding: 22px 18px;
text-align: center;
border: 1px solid rgba(255,255,255,0.15);
transition: all 0.3s ease;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.stat-item:hover {
transform: translateY(-2px);
background: rgba(255,255,255,0.12);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.stat-number {
font-size: 1.8rem;
font-weight: 800;
display: block;
color: #ffffff;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
font-size: 0.9rem;
opacity: 0.8;
margin-top: 6px;
  color: #ffffff;
font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
.photo-grid {
grid-template-columns: 1fr;
}

.social-grid {
gap: 30px;
}

.platform-card {
padding: 30px 20px;
}

.social-header {
font-size: 2.2rem;
}

.platform-title {
font-size: 1.6rem;
}
}


/* ===== CONTACT SUPPORT SECTION ===== */
.contact-support-section {
padding: 80px 20px;
position: relative;
overflow: hidden;
min-height: 100vh;
color: white;
isolation: isolate;
}

.contact-support-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 40%);
pointer-events: none;
}

.contact-container {
max-width: 1000px;
font-family: 'Inter', sans-serif;
margin: 0 auto;
position: relative;
z-index: 1;
}

.contact-header {
text-align: center;
font-family: 'Inter', sans-serif;
margin-bottom: 60px;
}

.contact-header h2 {
font-size: 2.8rem;
font-family: 'Inter', sans-serif;
font-weight: 700;
margin-bottom: 16px;
background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.contact-header p {
font-family: 'Inter', sans-serif;
font-size: 1.2rem;
opacity: 0.9;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

/* Emergency Contact */
.emergency-contact {
font-family: 'Inter', sans-serif;
margin-bottom: 60px;
}

.emergency-card {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #dc2626, #b91c1c);
border-radius: 20px;
padding: 30px;
text-align: center;
box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency-icon {
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
}

.emergency-card h3 {
font-family: 'Inter', sans-serif;
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 20px;
color: white;
}

.emergency-numbers {
font-family: 'Inter', sans-serif;
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 20px;
}

.emergency-number {
font-family: 'Inter', sans-serif;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(255, 255, 255, 0.1);
padding: 12px 20px;
border-radius: 12px;
}

.emergency-number .label {
font-family: 'Inter', sans-serif;
font-weight: 600;
}

.emergency-number .number {
font-family: 'Inter', sans-serif;
color: white;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
padding: 8px 16px;
background: rgba(255, 255, 255, 0.2);
border-radius: 8px;
transition: all 0.3s ease;
}

.emergency-number .number:hover {
background: rgba(255, 255, 255, 0.3);
}

.emergency-note {
opacity: 0.9;
font-size: 0.95rem;
margin: 0;
}

/* Contact Grid */
.contact-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
margin-bottom: 60px;
}

.contact-info-card,
.live-chat-card {
font-family: 'Inter', sans-serif;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 20px;
padding: 30px;
}

.contact-info-card h3,
.live-chat-card h3 {
font-family: 'Inter', sans-serif;
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 24px;
color: #fbbf24;
}

.contact-item {
font-family: 'Inter', sans-serif;
display: flex;
align-items: flex-start;
gap: 16px;
margin-bottom: 20px;
padding: 16px;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
transition: all 0.3s ease;
}

.contact-icon {
width: 24px;
height: 24px;
color: #fbbf24;
flex-shrink: 0;
margin-top: 2px;
}

.contact-label {
font-family: 'Inter', sans-serif;
display: block;
font-weight: 600;
color: #fbbf24;
margin-bottom: 4px;
font-size: 0.9rem;
}

.contact-value {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}

.contact-value:hover {
color: #fbbf24;
}

/* Chat Section */
.live-chat-card p {
font-family: 'Inter', sans-serif;
opacity: 0.9;
margin-bottom: 16px;
}

.chat-status {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 20px;
}

.status-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
background: #10b981;
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

.chat-btn {
width: 100%;
background: linear-gradient(135deg, #10b981, #059669);
border: none;
border-radius: 12px;
padding: 16px;
color: white;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-bottom: 20px;
}

.chat-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.quick-actions h4 {
color: #fbbf24;
margin-bottom: 12px;
font-size: 0.9rem;
}

.quick-action {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
padding: 8px 12px;
color: white;
font-size: 0.8rem;
cursor: pointer;
transition: all 0.3s ease;
margin: 4px 4px 4px 0;
display: inline-flex;
align-items: center;
gap: 6px;
}

.quick-action:hover {
background: rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq-section {
font-family: 'Inter', sans-serif;
margin-bottom: 20px;
}

.faq-section h3 {
font-family: 'Inter', sans-serif;
font-size: 1.8rem;
font-weight: 600;
margin-bottom: 30px;
color: #fbbf24;
text-align: center;
}

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

.faq-item {
font-family: 'Inter', sans-serif;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 16px;
margin-bottom: 16px;
overflow: hidden;
}

.faq-question {
font-family: 'Inter', sans-serif;
padding: 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}

.faq-question:hover {
background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
font-weight: 600;
color: white;
}

.faq-icon {
color: #fbbf24;
transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
transform: rotate(180deg);
}

.faq-answer {
font-family: 'Inter', sans-serif;
padding: 0 20px;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
padding: 0 20px 20px 20px;
max-height: 200px;
}

.faq-answer p {
font-family: 'Inter', sans-serif;
opacity: 0.9;
line-height: 1.6;
margin: 0;
color: white;
}


.map-container {
border-radius: 16px;
margin-bottom: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Social Support CTA */
.social-support-cta {
text-align: center;
font-family: 'Inter', sans-serif;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 20px;
padding: 40px 40px;
}

.social-support-cta h3 {
font-size: 1.6rem;
font-weight: 600;
margin-bottom: 12px;
color: #fbbf24;
}

.social-support-cta p {
opacity: 0.9;
margin-bottom: 30px;
}

.social-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.social-follow {
padding: 24px 24px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}

.social-follow.instagram {
background: linear-gradient(135deg, #833AB4, #E4405F);
color: white;
}

.social-follow.facebook {
background: #1877F2;
color: white;
}

.social-follow:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
.social-grid.extended {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
.social-section {
padding: 50px 0;
}

.social-container {
padding: 0 15px;
}

.social-header {
font-size: 2.2rem;
}

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

.social-grid.extended {
grid-template-columns: 1fr;
}

.platform-card {
padding: 25px 15px;
}

.platform-title {
font-size: 1.4rem;
}

.instagram-gallery-section {
padding: 25px 15px;
margin: 40px 0 25px 0;
}

.gallery-header {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}

.photo-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}

.social-stats {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}

.contact-support-section {
padding: 60px 15px;
min-height: auto;
}

.contact-header h2 {
font-size: 2.2rem;
}

.contact-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.location-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.social-buttons {
flex-direction: column;
align-items: center;
}

.social-follow {
width: 100%;
max-width: 300px;
justify-content: center;
}
}

@media (max-width: 480px) {
.social-header {
font-size: 1.9rem;
}

.gallery-header h3 {
font-size: 1.4rem;
}

.bonus-banner {
padding: 15px;
font-size: 0.9rem;
}

.platform-title {
font-size: 1.2rem;
}

.platform-description {
font-size: 0.9rem;
}
}

/* Add specific iPhone sizing */
@media (max-width: 480px) {
  .social-support-cta {
    padding: 20px 10px; /* Even tighter padding for very small screens */
  }
  
  .social-follow {
    max-width: 260px; /* Further reduce button width */
    padding: 10px 20px; /* Reduce button padding */
  }
}

/* iPhone 12 specific (390px) */
@media (max-width: 390px) {
  .social-follow {
    max-width: 250px;
  }
}


/* ===== SITE HEADER ===== */
.site-header {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  position: relative;
  top: 0;
  z-index: 1000;
  isolation: isolate;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Brand/Logo */
.header-brand {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transition: left 0.6s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: #fbbf24;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Header Actions */
.header-actions {
  flex-shrink: 0;
}

.session-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}

.status-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #10b981;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 0;
  }
  
  .header-container {
    padding: 0 15px;
    gap: 20px;
    flex-direction: column;
  }
  
  .header-nav {
    gap: 15px;
    order: 3;
    width: 100%;
    justify-content: center;
  }
  
  .nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-icon {
    font-size: 1.5rem;
    min-width: 40px;
    min-height: 40px;
  }
  
  .header-actions {
    order: 2;
  }
}

@media (max-width: 480px) {
  .header-nav {
    gap: 10px;
  }
  
  .nav-link {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .session-status {
    padding: 8px 12px;
  }
}

/* Sticky Navigation for Mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    transition: all 0.3s ease;
  }
  
  .header-container {
    padding: 0 15px;
    gap: 20px;
    flex-direction: column;
    transition: all 0.3s ease;
  }
  
  /* Hide brand and actions when scrolling */
  .header-brand,
  .header-actions {
    transition: all 0.3s ease;
  }
  
  /* Scrolled state - triggered by JavaScript */
  .site-header.scrolled {
    padding: 10px 0;
  }
  
  .site-header.scrolled .header-brand,
  .site-header.scrolled .header-actions {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    max-height: 0;
    margin: 0;
    overflow: hidden;
  }
  
  .site-header.scrolled .header-container {
    gap: 0;
  }
  
  .header-nav {
    gap: 15px;
    order: 3;
    width: 100%;
    justify-content: center;
  }
  
  .nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-icon {
    font-size: 1.5rem;
    min-width: 40px;
    min-height: 40px;
  }
  
  .header-actions {
    order: 2;
  }
}
