:root {
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
  --text-muted: #666666;
  --card-bg: #ffffff;
  --border-color: rgba(0, 0, 0, 0.1);
  --glass-bg: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.9);
  --success-color: #00b067;
  --error-color: #ff4b2b;
  --font-main: 'Outfit', sans-serif;
  
  --accent-color: #f5a623;
  --accent-rgb: 245, 166, 35;
  --gradient-start: #ff8a00;
  --gradient-end: #ff4d00;
}

[data-mode="dark"] {
  --bg-color: #0d1117;
  --text-color: #e6edf3;
  --text-muted: #8b949e;
  --card-bg: rgba(22, 27, 34, 0.7);
  --border-color: rgba(240, 246, 252, 0.1);
  --glass-bg: rgba(22, 27, 34, 0.85);
  --header-bg: rgba(13, 17, 23, 0.9);
}

/* Dynamic Theme Gradients */
[data-theme="blue"] { --accent-color: #0070f3; --gradient-start: #0070f3; --gradient-end: #00dfd8; --accent-rgb: 0, 112, 243; }
[data-theme="purple"] { --accent-color: #7928ca; --gradient-start: #7928ca; --gradient-end: #ff0080; --accent-rgb: 121, 40, 202; }
[data-theme="orange"] { --accent-color: #f5a623; --gradient-start: #ff8a00; --gradient-end: #ff4d00; --accent-rgb: 245, 166, 35; } 
[data-theme="green"] { --accent-color: #00b09b; --gradient-start: #00b09b; --gradient-end: #96c93d; --accent-rgb: 0, 176, 155; }
[data-theme="rose"] { --accent-color: #ff4b1f; --gradient-start: #ff4b1f; --gradient-end: #ff9068; --accent-rgb: 255, 75, 31; }

html { scroll-behavior: smooth; }
* { box-sizing: border-box; padding: 0; margin: 0; }

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.6;
  transition: all 0.4s ease;
  overflow-x: hidden;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

/* Header & Logo */
header {
  position: sticky; top: 0; z-index: 1000;
  padding: 1.1rem 0;
  background: var(--header-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
}

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

.brand {
    font-size: 1.3rem; font-weight: 800;
    display: flex; align-items: center; gap: 0.8rem;
    cursor: pointer;
}
/* Wrench Icon - Theme Based */
.brand i { color: var(--accent-color); transition: 0.3s; }
/* Logo Text - Mode based (Black in Light, White in Dark) */
.brand span { color: var(--text-color); transition: 0.3s; }

.header-right { display: flex; align-items: center; gap: 2.2rem; }

/* Customizers */
.customizers { display: flex; align-items: center; gap: 1.5rem; padding-right: 1.5rem; border-right: 1px solid var(--border-color); }

.mode-toggle {
    cursor: pointer; color: var(--text-color);
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--border-color);
}

.theme-dots { display: flex; gap: 0.5rem; }
.theme-dot { width: 22px; height: 22px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: 0.3s; }
.theme-dot.active { border-color: var(--text-color); transform: scale(1.2); }

/* Nav Links & Admin Button */
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 400; font-size: 1rem; transition: 0.3s; }
.nav-links a:hover { color: var(--text-color); }

.admin-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: rgba(var(--accent-rgb), 0.05);
    color: var(--text-color) !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.admin-btn:hover { border-color: var(--accent-color); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.admin-btn i { width: 14px; height: 14px; } /* Smaller lock icon */

/* Hero Section */
.hero { padding: 4.5rem 0; }
.hero-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.06);
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 { font-size: 4.8rem; font-weight: 800; line-height: 1.05; margin-bottom: 2.2rem; letter-spacing: -1px; }
.hero-subtitle { font-size: 65px; }
#typewriter { 
    font-size: 5.2rem;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 8px;
}

/* Typewriter Cursor - Thin & Theme Based */
.typewriter-cursor {
    margin-left: 2px;
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: var(--accent-color);
    vertical-align: middle;
    animation: blink 0.8s infinite;
    transition: background 0.3s;
}

/* Fix Tagline & Trust Bar Alignment */
.trust-wrapper { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.tagline-text { font-size: 1.8rem; line-height: 1.4; margin-bottom: 0.2rem; width: 100%; }

/* Capsule / Trust Bar (Premium Design) */
/* Ultra Premium Trust Widget Overhaul */
.trust-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
  position: relative;
  z-index: 100;
  animation: floatWidget 4s ease-in-out infinite;
}

@keyframes floatWidget {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.premium-trust-unit {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 0.6rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  width: fit-content;
  margin: 0 auto;
}

[data-mode="light"] .premium-trust-unit {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.trust-segment {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  gap: 1.5rem;
}

.google-segment {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-mode="light"] .google-segment {
  background: rgba(0, 0, 0, 0.02);
}

.google-logo-wrapper {
  position: relative;
  background: white;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.google-logo-img {
  height: 20px;
}

.verified-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #1a73e8;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.rating-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.rating-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-val {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text-color);
}

.stars-row {
  display: flex;
  gap: 3px;
}

.stars-row i {
  filter: drop-shadow(0 0 4px rgba(250, 187, 5, 0.3));
}

.rating-label {
  font-size: 0.7rem;
  color: var(--accent-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.visitor-segment {
  padding-left: 2rem;
}

.visitor-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.2);
}

.visitor-data {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.visitor-count {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text-color);
}

.visitor-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .premium-trust-unit {
    flex-direction: column;
    padding: 0.5rem;
    width: 100%;
    max-width: 320px;
  }
  .visitor-segment {
    padding-left: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .google-segment {
    width: 100%;
  }
}


/* Service Cards (Premium Design) */
.card { 
    background: #ffffff !important; 
    border: 1px solid rgba(0,0,0,0.05); 
    border-radius: 24px; 
    padding: 4rem 2.5rem !important; 
    text-align: center; 
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.05); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

[data-mode="dark"] .card {
    background: #1e2530 !important;
    border-color: rgba(255,255,255,0.05);
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.3);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px -10px rgba(var(--accent-rgb), 0.15);
}

.service-card-icon {
    color: var(--accent-color);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #1a1a1a !important;
}

[data-mode="dark"] .card h3 {
    color: #ffffff !important;
}

.card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555 !important;
    margin-bottom: 0;
}

[data-mode="dark"] .card p {
    color: #a0aec0 !important;
}

.card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

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

/* Status Badge - Blip Animation */
.status-badge {
    padding: 0.6rem 1.4rem; border-radius: 30px; font-weight: 700; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 2.2rem;
    position: relative;
    transition: 0.3s;
}

.status-badge.open { 
    background: rgba(0, 176, 103, 0.1); color: #00b067; border: 1px solid rgba(0, 176, 103, 0.2);
    box-shadow: 0 0 15px rgba(0, 176, 103, 0.15);
    animation: blip-green 2s infinite;
}
.status-badge.closed { 
    background: rgba(255, 75, 43, 0.1); color: #ff4b2b; border: 1px solid rgba(255, 75, 43, 0.2);
    box-shadow: 0 0 15px rgba(255, 75, 43, 0.15);
    animation: blip-red 2s infinite;
}

@keyframes blip-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 176, 103, 0.3); }
    70% { box-shadow: 0 0 0 12px rgba(0, 176, 103, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 176, 103, 0); }
}
@keyframes blip-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.3); }
    70% { box-shadow: 0 0 0 12px rgba(255, 75, 43, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0); }
}

