    /* * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --background: #ffffff;
      --foreground: #0f172a;
      --primary: #3b82f6;
      --primary-light: #60a5fa;
      --secondary: #8b5cf6;
      --secondary-light: #a78bfa;
      --primary-foreground: #ffffff;
      --muted: #f1f5f9;
      --muted-foreground: #64748b;
      --border: #e2e8f0;
      --hero-bg: #0f172a;
      --hero-foreground: #f8fafc;
      --destructive: #ef4444;
      --success: #22c55e;
      --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
      --gradient-dark1: linear-gradient(135deg, #0f172a 0%, #8b5cf6 300%);
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
    }*/

    /* Page Transition */
    .page-transition {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient-primary);
      z-index: 9999;
      transform: translateY(-100%);
      animation: pageEnter 0.6s ease-out forwards;
    }

    @keyframes pageEnter {
      0% { transform: translateY(-100%); }
      40% { transform: translateY(0); }
      60% { transform: translateY(0); }
      100% { transform: translateY(100%); }
    }

    .page-content {
      opacity: 0;
      animation: fadeInContent 0.5s ease-out 0.4s forwards;
    }

    @keyframes fadeInContent {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    /* Header Styles */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: var(--background);
      border-bottom: 1px solid var(--border);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    @media (min-width: 1024px) {
      .header-content {
        height: 80px;
      }
    }

    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      background: var(--gradient-primary);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    @media (min-width: 1024px) {
      .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }

    .logo-text {
      font-size: 8px;
      font-weight: 600;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-top: 2px;
    }

    @media (min-width: 1024px) {
      .logo-text {
        font-size: 10px;
      }
    }

    .logo-subtext {
      font-size: 6px;
      color: var(--muted-foreground);
    }

    @media (min-width: 1024px) {
      .logo-subtext {
        font-size: 8px;
      }
    }

    /* Desktop Navigation */
    .nav-desktop {
      display: none;
      align-items: center;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .nav-desktop {
        display: flex;
      }
    }

    .nav-link {
      font-weight: 500;
      color: var(--foreground);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary);
    }

    .btn-primary {
      background: var(--gradient-primary);
      color: var(--primary-foreground);
      padding: 8px 24px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    }

    /* Header Icons */
    .header-icons {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--muted-foreground);
      transition: color 0.2s;
      display: none;
    }

    @media (min-width: 1024px) {
      .icon-btn {
        display: block;
      }
    }

    .icon-btn:hover {
      color: var(--primary);
    }

    .icon-btn svg {
      width: 20px;
      height: 20px;
    }

    .cart-btn {
      position: relative;
      display: block;
    }

    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background: var(--gradient-primary);
      color: white;
      font-size: 10px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--foreground);
    }

    @media (min-width: 1024px) {
      .mobile-menu-btn {
        display: none;
      }
    }

    .mobile-menu-btn svg {
      width: 24px;
      height: 24px;
    }

    /* Mobile Menu */
    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.2);
      z-index: 100;
      display: none;
    }

    .mobile-menu-overlay.active {
      display: block;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 320px;
      max-width: 85vw;
      height: 100%;
      background-color: var(--background);
      z-index: 101;
      overflow-y: auto;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--foreground);
    }

    .mobile-menu-close svg {
      width: 24px;
      height: 24px;
    }

    .mobile-nav {
      padding: 16px;
    }

    .mobile-nav-link {
      display: block;
      padding: 12px 0;
      font-weight: 500;
      color: var(--foreground);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }

    .mobile-nav-link.active {
      color: var(--primary);
    }

    /* Page Header */
    .page-header {
      background: var(--gradient-dark);
      padding: 60px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }

    .page-header h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--hero-foreground);
      margin-bottom: 12px;
      position: relative;
    }

    .page-header p {
      color: var(--muted-foreground);
      font-size: 1.1rem;
      position: relative;
    }

    /* Contact Section */
    .contact-section {
      padding: 80px 0;
    }

    .contact-grid {
      display: grid;
      gap: 48px;
    }

    @media (min-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr 1.2fr;
      }
    }

    /* Contact Info */
    .contact-info {
      opacity: 0;
      transform: translateX(-30px);
      animation: slideInLeft 0.6s ease-out 0.5s forwards;
    }

    @keyframes slideInLeft {
      to { opacity: 1; transform: translateX(0); }
    }

    .contact-info h2 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--foreground);
    }

    .contact-info > p {
      color: var(--muted-foreground);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .info-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .info-card {
      display: flex;
      gap: 16px;
      padding: 20px;
      background: var(--muted);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .info-card:hover {
      transform: translateX(8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .info-card-icon {
      width: 48px;
      height: 48px;
      background: var(--gradient-primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .info-card-icon svg {
      width: 24px;
      height: 24px;
      color: white;
    }

    .info-card-content h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--foreground);
    }

    .info-card-content p {
      font-size: 14px;
      color: var(--muted-foreground);
    }

    .info-card-content a {
      color: var(--primary);
      text-decoration: none;
      transition: color 0.2s;
    }

    .info-card-content a:hover {
      color: var(--secondary);
    }

    /* Business Hours */
    .business-hours {
      margin-top: 32px;
      padding: 24px;
      background: var(--muted);
      border-radius: 12px;
    }

    .business-hours h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .business-hours h3 svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
    }

    .hours-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
    }

    .hours-row span:first-child {
      color: var(--muted-foreground);
    }

    .hours-row span:last-child {
      font-weight: 500;
      color: var(--foreground);
    }

    .hours-row.closed span:last-child {
      color: var(--destructive);
    }

    /* Contact Form */
    .contact-form-wrapper {
      background: var(--background);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transform: translateX(30px);
      animation: slideInRight 0.6s ease-out 0.5s forwards;
    }

    @keyframes slideInRight {
      to { opacity: 1; transform: translateX(0); }
    }

    .contact-form-wrapper h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: var(--foreground);
    }

    .form-row {
      display: grid;
      gap: 16px;
      margin-bottom: 16px;
    }

    @media (min-width: 640px) {
      .form-row.two-col {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 14px;
      font-weight: 500;
      color: var(--foreground);
    }

    .form-group label span {
      color: var(--destructive);
    }

    .form-input,
    .form-select,
    .form-textarea {
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 14px;
      font-family: inherit;
      transition: all 0.2s;
      background: var(--background);
      color: var(--foreground);
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--muted-foreground);
    }

    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 8px;
    }

    .form-checkbox input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--primary);
    }

    .form-checkbox label {
      font-size: 13px;
      color: var(--muted-foreground);
      line-height: 1.5;
    }

    .form-checkbox label a {
      color: var(--primary);
      text-decoration: none;
    }

    .form-submit {
      width: 100%;
      padding: 14px 24px;
      background: var(--gradient-primary);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    }

    .form-submit svg {
      width: 20px;
      height: 20px;
    }

    /* Map Section */
    .map-section {
      padding: 0 0 80px;
    }

    .map-container {
      border-radius: 16px;
      overflow: hidden;
      height: 400px;
      background: var(--muted);
      position: relative;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .map-overlay {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: var(--background);
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      max-width: 300px;
    }

    .map-overlay h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--foreground);
    }

    .map-overlay p {
      font-size: 14px;
      color: var(--muted-foreground);
      margin-bottom: 12px;
    }

    .map-directions {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 500;
      color: var(--primary);
      text-decoration: none;
      transition: gap 0.2s;
    }

    .map-directions:hover {
      gap: 10px;
    }

    .map-directions svg {
      width: 16px;
      height: 16px;
    }

    /* FAQ Section */
    .faq-section {
      padding: 80px 0;
      background: var(--muted);
    }

    .faq-section h2 {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 48px;
      color: var(--foreground);
    }

    .faq-grid {
      display: grid;
      gap: 16px;
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--background);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: var(--primary);
    }

    .faq-question {
      width: 100%;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: none;
      border: none;
      font-size: 16px;
      font-weight: 500;
      text-align: left;
      cursor: pointer;
      color: var(--foreground);
      font-family: inherit;
    }

    .faq-question svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.active .faq-question svg {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
    }

    .faq-answer p {
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--muted-foreground);
      line-height: 1.7;
    }

    /* Footer */
    .footer {
      background-color: #0f172a;
      color: #f8fafc;
      padding: 64px 0 24px;
    }

    .footer-grid {
      display: grid;
      gap: 32px;
      margin-bottom: 48px;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
      }
    }

    .footer-brand h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 12px;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-brand p {
      color: #94a3b8;
      margin-bottom: 24px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #334155;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--gradient-primary);
      border-color: transparent;
      color: white;
      transform: translateY(-3px);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
    }

    .footer-column h4 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 16px;
      color: #f8fafc;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 12px;
    }

    .footer-column a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-column a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid #1e293b;
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .footer-bottom p {
      font-size: 14px;
      color: #64748b;
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      font-size: 14px;
      color: #64748b;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    /* Scroll Progress */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: var(--gradient-primary);
      z-index: 1000;
      transition: width 0.1s;
    }

    /* Back to Top */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
      z-index: 99;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
    }

    .back-to-top svg {
      width: 24px;
      height: 24px;
    }

    /* Success Message */
    .success-message {
      display: none;
      padding: 16px 20px;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid var(--success);
      border-radius: 8px;
      color: var(--success);
      font-size: 14px;
      margin-bottom: 20px;
      align-items: center;
      gap: 10px;
    }

    .success-message.show {
      display: flex;
    }

    .success-message svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }