/* ==========================================
   CLASSIC FITNESS GYM - ENHANCED STYLES
   Modern, Professional, Unique Design
   ========================================== */

   :root {
    /* Colors */
    --bg-soft: #f8fafc;
    --bg: #ffffff;
    --bg2: #f1f5f9;
    
    --text: #0f172a;
    --text-light: #64748b;
    --muted: #94a3b8;
    
    --line: #e2e8f0;
    --card: #ffffff;
    
    --black: #0f172a;
    --black2: #1e293b;
    
    --red: #e11d48;
    --red2: #be123c;
    --red-light: #fecdd3;
    
    --green: #22c55e;
    --green2: #16a34a;
    
    --blue: #3b82f6;
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    
    --radius: 16px;
    --radius-lg: 20px;
    
    /* Animations */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* ===== GLOBAL STYLES ===== */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }
  
  body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  .container {
    width: min(1280px, 92%);
    margin: 0 auto;
  }
  
  /* ===== TOPBAR ===== */
  .topbar {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    color: rgba(255,255,255,0.95);
    font-size: 13px;
    position: relative;
    z-index: 101;
  }
  
  .topbar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .topbar-left {
    opacity: 0.92;
  }
  
  .topbar-right {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  
  .topbar-right a {
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    transition: var(--transition);
  }
  
  .topbar-right a:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .sep {
    opacity: 0.4;
    margin: 0 6px;
  }
  
  /* ===== NAVBAR (Enhanced with Dropdowns) ===== */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  }
  
  .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
  }
  
  /* Brand */
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
  }
  
  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(225,29,72,0.25);
    transition: var(--transition);
  }
  
  .brand:hover .brand-mark {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(225,29,72,0.35);
  }
  
  .brand-title {
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.3px;
    color: var(--black);
  }
  
  .brand-sub {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
    font-weight: 600;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    padding: 10px 14px;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-link:hover {
    background: rgba(225,29,72,0.08);
    color: var(--red);
  }
  
  /* Dropdown Menu */
  .nav-dropdown {
    position: relative;
  }
  
  .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .dropdown-toggle .arrow {
    font-size: 10px;
    transition: var(--transition);
  }
  
  .nav-dropdown:hover .arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .dropdown-menu a:first-child {
    border-radius: 12px 12px 0 0;
  }
  
  .dropdown-menu a:last-child {
    border-radius: 0 0 12px 12px;
  }
  
  .dropdown-menu a:hover {
    background: var(--bg-soft);
    color: var(--red);
    padding-left: 22px;
  }
  
  /* Mobile Toggle Button */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
  }
  
  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }
  
  .btn-primary {
    border: none;
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: #fff;
    box-shadow: 0 4px 16px rgba(225,29,72,0.3);
  }
  
  .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(225,29,72,0.4);
  }
  
  .btn-outline {
    background: #fff;
    color: var(--text);
  }
  
  .btn-whatsapp {
    border: none;
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff;
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
  }
  
  .btn-whatsapp:hover {
    box-shadow: 0 8px 24px rgba(34,197,94,0.4);
  }
  
  .btn svg {
    width: 18px;
    height: 18px;
  }
  
  /* ===== HERO SECTION (Enhanced) ===== */
  .hero-banner {
    position: relative;
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  /* Background with improved image quality */
  /* ===== HERO BACKGROUND - PROFESSIONAL (FULL LOGO VISIBLE) ===== */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;

  /* 1) Dark overlay gradient (covers full screen) */
  /* 2) Logo as watermark (NO crop) */
  background-image:
    linear-gradient(
      135deg,
      rgba(15,23,42,0.92) 0%,
      rgba(30,41,59,0.85) 50%,
      rgba(225,29,72,0.25) 100%
    ),
    url("../img/logo-1.jpeg");

  /* IMPORTANT:
     - Gradient should cover full hero
     - Logo should be fully visible (contain) */
  background-size: cover, contain;

  /* Keep both centered (don’t push face out) */
  background-position: center, center;

  background-repeat: no-repeat, no-repeat;

  /* Make logo softer + professional */
  filter: contrast(1.05) brightness(0.95);
}

  
  /* Animated gradient overlay */
  .hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 20% 50%, rgba(225,29,72,0.35), transparent 65%),
      radial-gradient(circle at 80% 30%, rgba(59,130,246,0.15), transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
  }
  
  @keyframes heroGlow {
    0% { opacity: 0.4; }
    100% { opacity: 0.7; }
  }
  
  /* Optional: Video background support */
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
  }
  
  .hero-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
    animation: heroFadeIn 1s ease-out;
  }
  
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Hero Left */
  .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    animation: chipPulse 2s ease-in-out infinite;
  }
  
  .chip-red {
    background: rgba(225,29,72,0.18);
    border: 1px solid rgba(225,29,72,0.4);
    color: #fff;
  }
  
  @keyframes chipPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
  }
  
  .hero-left h1 {
    margin: 20px 0 14px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .hero-sub {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    font-size: clamp(18px, 2vw, 22px);
  }
  
  .hero-desc {
    color: rgba(255,255,255,0.92);
    font-size: 16px;
    line-height: 1.7;
    max-width: 620px;
    margin: 16px 0;
  }
  
  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 22px 0;
  }
  
  /* Timings Card */
  .timings-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    margin-top: 16px;
  }
  
  .timings-strong {
    animation: cardFloat 3s ease-in-out infinite;
  }
  
  @keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  
  .timings-title {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--red);
  }
  
  .timings-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  
  .timings-row:last-child {
    border-bottom: none;
  }
  
  .timings-row .label {
    color: var(--text-light);
    font-size: 14px;
  }
  
  .timings-row .value {
    font-weight: 800;
    color: var(--text);
    font-size: 14px;
  }
  
  .timings-note {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 12px;
  }
  
  /* Hero Right Card */
  .hero-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    animation: cardFloat 3s ease-in-out infinite 0.5s;
  }
  
  .hero-card-title {
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--red);
  }
  
  .ticks {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
  }
  
  .ticks li {
    padding: 8px 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .hero-card-footer {
    margin-bottom: 16px;
  }
  
  /* Stats */
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
  }
  
  .stat {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    transition: var(--transition);
  }
  
  .stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
  }
  
  .stat-num {
    font-weight: 900;
    font-size: 24px;
    color: var(--red);
    letter-spacing: -0.5px;
  }
  
  .stat-label {
    color: var(--text-light);
    font-size: 11px;
    margin-top: 4px;
    font-weight: 600;
  }
  
  /* ===== HIGHLIGHTS BAR (New Section) ===== */
  .highlights-bar {
    background: #fff;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  
  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .highlight-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--red-light), #fff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }
  
  .highlight-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 2px;
  }
  
  .highlight-text span {
    font-size: 13px;
    color: var(--text-light);
  }
  
  /* ===== SECTIONS ===== */
  .section {
    padding: 70px 0;
  }
  
  .section-alt {
    background: #fff;
  }
  
  .section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  .section-head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text);
  }
  
  .section-head p {
    margin: 0;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
  }
  
  /* ===== CARDS ===== */
  .cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--red-light);
  }
  
  .card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .card-icon {
    font-size: 28px;
  }
  
  .card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
  }
  
  /* ===== SERVICES GRID (Enhanced) ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red2));
    transform: scaleX(0);
    transition: var(--transition);
  }
  
  .service-card:hover::before {
    transform: scaleX(1);
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--red-light);
  }
  
  .service-card.featured {
    border: 2px solid var(--red);
    background: linear-gradient(to bottom, rgba(225,29,72,0.03), #fff);
  }
  
  .service-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  
  .service-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
  }
  
  .service-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
  }
  
  .badge-service {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  /* ===== TESTIMONIALS (New Section) ===== */
  .testimonials-section {
    background: linear-gradient(135deg, var(--bg-soft), #fff);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
  }
  
  .testimonial-rating {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .testimonial-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
  }
  
  .testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
  }
  
  .testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
  }
  
  /* ===== PRICING ===== */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
  }
  
  .price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
  }
  
  .price-card.featured-plan {
    border: 2px solid var(--red);
    background: linear-gradient(to bottom, rgba(225,29,72,0.04), #fff);
    transform: scale(1.05);
  }
  
  .price-card.featured-plan:hover {
    transform: scale(1.08) translateY(-10px);
  }
  
  .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(225,29,72,0.3);
  }
  
  .price-card h3 {
    margin: 10px 0 16px;
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
  }
  
  .price-tag {
    margin: 18px 0;
  }
  
  .price-amount {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -1px;
  }
  
  .price-period {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
  }
  
  .price-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
  }
  
  .price-features li {
    padding: 10px 0;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }
  
  .price-features li:last-child {
    border-bottom: none;
  }
  
  .pricing-note {
    margin-top: 32px;
    text-align: center;
    padding: 18px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }
  
  .pricing-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
  }
  
  /* ===== GALLERY PREVIEW ===== */
  .gallery-preview {
    background: var(--bg-soft);
  }
  
  .preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
  }
  
  .preview-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .preview-item.placeholder {
    background: repeating-linear-gradient(
      45deg,
      rgba(225,29,72,0.04),
      rgba(225,29,72,0.04) 12px,
      rgba(15,23,42,0.02) 12px,
      rgba(15,23,42,0.02) 24px
    );
    font-weight: 700;
    color: var(--text-light);
  }
  
  .preview-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
  }
  
  .gallery-cta-btn {
    text-align: center;
  }
  
  /* ===== LOCATION ===== */
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .location-card, .map-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
  }
  
  .location-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    margin: 0 0 16px;
  }
  
  .address-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
  }
  
  .location-info {
    margin: 24px 0;
  }
  
  .info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  
  .info-item:last-child {
    border-bottom: none;
  }
  
  .info-icon {
    font-size: 28px;
    flex-shrink: 0;
  }
  
  .info-item strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
  }
  
  .info-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
  }
  
  .location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .map-placeholder {
    height: 100%;
    min-height: 380px;
    background: var(--bg-soft);
    border: 2px dashed var(--line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
  }
  
  .map-embed-info {
    max-width: 300px;
  }
  
  .map-icon {
    font-size: 64px;
    margin-bottom: 16px;
  }
  
  .map-embed-info h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
  }
  
  .map-embed-info p {
    margin: 0 0 18px;
    color: var(--text-light);
    font-size: 14px;
  }
  
  .small-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-light);
  }
  
  /* ===== CONTACT ===== */
  .contact-section {
    background: #fff;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .contact-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
  }
  
  .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    background: #fff;
  }
  
  .contact-card.featured-contact {
    background: linear-gradient(135deg, rgba(225,29,72,0.05), rgba(34,197,94,0.05));
    border: 2px solid var(--line);
  }
  
  .contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  
  .contact-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
  }
  
  .contact-card p {
    margin: 8px 0;
    color: var(--text-light);
    font-size: 15px;
  }
  
  .contact-link {
    display: block;
    color: var(--red);
    font-weight: 700;
    font-size: 18px;
    margin: 6px 0;
    transition: var(--transition);
  }
  
  .contact-link:hover {
    text-decoration: underline;
    transform: scale(1.05);
  }
  
  /* ===== FOOTER ===== */
  .footer {
    background: linear-gradient(135deg, var(--black), var(--black2));
    color: rgba(255,255,255,0.9);
    padding: 50px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  
  .footer-brand .brand-mark {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  
  .footer-title {
    font-weight: 900;
    font-size: 16px;
    color: #fff;
  }
  
  .footer-sub {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 2px;
  }
  
  .footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }
  
  .footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
  }
  
  .footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li, .footer-contact li {
    margin: 10px 0;
  }
  
  .footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: #fff;
    padding-left: 4px;
  }
  
  .footer-contact li {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
  }
  
  .footer-contact a {
    color: var(--red-light);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
  }
  
  .footer-social {
    display: flex;
    gap: 12px;
  }
  
  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
  }
  
  .footer-social a:hover {
    background: var(--red);
    transform: translateY(-3px);
  }
  
  /* ===== FLOATING BUTTONS ===== */
  .float-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
  }
  
  .float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--text);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  
  .float-whatsapp {
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff;
  }
  
  .float-call {
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: #fff;
  }
  
  .float-top {
    background: var(--black);
    color: #fff;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
  }
  
  .float-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* ===== RESPONSIVE DESIGN ===== */
  
  @media (max-width: 1100px) {
    .highlights-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 950px) {
    .hero-wrap {
      grid-template-columns: 1fr;
    }
    
    .cards-3 {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
    
    .location-grid {
      grid-template-columns: 1fr;
    }
    
    .preview-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 820px) {
    /* Mobile Navigation */
    .nav-toggle {
      display: flex;
    }
    
    .nav-links {
      position: absolute;
      right: 3%;
      top: 72px;
      width: min(380px, 90vw);
      flex-direction: column;
      align-items: stretch;
      background: rgba(255,255,255,0.98);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      padding: 16px;
      gap: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: var(--transition);
    }
    
    .nav-links.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      display: flex;
    }
    
    .nav-link {
      padding: 12px 16px;
      border-radius: 10px;
    }
    
    .nav-links .btn {
      width: 100%;
      padding: 14px;
    }
    
    .nav-dropdown .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      margin-top: 8px;
      box-shadow: none;
    }
    
    .highlights-grid {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .pricing-grid {
      grid-template-columns: 1fr;
    }
    
    .preview-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .section {
      padding: 50px 0;
    }
    
    .hero-banner {
      min-height: 75vh;
      padding: 40px 0;
    }
    
    .preview-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
  }
  
  /* ===== SCROLL ANIMATIONS ===== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
  }

  /* ===== ABOUT SECTION FEATURES - ADD THIS TO YOUR STYLE.CSS =====*/

/* About Section Features Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.about-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left-color: var(--red2);
}

.about-feature h4 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-feature p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}