.hero p { font-size: 1.25rem; margin-bottom: 2.5rem; color: var(--text-muted); font-weight: 400; }

/* Buttons (Theme Aware Global Style) */
.btn {
  display: inline-flex; padding: 0.9rem 2.2rem; border-radius: 12px;
  font-weight: 700; text-decoration: none; transition: 0.3s;
  cursor: pointer; border: 1px solid var(--accent-color); gap: 0.6rem; 
  align-items: center; font-family: inherit; font-size: 1.05rem;
  background: transparent; color: var(--accent-color) !important;
}

.btn:hover, .btn-primary:hover { 
  background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end)) !important; 
  color: white !important; 
  border-color: transparent !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.2);
}

.btn-primary { 
  background: transparent; 
  border: 1px solid var(--accent-color);
  color: var(--accent-color) !important; 
}

/* Why Choose Us Section */
.why-choose-section { padding: 3rem 0; }
.why-choose-title { text-align: left; font-size: 2.25rem; margin-bottom: 3.5rem; color: var(--text-color); font-weight: 700; }
.why-choose-grid { display: flex; justify-content: center; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.choose-item { flex: 0 1 180px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 1.5rem 1rem; border-radius: 20px; transition: all 0.3s ease; }
.choose-item .icon-wrapper { color: var(--text-muted); opacity: 0.8; transition: all 0.3s ease; }
.choose-item.highlight .icon-wrapper { color: var(--accent-color); opacity: 1; }
.choose-item p { color: var(--text-muted); font-weight: 500; line-height: 1.4; font-size: 1rem; margin: 0; }
.choose-item.highlight p { font-weight: 700; color: var(--accent-color); }
.choose-item:hover { background: rgba(var(--accent-rgb), 0.03); transform: translateY(-8px); }
.choose-item:hover .icon-wrapper { color: var(--accent-color); opacity: 1; }

/* Professional-Premium Experts Final Design */
.experts-section { padding: 3rem 0; }

.owners-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 3rem; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.expert-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.05);
}

