 @import "tailwindcss";
 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

 :root {
     --primary-black: #000000;
     --primary-dark: #1a1a1a;
     --primary-red: #dc2626;
     --accent-red: #fecaca;
     --dark-red: #991b1b;

     /*--primary-gold: #D4AF37;*/
     --primary-blue: #16213e;
     /*--accent-gold: #F4E4BC;*/
 }

 body {
     font-family: 'Inter', sans-serif;
 }

 .font-display {
     font-family: 'Playfair Display', serif;
 }

 .hero-gradient {
     background:
         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
         /* Dark overlay */
         url('images/banner.png') no-repeat center center;
     background-size: cover;

 }

 /*.hero-gradient {*/
 /*    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, #2563eb 100%);*/
 /*    position: relative;*/
 /*    overflow: hidden;*/
 /*}*/

 .hero-gradient::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
     opacity: 0.3;
 }

 .premium-card {
     background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
     border: 1px solid rgba(212, 175, 55, 0.2);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;

 }

 .premium-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
     transition: left 0.6s;
 }

 .premium-card:hover::before {
     left: 100%;
 }

 .premium-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     border-color: var(--primary-red);
 }


 .branch-card {
     background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
     border: 2px solid transparent;
     background-clip: padding-box;
     position: relative;
     transition: all 0.4s ease;
     box-shadow:
         0 8px 32px rgba(0, 0, 0, 0.08),
         inset 0 1px 0 rgba(255, 255, 255, 0.7),
         inset 0 -1px 0 rgba(255, 255, 255, 0.3);
 }

 .branch-card::before {
     content: '';
     pointer-events: none;
     padding: 2px;
     background: linear-gradient(145deg, var(--primary-red), var(--primary-blue));
     border-radius: inherit;
     mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     mask-composite: exclude;
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 .branch-card:hover::before {
     opacity: 1;
 }

 .branch-card:hover {
     transform: translateY(-5px) scale(1.02);
     box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.3);
 }

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

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .fade-in-up {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease;
 }

 .fade-in-up.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .premium-button {
     background: rgba(220, 38, 38, 0.9);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     color: white;
     font-weight: 600;
     padding: 0.75rem 1.5rem;
     /* better padding */
     border-radius: 0.75rem;
     /* <-- radius */
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
     box-shadow:
         0 6px 20px rgba(220, 38, 38, 0.35),
         inset 0 1px 0 rgba(255, 255, 255, 0.4),
         inset 0 -1px 2px rgba(0, 0, 0, 0.15);
 }

 /* Shine effect */
 .premium-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg,
             transparent,
             rgba(255, 255, 255, 0.4),
             transparent);
     transition: left 0.6s ease;
 }

 .premium-button:hover::before {
     left: 100%;
 }

 /* Hover glow + scale */
 .premium-button:hover {
     transform: translateY(-2px) scale(1.05);
     background: rgba(220, 38, 38, 1);
     border: 1px solid rgba(255, 255, 255, 0.5);
     box-shadow:
         0 12px 28px rgba(220, 38, 38, 0.45),
         0 0 8px rgba(255, 255, 255, 0.15),
         inset 0 1px 1px rgba(255, 255, 255, 0.6),
         inset 0 -1px 2px rgba(0, 0, 0, 0.1);
 }


 .steel-texture {
     background:
         radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
         linear-gradient(45deg, #f1f5f9 25%, transparent 25%),
         linear-gradient(-45deg, #f1f5f9 25%, transparent 25%),
         linear-gradient(45deg, transparent 75%, #f1f5f9 75%),
         linear-gradient(-45deg, transparent 75%, #f1f5f9 75%);
     background-size: 60px 60px, 60px 60px, 30px 30px, 30px 30px, 30px 30px, 30px 30px;
     background-position: 0 0, 30px 30px, 0 0, 0 15px, 15px -15px, -15px 0px;
 }

 .branch-selector {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(212, 175, 55, 0.3);
 }

 .stats-counter {
     font-size: 2rem;
     font-weight: 700;
     background: linear-gradient(145deg, var(--primary-red), var(--dark-red));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .testimonial-card {
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(212, 175, 55, 0.2);
 }

 /* .nav-glass {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(212, 175, 55, 0.2);
 } */

 .gallery-filter-btn {
     background: rgba(255, 255, 255, 0.8);
     border: 2px solid rgba(212, 175, 55, 0.3);
     color: #6b7280;
 }

 .gallery-filter-btn:hover {
     background: rgba(212, 175, 55, 0.1);
     border-color: var(--primary-red);
     color: var(--primary-dark);
 }

 .gallery-filter-btn.active {
     background: var(--primary-red);
     border-color: var(--primary-red);
     color: var(--primary-dark);
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
 }

 /* Hide scrollbar for mobile carousels */
 .scrollbar-hide {
     -ms-overflow-style: none;
     scrollbar-width: none;
 }

 .scrollbar-hide::-webkit-scrollbar {
     display: none;
 }

 /* Smooth scroll snap for mobile carousels */
 .scroll-snap-x {
     scroll-snap-type: x mandatory;
 }

 .scroll-snap-start {
     scroll-snap-align: start;
 }

 /* Shimmer animation for mobile cards */
 @keyframes shimmer {
     0% {
         transform: translateX(-100%) skewX(-12deg);
     }

     100% {
         transform: translateX(200%) skewX(-12deg);
     }
 }

 .animate-shimmer {
     animation: shimmer 2s infinite;
 }
 /* Remove link underline and set default color */
a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* makes link use parent text color */
}

/* Optional: style footer links to white/gray */
footer a {
  color: #d1d5db; /* Tailwind gray-300 */
  transition: color 0.3s;
}

footer a:hover {
  color: #ffffff; /* white on hover */
}


 /* Line clamp utility */
 .line-clamp-2 {
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }