
    /* Reset & Base */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    :root {
      --background: hsl(0, 0%, 100%);
      --foreground: hsl(220, 20%, 15%);
      --card: hsl(0, 0%, 100%);
      --card-foreground: hsl(220, 20%, 15%);
      --primary: hsl(43, 74%, 49%);
      --primary-foreground: hsl(0, 0%, 100%);
      --secondary: hsl(220, 25%, 20%);
      --secondary-foreground: hsl(0, 0%, 100%);
      --muted: hsl(40, 20%, 96%);
      --muted-foreground: hsl(220, 10%, 45%);
      --border: hsl(40, 15%, 88%);
      --gold: hsl(43, 74%, 49%);
      --gold-light: hsl(43, 70%, 60%);
      --gold-dark: hsl(43, 80%, 35%);
      --navy: hsl(220, 25%, 15%);
      --navy-light: hsl(220, 20%, 25%);
      --cream: hsl(40, 30%, 97%);
      --warm-gray: hsl(30, 10%, 50%);
      --shadow-sm: 0 2px 8px hsla(220, 25%, 15%, 0.06);
      --shadow-md: 0 4px 16px hsla(220, 25%, 15%, 0.08);
      --shadow-lg: 0 8px 32px hsla(220, 25%, 15%, 0.12);
      --shadow-gold: 0 4px 20px hsla(43, 74%, 49%, 0.3);
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    button {
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
    }
    
    /* Utility Classes */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    .section-padding {
      padding: 4rem 1rem;
    }
    
    @media (min-width: 768px) {
      .section-padding {
        padding: 6rem 2rem;
      }
    }
    
    .text-gradient-gold {
      background: linear-gradient(135deg, hsl(43, 74%, 55%) 0%, hsl(43, 80%, 40%) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .btn-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: var(--primary);
      color: var(--primary-foreground);
      padding: 0.75rem 2rem;
      border-radius: 0.375rem;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-gold);
    }
    
    .btn-gold:hover {
      background-color: var(--gold-dark);
      transform: scale(1.05);
    }
    
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border: 2px solid rgba(255,255,255,0.3);
      color: white;
      padding: 0.75rem 2rem;
      border-radius: 0.375rem;
      font-weight: 500;
      transition: all 0.3s ease;
      background: transparent;
    }
    
    .btn-outline:hover {
      background-color: white;
      color: var(--navy);
    }
    
    .card-hover {
      transition: all 0.3s ease;
    }
    
    .card-hover:hover {
      transform: translateY(-0.5rem);
      box-shadow: var(--shadow-lg);
    }
    
    .bg-cream { background-color: var(--cream); }
    .bg-navy { background-color: var(--navy); }
    .bg-background { background-color: var(--background); }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes bounce {
      0%, 100% { transform: translateY(-25%) translateX(-50%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
      50% { transform: translateY(0) translateX(-50%); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
    }
    
    .animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
    .animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
    .animate-bounce { animation: bounce 1s infinite; }
    
    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: all 0.3s ease;
      padding: 1rem 0;
	  background-color:#FEFEFE;
    }
    
    .header.scrolled {
	  background-color:#FEFEFE;
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-md);
      padding: 0.5rem 0;
    }
    
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .header-logo img {
      height: 5rem;
    }
    
    @media (min-width: 768px) {
      .header-logo img {
        height: 5rem;
      }
    }
    
    .nav-desktop {
      display: none;
      align-items: center;
      gap: 2rem;
    }
    
    @media (min-width: 1024px) {
      .nav-desktop {
        display: flex;
      }
    }
    
    .nav-link {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--foreground);
      transition: color 0.2s ease;
    }
    
    .nav-link:hover {
      color: var(--primary);
    }
    
    .header-actions {
      display: none;
      align-items: center;
      gap: 1rem;
    }
    
    @media (min-width: 1024px) {
      .header-actions {
        display: flex;
      }
    }
    
    .header-phone {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--primary);
    }
    
    .mobile-menu-btn {
      display: block;
      padding: 0.5rem;
	  color:#000 !important;
    }
    
    @media (min-width: 1024px) {
      .mobile-menu-btn {
        display: none;
      }
    }
    
    .mobile-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--background);
      box-shadow: var(--shadow-lg);
      border-top: 1px solid var(--border);
    }
    
    .mobile-nav.open {
      display: block;
    }
    
    .mobile-nav-inner {
      display: flex;
      flex-direction: column;
      padding: 1rem;
    }
    
    .mobile-nav-link {
      padding: 0.75rem 0;
      font-weight: 500;
      color: var(--foreground);
      border-bottom: 1px solid var(--border);
      text-align: left;
    }
    
    .mobile-nav-link:last-of-type {
      border-bottom: none;
    }
    
    .mobile-nav-link:hover {
      color: var(--primary);
    }
    
    /* Hero */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 5rem;
    }
    
    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(28, 35, 49, 0.8), rgba(28, 35, 49, 0.75), rgba(28, 35, 49, 0.85));
    }
    
    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      color: white;
      padding: 5rem 1rem;
      max-width: 900px;
      margin: 0 auto;
    }
    
    .hero-subtitle {
      color: var(--primary);
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    
    .hero-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    
    @media (min-width: 768px) {
      .hero-title {
        font-size: 3.5rem;
      }
    }
    
    @media (min-width: 1024px) {
      .hero-title {
        font-size: 4rem;
      }
    }
    
    .hero-description {
      font-size: 1.125rem;

      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    
    .hero-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-badge i {
      color: var(--primary);
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
    }
    
    @media (min-width: 640px) {
      .hero-buttons {
        flex-direction: row;
      }
    }
    
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .scroll-indicator-inner {
      width: 1.5rem;
      height: 2.5rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 9999px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 0.5rem;
    }
    
    .scroll-indicator-dot {
      width: 0.25rem;
      height: 0.5rem;
      background-color: var(--primary);
      border-radius: 9999px;
    }
    
    /* Services Overview */
    .services-grid {
      display: grid;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .service-card {
      background-color: var(--card);
      border-radius: 0.75rem;
      padding: 2rem;
      cursor: pointer;
      box-shadow: var(--shadow-md);
    }
    
    .service-icon {
      width: 4rem;
      height: 4rem;
      border-radius: 0.75rem;
      background-color: rgba(199, 144, 35, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background-color 0.3s ease;
    }
    
    .service-card:hover .service-icon {
      background-color: var(--primary);
    }
    
    .service-icon i {
      width: 2rem;
      height: 2rem;
      color: var(--primary);
      transition: color 0.3s ease;
    }
    
    .service-card:hover .service-icon i {
      color: white;
    }
    
    .service-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    
    .service-description {
      color: var(--muted-foreground);
      margin-bottom: 1rem;
    }
    
    .service-link {
      color: var(--primary);
      font-weight: 500;
      font-size: 0.875rem;
    }
    
    .service-card:hover .service-link {
      text-decoration: underline;
    }
    
    /* Section Headers */
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    
    .section-label {
      color: var(--primary);
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    
    @media (min-width: 768px) {
      .section-title {
        font-size: 2.5rem;
      }
    }
    
    .section-description {
      color: var(--muted-foreground);
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* Image Grid */
    .image-grid {
      display: grid;
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
    
    @media (min-width: 768px) {
      .image-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .image-card {
      position: relative;
      border-radius: 0.75rem;
      overflow: hidden;
      aspect-ratio: 1;
    }
    
    @media (min-width: 768px) {
      .image-card {
        aspect-ratio: 4/5;
      }
    }
    
    .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .image-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(28, 35, 49, 0.6), transparent);
    }
    
    .image-card-label {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
      color: white;
      font-weight: 500;
    }
    
    /* Service Types */
    .service-types {
      display: grid;
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
    
    @media (min-width: 1024px) {
      .service-types {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .service-type-card {
      background-color: var(--cream);
      border-radius: 0.75rem;
      padding: 1.5rem;
      border: 1px solid var(--border);
    }
    
    .service-type-inner {
      display: flex;
      gap: 1rem;
    }
    
    .service-type-number {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 9999px;
      background-color: rgba(199, 144, 35, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.875rem;
    }
    
    .service-type-title {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .service-type-description {
      color: var(--muted-foreground);
      font-size: 0.875rem;
      line-height: 1.7;
    }
    
    /* Benefits Box */
    .benefits-box {
      background-color: var(--navy);
      border-radius: 1rem;
      padding: 2rem;
    }
    
    @media (min-width: 768px) {
      .benefits-box {
        padding: 3rem;
      }
    }
    
    .benefits-box-gold {
      background: linear-gradient(135deg, var(--primary), var(--gold-dark));
    }
    
    .benefits-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 2rem;
      text-align: center;
    }
    
    .benefits-grid {
      display: grid;
      gap: 1.5rem;
    }
    
    @media (min-width: 640px) {
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }
    
    .benefit-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 9999px;
      background-color: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .benefit-icon i {
      width: 1.25rem;
      height: 1.25rem;
      color: white;
    }
    
    .benefit-text {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.875rem;
    }
    
    /* Construction Layout */
    .construction-layout {
      display: grid;
      gap: 3rem;
      align-items: flex-start;
      margin-bottom: 4rem;
    }
    
    @media (min-width: 1024px) {
      .construction-layout {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .construction-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    .construction-images-col {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .construction-images-col:last-child {
      padding-top: 2rem;
    }
    
    .construction-image {
      border-radius: 0.75rem;
      overflow: hidden;
    }
    
    .construction-image img {
      width: 100%;
      object-fit: cover;
    }
    
    .construction-image.tall img {
      height: 16rem;
    }
    
    .construction-image.short img {
      height: 12rem;
    }
    
    .construction-services {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .construction-service-card {
      background-color: var(--background);
      border-radius: 0.75rem;
      padding: 1.25rem;
      border: 1px solid var(--border);
    }
    
    .construction-service-inner {
      display: flex;
      gap: 1rem;
    }
    
    .construction-service-number {
      width: 2rem;
      height: 2rem;
      border-radius: 9999px;
      background-color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: white;
      font-weight: 700;
      font-size: 0.75rem;
    }
    
    .construction-service-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    
    .construction-service-description {
      color: var(--muted-foreground);
      font-size: 0.875rem;
      line-height: 1.7;
    }
    
    /* Process */
    .process-grid {
      display: grid;
      gap: 2rem;
      position: relative;
    }
    
    @media (min-width: 768px) {
      .process-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .process-step {
      text-align: center;
      position: relative;
    }
    
    .process-icon-wrapper {
      position: relative;
      width: 5rem;
      height: 5rem;
      margin: 0 auto 1.5rem;
    }
    
    .process-icon {
      width: 100%;
      height: 100%;
      border-radius: 9999px;
      background-color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-gold);
    }
    
    .process-icon i {
      width: 2rem;
      height: 2rem;
      color: white;
    }
    
    .process-number {
      position: absolute;
      top: -0.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 2rem;
      height: 2rem;
      border-radius: 9999px;
      background-color: var(--navy);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      font-weight: 700;
      z-index: 10;
    }
    
    .process-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    
    .process-description {
      color: var(--muted-foreground);
    }
    
    /* About */
    .about-layout {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    
    @media (min-width: 1024px) {
      .about-layout {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .about-image-wrapper {
      position: relative;
    }
    
    .about-image {
      border-radius: 1rem;
      overflow: hidden;
    }
    
    .about-image img {
      width: 100%;
      height: 25rem;
      object-fit: cover;
    }
    
    @media (min-width: 768px) {
      .about-image img {
        height: 31rem;
      }
    }
    
    .about-floating-card {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background-color: var(--background);
      border-radius: 0.75rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-lg);
      max-width: 15rem;
    }
    
    @media (min-width: 768px) {
      .about-floating-card {
        bottom: 2rem;
        right: -2rem;
      }
    }
    
    .about-floating-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      font-family: 'Playfair Display', serif;
      margin-bottom: 0.5rem;
    }
    
    .about-floating-title {
      font-weight: 500;
      margin-bottom: 0.25rem;
    }
    
    .about-floating-subtitle {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }
    
    .about-label {
      color: var(--primary);
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    
    .about-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .about-title {
        font-size: 2.5rem;
      }
    }
    
    .about-text {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    
    .about-badge {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      background-color: var(--background);
      border-radius: 0.75rem;
      border: 1px solid var(--border);
      margin-bottom: 2rem;
    }
    
    .about-badge-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 9999px;
      background-color: rgba(199, 144, 35, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .about-badge-icon i {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--primary);
    }
    
    .about-badge-title {
      font-weight: 600;
    }
    
    .about-badge-subtitle {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }
    
    .about-address-label {
      font-weight: 500;
      margin-bottom: 0.25rem;
    }
    
    .about-address {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }
    
    /* Stats */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 4rem;
      padding-top: 4rem;
      border-top: 1px solid var(--border);
    }
    
    @media (min-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-icon {
      width: 2rem;
      height: 2rem;
      color: var(--primary);
      margin: 0 auto 0.75rem;
    }
    
    .stat-value {
      font-size: 2rem;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
      margin-bottom: 0.25rem;
    }
    
    .stat-label {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
      display: grid;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .testimonial-card {
      background-color: var(--cream);
      border-radius: 0.75rem;
      padding: 2rem;
      position: relative;
    }
    
    .testimonial-quote {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 2.5rem;
      height: 2.5rem;
      color: rgba(199, 144, 35, 0.2);
    }
    
    .testimonial-stars {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1rem;
    }
    
    .testimonial-stars i {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
      fill: var(--primary);
    }
    
    .testimonial-content {
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .testimonial-avatar {
      width: 3rem;
      height: 3rem;
      border-radius: 9999px;
      background-color: rgba(199, 144, 35, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-weight: 600;
      font-size: 1.125rem;
    }
    
    .testimonial-name {
      font-weight: 600;
    }
    
    .testimonial-role {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }
    
    /* Contact */
    .contact-layout {
      display: grid;
      gap: 3rem;
    }
    
    @media (min-width: 1024px) {
      .contact-layout {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .contact-info-label {
      color: var(--primary);
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    
    .contact-info-title {
      font-size: 2rem;
      font-weight: 700;
      color: white;
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .contact-info-title {
        font-size: 2.5rem;
      }
    }
    
    .contact-info-description {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    
    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .contact-item-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.75rem;
      background-color: rgba(199, 144, 35, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .contact-item-icon i {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
    }
    
    .contact-item-title {
      font-weight: 600;
      color: white;
      margin-bottom: 0.25rem;
    }
    
    .contact-item-text {
      color: rgba(255, 255, 255, 0.7);
    }
    
    .contact-item-text a:hover {
      color: var(--primary);
    }
    
    /* Contact Form */
    .contact-form-wrapper {
      background-color: var(--background);
      border-radius: 1rem;
      padding: 2rem;
    }
    
    .form-group {
      margin-bottom: 1.25rem;
    }
    
    .form-row {
      display: grid;
      gap: 1.25rem;
    }
    
    @media (min-width: 640px) {
      .form-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .form-label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background-color: var(--background);
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.2s ease;
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(199, 144, 35, 0.2);
    }
    
    .form-textarea {
      resize: none;
    }
    
    .form-submit {
      width: 100%;
    }
    
    .form-success {
      text-align: center;
      padding: 3rem 0;
    }
    
    .form-success-icon {
      width: 4rem;
      height: 4rem;
      border-radius: 9999px;
      background-color: #dcfce7;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }
    
    .form-success-icon i {
      width: 2rem;
      height: 2rem;
      color: #16a34a;
    }
    
    .form-success-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .form-success-text {
      color: var(--muted-foreground);
    }
    
    /* Footer */
    .footer {
      background-color: var(--foreground);
      color: white;
    }
    
    .footer-grid {
      display: grid;
      gap: 2rem;
      margin-bottom: 3rem;
    }
    
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
      }
    }
    
    .footer-logo {
      height: 4rem;
      margin-bottom: 1rem;
    }
    
    .footer-description {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 1.5rem;
      max-width: 400px;
    }
    
    .footer-address {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.875rem;
    }
    
    .footer-address i {
      width: 1rem;
      height: 1rem;
      color: var(--primary);
    }
    
    .footer-heading {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 0.75rem;
    }
    
    .footer-links button,
    .footer-links span {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.875rem;
      transition: color 0.2s ease;
      text-align: left;
    }
    
    .footer-links button:hover {
      color: var(--primary);
    }
    
    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
    
    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }
    
    .footer-copyright {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.875rem;
      text-align: center;
    }
    
    .scroll-to-top {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 9999px;
      background-color: rgba(199, 144, 35, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease;
    }
    
    .scroll-to-top:hover {
      background-color: var(--primary);
    }
    
    .scroll-to-top i {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
      transition: color 0.2s ease;
    }
    
    .scroll-to-top:hover i {
      color: white;
    }
    
    /* Hidden */
    .hidden {
      display: none !important;
    }
    
    /* Loading spinner */
    .spinner {
      width: 1.25rem;
      height: 1.25rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top-color: white;
      border-radius: 9999px;
      animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