.expert-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(var(--accent-rgb), 0.1);
}

.expert-image-wrapper {
    width: 180px;
    height: 180px;
    margin-bottom: 2rem;
    position: relative;
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    padding: 5px;
    background: var(--bg-color);
    transition: 0.3s;
}

.expert-card:hover .expert-image {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2);
}

.expert-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.expert-experience {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.05);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    display: inline-block;
}

.expert-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--accent-color) !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}

.expert-call-btn:hover {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end)) !important;
    color: white !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--accent-rgb), 0.3);
    border-color: transparent !important;
}

@media (max-width: 768px) {
    .owners-grid { grid-template-columns: 1fr; gap: 2rem; }
}





/* Social Feed Section */
.social-section { padding: 1rem 0 5rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text-color); }
.section-subtitle { font-size: 1.1rem; opacity: 0.7; margin-top: 0.5rem; }

.gradient-text {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.social-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; }
.social-card { border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
.card-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.youtube-badge { background: rgba(var(--accent-rgb), 0.1); color: var(--accent-color); }
.instagram-badge { background: rgba(var(--accent-rgb), 0.1); color: var(--accent-color); }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.insta-preview { position: relative; height: 100%; min-height: 300px; overflow: hidden; }
.insta-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; gap: 0.8rem; transition: background 0.4s; padding: 1rem; text-align: center; }
.instagram-card:hover .insta-overlay { background: rgba(0, 0, 0, 0.65); }

.insta-brand-circle {
    width: 80px; height: 80px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
    margin-bottom: 0.5rem;
}
.insta-handle { color: #ffffff; font-weight: 700; font-size: 1.4rem; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.insta-stats { color: #ffffff; font-size: 1rem; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,0.8); letter-spacing: 0.5px; }
.instagram-follow-btn, .youtube-subscribe-btn { border-color: var(--accent-color) !important; color: var(--accent-color) !important; font-weight: 700 !important; }
.instagram-follow-btn:hover, .youtube-subscribe-btn:hover { background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end)) !important; color: white !important; border-color: transparent !important; }

.preview-img { width: 100%; height: 100%; object-fit: cover; filter: blur(1px); transition: transform 0.5s; }
.instagram-card:hover .preview-img { transform: scale(1.1); filter: blur(0); }
.card-footer { padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; background: rgba(255, 255, 255, 0.05); }


.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
}

/* Forms & Inputs (Updated for Compact Premium Design) */
.booking-card { 
    padding: 2.2rem; 
    border-radius: 20px; 
    text-align: left; 
    max-width: 750px; 
    margin: 0 auto; 
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

[data-mode="dark"] .booking-card {
    background: var(--card-bg);
    border-color: rgba(255,255,255,0.05);
}

.card-internal-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 2rem; color: var(--text-color); letter-spacing: -0.5px; text-align: center; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group.full-width { grid-column: span 2; }
.form-group label { display: block; margin-bottom: 0.6rem; font-weight: 700; font-size: 0.95rem; color: var(--text-color); }

input, select, textarea { 
    width: 100%; padding: 1.1rem 1.4rem; border-radius: 12px; 
    background: rgba(0,0,0,0.05); border: 1px solid transparent; 
    color: var(--text-color); font-family: inherit; transition: all 0.3s; 
    font-size: 1rem; 
}
[data-mode="dark"] input, [data-mode="dark"] select, [data-mode="dark"] textarea {
    background: rgba(255,255,255,0.08);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent-color); background: var(--bg-color); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1); }

.btn-full { width: 100%; justify-content: center; padding: 1.2rem; font-size: 1.1rem; margin-top: 1rem; }
.form-footer-note { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-muted); opacity: 0.8; }

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.contact-info-card { padding: 3rem; display: flex; flex-direction: column; gap: 2.2rem; border-radius: 24px; text-align: left; }
.contact-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.contact-icon-wrapper { min-width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(var(--accent-rgb), 0.1); color: var(--accent-color); }
.contact-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); margin-bottom: 0.4rem; font-weight: 700; }
.contact-value { font-weight: 600; font-size: 1rem; line-height: 1.6; }

/* Premium Footer Overhaul */
.footer-section { 
    background: #05070a !important; 
    border-top: 1px solid rgba(255,255,255,0.03); 
    padding: 7rem 0 0; 
    margin-top: 8rem; 
    color: #ffffff !important;
}

.footer-section p, .footer-section a, .footer-section li {
    color: #ffffff !important;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr; 
    gap: 4rem; 
    margin-bottom: 5rem; 
}

