@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --gold-primary: #C7A24F;
    --gold-light: #E4CA7A;
    --gold-dark: #A68741;
    --cream: #FAF9F6;
    --text-dark: #2C2C2C;
    --text-muted: #6C757D;
    --gold: #C7A24F;
    --navy: #0F1419;
    --gray-900: #111827;
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --font-display: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: white;
}



.hf-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(199, 162, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 1000;
}
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--navy);
  letter-spacing: 1px;
}
.brand-text {
  position: relative;
}
.brand-dot {
  color: var(--gold);
  font-size: 2rem;
  margin-left: 4px;
  animation: pulse 2s infinite;
}
.hf-navbar .nav-link {
  color: var(--gray-900) !important;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition-smooth);
}
.hf-navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.hf-navbar .nav-link:hover::before {
  width: 70%;
}
.hf-navbar .nav-link:hover {
  color: var(--gold) !important;
}
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.dropdown-item {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}
.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.1), rgba(199, 162, 79, 0.05));
  color: var(--gold);
}



.hero {
    /*background-image: url("/assets/vehicle/van.jpg");*/
    /*background-size: cover;*/
    /*background-position: bottom;*/
    /*background-repeat: no-repeat;     */
    background:
        linear-gradient(
            0deg,
            rgba(255, 244, 220, 0.85),
            rgba(255, 255, 255, 0.9)
        ),
        url("/assets/vehicle/van.jpg");

    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    color: var(--text-dark);
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(199, 162, 79, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(228, 202, 122, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease;
    letter-spacing: 2px;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
    font-weight: 400;
}
.cta-button {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    color: white;
    padding: 18px 50px;
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(199, 162, 79, 0.3);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(199, 162, 79, 0.4);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    color: white;
    text-decoration: none;
}




.services {
    padding: 100px 20px;
    background: #f8f9fa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-weight: 400;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}
.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    border: 2px solid rgba(199, 162, 79, 0.15);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 162, 79, 0.05), transparent);
    transition: left 0.5s ease;
}
.service-card:hover::before {
    left: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(199, 162, 79, 0.2);
}
.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 10px rgba(199, 162, 79, 0.3));
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--gold-primary);
    font-weight: 600;
}
.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 400;
}




.features {
    padding: 100px 20px;
    background: white;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}
.feature-item {
    text-align: center;
    position: relative;
}
.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    border: 3px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(199, 162, 79, 0.2);
    transition: var(--transition-smooth);
}
.feature-icon i {
    line-height: 1;
}
.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(199, 162, 79, 0.3);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: white;
}
.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
    font-weight: 600;
}
.feature-item p {
    color: var(--text-muted);
    font-weight: 400;
}




.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(199, 162, 79, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(228, 202, 122, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.contact .section-title {
    color: var(--gold-primary);
}
.contact .section-subtitle {
    color: var(--text-muted);
}
.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(199, 162, 79, 0.2);
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}
.form-group {
    margin-bottom: 30px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(199, 162, 79, 0.2);
    background: var(--cream);
    color: var(--text-dark);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: white;
    box-shadow: 0 0 20px rgba(199, 162, 79, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group select option {
    background: white;
    color: var(--text-dark);
}
.submit-button {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    color: white;
    padding: 18px 50px;
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(199, 162, 79, 0.3);
}
.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(199, 162, 79, 0.4);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
}



.stats {
    padding: 80px 20px;
    background: #f8f9fa;
    position: relative;
}
.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(199, 162, 79, 0.03) 0px,
        transparent 1px,
        transparent 100px
    );
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(199, 162, 79, 0.15);
    transition: var(--transition-smooth);
}
.stat-item:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(199, 162, 79, 0.15);
    transform: translateY(-5px);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}



.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}



.hf-footer {
  color: #000;
  background: rgba(85, 87, 88, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E4E6EB;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.hf-footer a { 
  color: #000; 
  text-decoration: none; 
}
.hf-footer a:hover { 
  color: #D2AD67; 
}
.hf-heading {
  color: #D2AD67;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.ft-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
#ft-container01, #ft-container02 {
  border-right: 1px solid rgba(251, 250, 246, 0.12);
}
#mailto01 {
  overflow-wrap: break-word;
}
.mb-2 h6 {
  font-weight: bold;
}
.col-md-4.mb-4 {
  margin: 0;
}
.hf-hours li {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hf-hours li:last-child { 
  border-bottom: 0; 
}
.hf-hours .day { 
  font-weight: 600; 
}
.hf-hours .time { 
  opacity: .8; 
}
.btn-gold {
  background: linear-gradient(135deg,#C7A24F,#E4CA7A);
  color: #fff;
  border: 0; 
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(199,162,79,.22);
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-gold:hover { 
  filter: brightness(1.05); 
  transform: translateY(-2px); 
}
.social-icon {
  margin-left: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.social-icon img {
  margin-right: 10px;
  border-radius: 50%;
}
.hf-social-link {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.hf-social-link:hover {
  transform: translateY(-2px);
  border-color: #D2AD67;
  color: #111;
}

@media (max-width: 768.98px) {
    .hero {
        padding: 80px 20px 60px;
    }    
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
        width: auto;
        max-width: 100%;
    }

    .services,
    .features,
    .contact {
        padding: 60px 15px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .feature-item h4 {
        font-size: 1.3rem;
    }
    
    .stats {
        padding: 60px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .brand-dot {
        font-size: 1.75rem;
    }
    
    .hf-footer {
        padding: 30px 15px;
    }
    
    .ft-container {
        flex-direction: column;
        gap: 30px;
    }
    
    #ft-container01, #ft-container02 {
        max-width: 100%;
        border-bottom: 1px solid rgba(251, 250, 246, 0.12);
        border-right: none;
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .col-md-4.mb-4 {
        min-width: 100%;
        width: 100%;
    }
    
    .hf-hours li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .service-card:active {
        transform: translateY(-5px);
        border-color: var(--gold-primary);
    }
    
    .feature-item:active .feature-icon {
        transform: scale(1.05);
    }
    
    .cta-button:active,
    .submit-button:active,
    .btn-gold:active {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 60px 20px 50px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .services,
    .features,
    .contact {
        padding: 50px 15px;
    }
}