.footer-brand { 
    font-size: 1.8rem; 
    font-weight: 800; 
    margin-bottom: 2rem; 
    display: flex; 
    align-items: center; 
    gap: 0.8rem;
    text-decoration: none; 
    color: inherit; 
}
.footer-brand i { color: var(--accent-color); }

.footer-mission { font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; opacity: 0.7; }

.footer-title { 
    font-size: 1.2rem; 
    font-weight: 800; 
    margin-bottom: 2rem; 
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1.2rem; }
.footer-links a { 
    font-size: 1rem; 
    opacity: 0.6; 
    transition: all 0.3s; 
    text-decoration: none; 
    color: inherit; 
    display: inline-block;
}
.footer-links a:hover { 
    color: var(--accent-color); 
    opacity: 1; 
    transform: translateX(10px); 
}

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.footer-contact li { 
    display: flex; 
    gap: 1.2rem; 
    font-size: 1rem; 
    opacity: 0.7; 
    line-height: 1.6; 
    align-items: flex-start;
}
.footer-contact li i { color: var(--accent-color); margin-top: 4px; }

.footer-social { display: flex; gap: 1.2rem; margin-top: 2rem; }
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}

[data-mode="light"] .social-icon {
    background: rgba(0,0,0,0.03);
    color: #1a1a1a;
    border-color: rgba(0,0,0,0.08);
}

.social-icon:hover {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white !important;
    transform: translateY(-5px) rotate(360deg);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.3);
}

.footer-bottom { 
    padding: 2.5rem 0; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 0.9rem; 
    opacity: 0.5; 
}
[data-mode="light"] .footer-bottom { border-top-color: rgba(0,0,0,0.05); }

/* Premium Motion System */
[data-anim] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

[data-anim="fade-up"] { transform: translateY(50px); }
[data-anim="fade-down"] { transform: translateY(-50px); }
[data-anim="fade-left"] { transform: translateX(50px); }
[data-anim="fade-right"] { transform: translateX(-50px); }
[data-anim="zoom-in"] { transform: scale(0.9); }
[data-anim="zoom-out"] { transform: scale(1.1); }

[data-anim].anim-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating { animation: float 4s ease-in-out infinite; }

/* 3D Perspective for Cards */
.expert-card, .service-card, .booking-card, .social-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.expert-card:hover, .service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(var(--accent-rgb), 0.15);
}

/* Floating WA */
.floating-wa { 
    position: fixed; bottom: 30px; right: 30px; 
    background: #25D366; color: white; width: 60px; height: 60px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 9999; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    text-decoration: none; 
    animation: float 3s ease-in-out infinite;
}
.floating-wa:hover { transform: scale(1.2) rotate(15deg); background: #20BA5A; }
.wa-tip { position: absolute; right: 75px; background: white; color: black; padding: 0.6rem 1.2rem; border-radius: 12px; font-size: 0.9rem; font-weight: 700; white-space: nowrap; box-shadow: 0 10px 25px rgba(0,0,0,0.15); opacity: 0; transform: translateX(20px); transition: all 0.3s; pointer-events: none; }
.floating-wa:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* Responsive Overhaul */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .hero h1 { font-size: 3.5rem; }
    .hero-subtitle { font-size: 45px; }
    #typewriter { font-size: 3.8rem; }
}

@media (max-width: 768px) {
    header .container { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
    .header-right { flex-direction: column; gap: 1.5rem; width: 100%; }
    .nav-links { flex-wrap: wrap; justify-content: center; width: 100%; }
    
    .hero { padding: 4rem 1.5rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero-subtitle { font-size: 32px; }
    #typewriter { font-size: 3rem; }
    .hero-card { padding: 3rem 1.5rem; }
    
    .trust-section { margin-bottom: 3rem; }
    .capsule-container { flex-direction: column; border-radius: 24px; padding: 1.5rem; gap: 1.5rem; width: 100% !important; max-width: 320px; margin: 0 auto; }
    .capsule-container .divider { display: none; }
    
    [class*="grid"], [class*="cols-"], .social-grid, .owners-grid, .contact-grid { 
        grid-template-columns: 1fr !important; 
        gap: 1.5rem !important; 
    }
    
    .contact-info-card { padding: 1.5rem; }
    
    .footer-grid { grid-template-columns: 1fr !important; gap: 2.5rem; text-align: center; }
    .footer-contact li { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    #typewriter { font-size: 2.4rem; }
    .hero-subtitle { font-size: 26px; }
    .btn { width: 100%; justify-content: center; }
    .hero .flex { flex-direction: column; }
    .why-choose-title { font-size: 1.6rem; text-align: center; }
}
