/* ============================================
   AL HALABY GROUP - MODERN LANDING PAGE STYLES
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (THEME)
   ============================================ */
   :root {
    /* Primary Colors - Teal/Blue Family */
    --color-primary: #0d9488;
    --color-primary-light: #14b8a6;
    --color-primary-dark: #0f766e;
    --color-primary-subtle: rgba(13, 148, 136, 0.08);
  
    /* Secondary - Warm Accent */
    --color-accent: #f59e0b;
    --color-accent-light: #fbbf24;
  
    /* Neutrals */
    --color-white: #ffffff;
    --color-off-white: #fafafa;
    --color-cream: #f8f9fa;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
  
    /* Semantic Colors */
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
  
    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    --font-secondary: 'Tajawal', sans-serif;
  
    /* Spacing System (8px base) */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
  
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(13, 148, 136, 0.15);
  
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
  
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* ============================================
     2. GLOBAL STYLES & RESET
     ============================================ */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-primary);
    color: var(--color-gray-800);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    width: 100%;
    max-width: 100vw;
  }
  
  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
  }
  
  /* ============================================
     3. TOP BAR
     ============================================ */
  .top-bar {
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
    color: var(--color-white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .top-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .top-contact a {
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: rgba(13, 148, 136, 0.2);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
  }
  
  .top-contact a:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
  }
  
  .top-text {
    color: var(--color-gray-300);
    font-size: 0.813rem;
  }
  
  .top-social {
    display: flex;
    gap: 0.5rem;
  }
  
  .top-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all var(--transition-base);
  }
  
  .top-social a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
  }
  
  /* ============================================
     4. NAVIGATION
     ============================================ */
  .navbar {
    background: var(--color-white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
  }
  
  .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    z-index: -1;
  }
  
  .navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
  }
  
  .navbar-brand .logo {
    height: 50px;
    transition: all var(--transition-base);
  }
  
  .navbar.scrolled .logo {
    height: 40px;
  }
  
  .nav-link {
    color: var(--color-gray-700);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--color-primary);
    background: var(--color-primary-subtle);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-base);
    transform: translateX(50%);
  }
  
  .nav-link:hover::after {
    width: 50%;
  }
  
  .btn-primary-custom {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
  }
  
  /* ============================================
     5. HERO SECTION
     ============================================ */
  .hero-section {
    position: relative;
    overflow: hidden;
  }
  
  .carousel-inner {
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
  }
  
  .carousel-item {
    height: 100%;
    position: relative;
  }
  
  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(13, 148, 136, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
  }
  
  .carousel-caption {
    position: absolute;
    z-index: 2;
    bottom: auto;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: right;
    pointer-events: auto;
  }
  
  .hero-content {
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .hero-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.25) 0%, rgba(20, 184, 166, 0.2) 100%);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateX(0deg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
  }
  
  .hero-label::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
  }
  
  .hero-label:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-2px);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  
  .hero-label:hover::before {
    left: 100%;
  }
  
  .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  }
  
  .hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .hero-quote {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem) !important;
    font-style: italic;
    font-weight: 500;
    color: var(--color-white) !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.9 !important;
    position: relative;
    padding: 1rem 0;
    margin-bottom: 2rem !important;
  }
  
  .hero-quote::before,
  .hero-quote::after {
    content: '"';
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    position: absolute;
  }
  
  .hero-quote::before {
    right: -1.5rem;
    top: 0;
  }
  
  .hero-quote::after {
    left: -1.5rem;
    bottom: 0;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn-light-custom {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    border: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-light-custom:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
  }
  
  .btn-outline-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: var(--color-white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) translateZ(0);
  }
  
  .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }
  
  .btn-outline-light:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: var(--color-white);
    transform: perspective(1000px) translateY(-3px) rotateX(5deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--color-white);
  }
  
  .btn-outline-light:hover::before {
    left: 100%;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    z-index: 2;
  }
  
  .carousel:hover .carousel-control-prev,
  .carousel:hover .carousel-control-next {
    opacity: 1;
  }
  
  .carousel-control-prev {
    right: 2rem;
    left: auto;
  }
  
  .carousel-control-next {
    left: 2rem;
    right: auto;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .carousel-indicators {
    margin-bottom: 2rem;
    gap: 0.5rem;
    display: flex;
    justify-content: center;
  }
  
  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-white);
    background: transparent;
    opacity: 0.6;
    transition: all var(--transition-base);
  }
  
  .carousel-indicators button.active {
    width: 40px;
    opacity: 1;
    background: var(--color-white);
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ============================================
     6. ABOUT SECTION
     ============================================ */
  .hero-about-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-50) 100%);
  }
  
  .about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }
  
  .about-hero-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
  }
  
  .about-hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
  }
  
  .about-hero-image:hover img {
    transform: scale(1.05);
  }
  
  .floating-badge {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
  }
  
  .experience-badge {
    bottom: 2rem;
    right: 2rem;
  }
  
  .badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.75rem;
  }
  
  .badge-content {
    display: flex;
    flex-direction: column;
  }
  
  .badge-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
  }
  
  .badge-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .about-hero-content {
    padding-right: var(--spacing-xl);
  }
  
  .section-label {
    display: inline-block;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
  }
  
  .about-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.75rem;
  }
  
  .stat-info h4 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  
  .stat-info p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin: 0;
  }
  
  .why-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .why-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
  }
  
  .why-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
  }
  
  .why-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .why-text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
  }
  
  .why-text p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.5;
  }
  
  .about-cta {
    margin-top: 2rem;
  }
  
  /* ============================================
     7. PRODUCTS SECTION - INNOVATIVE DESIGN
     ============================================ */
  .products-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    position: relative;
  }
  
  .section-header-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-top: 1rem;
  }
  
  .product-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-white);
    transition: all var(--transition-slow);
    border: 1px solid var(--color-gray-200);
    height: 100%;
    cursor: pointer;
    transform: perspective(1000px) translateZ(0);
    transform-style: preserve-3d;
  }
  
  .product-card:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(2deg);
    box-shadow: 0 30px 80px rgba(13, 148, 136, 0.25), 0 0 0 3px rgba(13, 148, 136, 0.1);
    border-color: var(--color-primary);
  }
  
  .product-image {
    position: relative;
    overflow: hidden;
    height: 400px;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.1);
  }
  
  .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 148, 136, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
  }
  
  .product-card:hover .product-overlay {
    opacity: 1;
  }
  
  .btn-light-sm {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-light-sm:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
  }
  
  .product-info {
    padding: 2rem;
  }
  
  .product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .product-info p {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
  }
  
  .card-elevated {
    box-shadow: var(--shadow-md);
  }
  
  /* ============================================
     8. UPVC FOCUS SECTION
     ============================================ */
  .upvc-focus-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
  }
  
  .upvc-focus-content {
    padding-left: var(--spacing-xl);
  }
  
  .upvc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
  }
  
  .upvc-focus-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
  }
  
  .upvc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .upvc-feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
  }
  
  .upvc-feature-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
  }
  
  .feature-content p {
    font-size: 0.938rem;
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.5;
  }
  
  .upvc-stats-modern {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-primary-subtle) 0%, var(--color-white) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-primary);
  }
  
  .upvc-stats-modern .stat-item {
    flex: 1;
    text-align: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 0.938rem;
    color: var(--color-gray-700);
    font-weight: 600;
  }
  
  .upvc-gallery-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .gallery-main {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
  }
  
  .gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
  }
  
  .gallery-main:hover img {
    transform: scale(1.05);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
  }
  
  .gallery-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.938rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(13, 148, 136, 0.1);
    border: 2px solid rgba(13, 148, 136, 0.2);
    transform: perspective(1000px) translateZ(0);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
  }
  
  .gallery-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
  }
  
  .gallery-badge:hover {
    transform: perspective(1000px) translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25), 0 0 0 1px rgba(13, 148, 136, 0.3);
  }
  
  .gallery-badge:hover::after {
    opacity: 0.1;
  }
  
  .gallery-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
  }
  
  .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-base);
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-overlay-small {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 148, 136, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
    color: var(--color-white);
    font-size: 1.5rem;
  }
  
  .gallery-item:hover .gallery-overlay-small {
    opacity: 1;
  }
  
  /* ============================================
     9. GROOMS SECTION
     ============================================ */
  .grooms-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    position: relative;
    overflow: hidden;
  }
  
  .grooms-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }
  
  .grooms-content {
    position: relative;
    z-index: 1;
    padding-left: var(--spacing-xl);
  }
  
  .grooms-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
  }
  
  .grooms-badge i {
    color: #ef4444;
  }
  
  .grooms-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .grooms-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 2.5rem;
  }
  
  .grooms-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .grooms-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
  }
  
  .grooms-feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
  }
  
  .grooms-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .grooms-feature .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
  }
  
  .feature-text p {
    font-size: 0.938rem;
    color: var(--color-gray-600);
    margin: 0;
  }
  
  .grooms-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn-grooms-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-grooms-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
  }
  
  .btn-grooms-whatsapp {
    background: #25d366;
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-grooms-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    color: var(--color-white);
  }
  
  .grooms-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .grooms-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .grooms-card {
    position: absolute;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all var(--transition-smooth);
  }
  
  .grooms-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .grooms-card.card-1 {
    width: 280px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    z-index: 3;
  }
  
  .grooms-card.card-2 {
    width: 240px;
    height: 280px;
    top: 30%;
    right: 5%;
    transform: rotate(8deg);
    z-index: 2;
  }
  
  .grooms-card.card-3 {
    width: 220px;
    height: 260px;
    bottom: 10%;
    left: 5%;
    transform: rotate(-8deg);
    z-index: 1;
  }
  
  .grooms-card-stack:hover .card-1 {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.05);
  }
  
  .grooms-card-stack:hover .card-2 {
    transform: rotate(12deg) translateX(10px);
  }
  
  .grooms-card-stack:hover .card-3 {
    transform: rotate(-12deg) translateX(-10px);
  }
  
  .grooms-installment-badge {
    position: absolute;
    bottom: 20%;
    right: 10%;
    background: var(--color-white);
    padding: 1.25rem 1.875rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
  }
  
  .grooms-installment-badge .badge-content {
    text-align: center;
  }
  
  .grooms-installment-badge .badge-title {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    color: var(--color-gray-900);
  }
  
  .grooms-installment-badge .badge-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
  }
  
  /* ============================================
     10. SECURITY SECTION
     ============================================ */
  .security-focus-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
  }
  
  .security-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .security-main-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
  }
  
  .security-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
  }
  
  .security-main-image:hover img {
    transform: scale(1.05);
  }
  
  .security-image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(13, 148, 136, 0.2);
    border: 2px solid rgba(13, 148, 136, 0.3);
    transform: perspective(1000px) translateZ(0);
    transition: all var(--transition-base);
  }
  
  .security-image-badge:hover {
    transform: perspective(1000px) translateY(-3px) rotateX(5deg);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.3), 0 0 0 3px rgba(13, 148, 136, 0.3);
  }
  
  .security-side-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .security-side-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
  }
  
  .security-side-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-base);
  }
  
  .security-side-item:hover img {
    transform: scale(1.1);
  }
  
  .security-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 148, 136, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
    color: var(--color-white);
    font-size: 1.5rem;
  }
  
  .security-side-item:hover .security-overlay {
    opacity: 1;
  }
  
  .security-content {
    padding-right: var(--spacing-xl);
  }
  
  .security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-gray-900) 100%);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
  }
  
  .security-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .security-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
  }
  
  .security-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .security-benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-200);
  }
  
  .security-benefit-item:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
  }
  
  .benefit-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }
  
  .benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
  }
  
  .benefit-text p {
    font-size: 0.938rem;
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.5;
  }
  
  .security-level {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
    border-radius: var(--radius-xl);
    color: var(--color-white);
    margin-bottom: 1.5rem;
  }
  
  .security-level-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
  
  .security-level-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.75rem;
  }
  
  .security-level-fill {
    width: 95%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-full);
    animation: fillBar 2s ease-out;
  }
  
  @keyframes fillBar {
    from {
      width: 0;
    }
    to {
      width: 95%;
    }
  }
  
  .security-level-text {
    font-size: 0.875rem;
    opacity: 0.9;
  }
  
  .security-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary-subtle);
    border-radius: var(--radius-lg);
    color: var(--color-gray-700);
    font-size: 0.938rem;
  }
  
  .security-note i {
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  
  .security-note a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
  }
  
  /* ============================================
     11. KITCHEN SECTION
     ============================================ */
  .kitchen-focus-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
  }
  
  .kitchen-content {
    padding-left: var(--spacing-xl);
  }
  
  .kitchen-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  }
  
  .kitchen-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .kitchen-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
  }
  
  .kitchen-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .kitchen-benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
  }
  
  .kitchen-benefit-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
  }
  
  .kitchen-benefit-item .benefit-icon-wrapper {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
  }
  
  .kitchen-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .kitchen-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--color-gray-700);
    font-size: 0.938rem;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
  }
  
  .kitchen-feature-item i {
    color: var(--color-accent);
  }
  
  .kitchen-feature-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
  }
  
  .kitchen-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .kitchen-main-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
  }
  
  .kitchen-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
  }
  
  .kitchen-main-image:hover img {
    transform: scale(1.05);
  }
  
  .kitchen-image-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--color-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(245, 158, 11, 0.2);
    border: 2px solid rgba(245, 158, 11, 0.3);
    transform: perspective(1000px) translateZ(0);
    transition: all var(--transition-base);
  }
  
  .kitchen-image-badge:hover {
    transform: perspective(1000px) translateY(-3px) rotateX(5deg);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.3), 0 0 0 3px rgba(245, 158, 11, 0.3);
  }
  
  .kitchen-side-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .kitchen-side-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
  }
  
  .kitchen-side-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-base);
  }
  
  .kitchen-side-item:hover img {
    transform: scale(1.1);
  }
  
  .kitchen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 158, 11, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
    color: var(--color-white);
    font-size: 1.5rem;
  }
  
  .kitchen-side-item:hover .kitchen-overlay {
    opacity: 1;
  }
  
  /* ============================================
     12. PROCESS SECTION
     ============================================ */
  .process-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
  }
  
  .process-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--color-gray-200);
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
  }
  
  .process-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
  }
  
  .process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
  }
  
  .process-icon {
    width: 80px;
    height: 80px;
    margin: 2rem auto 1.5rem;
    background: var(--color-primary-subtle);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2rem;
    transition: all var(--transition-base);
  }
  
  .process-card:hover .process-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
  }
  
  .process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
  }
  
  .process-card p {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
  }
  
  .wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  
  .wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
  }
  
  .wave-cream path {
    fill: var(--color-cream);
  }
  
  /* ============================================
     13. PROJECTS GALLERY - MODERN GRID DESIGN
     ============================================ */
  .projects-gallery {
    padding: var(--spacing-lg) 0 var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
  }

  /* Curved Swipe Gallery */
  .curved-gallery-container {
    position: relative;
    padding: 1rem 0 5rem;
    background: var(--color-gray-50);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .curved-gallery-swiper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
  }

  .curved-gallery-swiper::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -5%;
    width: 110%;
    height: 100px;
    background: var(--color-gray-50);
    border-radius: 100%;
    z-index: 100;
    pointer-events: none;
  }

  .curved-gallery-swiper::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -5%;
    width: 110%;
    height: 100px;
    background: var(--color-gray-50);
    border-radius: 100%;
    z-index: 100;
    pointer-events: none;
  }

  .curved-gallery-swiper .swiper-slide {
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
  }

  .curved-gallery-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(13, 148, 136, 0.2);
    z-index: 2;
  }

  .curved-gallery-swiper .swiper-slide-prev,
  .curved-gallery-swiper .swiper-slide-next {
    opacity: 0.75;
  }

  /* Show more slides on large screens */
  @media (min-width: 1200px) {
    .curved-gallery-swiper .swiper-slide {
      opacity: 0.5;
      height: 480px;
    }

    .curved-gallery-swiper .swiper-slide-active {
      opacity: 1;
    }

    .curved-gallery-swiper .swiper-slide-prev,
    .curved-gallery-swiper .swiper-slide-next {
      opacity: 0.65;
    }
  }

  @media (min-width: 1600px) {
    .curved-gallery-swiper {
      max-width: 1800px;
      padding: 0 3rem;
    }

    .curved-gallery-swiper .swiper-slide {
      height: 500px;
    }
  }

  .curved-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .curved-gallery-swiper .swiper-slide:hover img {
    transform: scale(1.1);
  }

  .curved-gallery-swiper .swiper-slide-active:hover {
    transform: scale(1.08);
  }

  /* Navigation Buttons */
  .curved-gallery-prev,
  .curved-gallery-next {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--color-primary);
    z-index: 10;
  }

  .curved-gallery-prev::after,
  .curved-gallery-next::after {
    font-size: 1.25rem;
    font-weight: 900;
  }

  .curved-gallery-prev:hover,
  .curved-gallery-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(13, 148, 136, 0.3);
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .curved-gallery-swiper .swiper-slide {
      height: 450px;
    }

    .curved-gallery-swiper::before {
      top: -60px;
      height: 80px;
    }

    .curved-gallery-swiper::after {
      bottom: -50px;
      height: 80px;
    }
  }

  @media (max-width: 767px) {
    .curved-gallery-container {
      padding: 3rem 0;
      overflow: hidden;
    }

    .curved-gallery-swiper {
      padding: 0 1rem;
      overflow: hidden;
    }

    .curved-gallery-swiper .swiper-slide {
      height: 400px;
    }

    .curved-gallery-prev,
    .curved-gallery-next {
      width: 45px;
      height: 45px;
    }

    .curved-gallery-prev::after,
    .curved-gallery-next::after {
      font-size: 1.1rem;
    }

    .curved-gallery-swiper::before {
      top: -50px;
      height: 70px;
      left: -2%;
      width: 104%;
    }

    .curved-gallery-swiper::after {
      bottom: -40px;
      height: 70px;
      left: -2%;
      width: 104%;
    }
  }

  @media (max-width: 575px) {
    .curved-gallery-swiper .swiper-slide {
      height: 350px;
    }
  }

  /* Gallery Navigation */
  .gallery-nav-next,
  .gallery-nav-prev {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--color-primary);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-200);
  }

  .gallery-nav-next:hover,
  .gallery-nav-prev:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
  }

  .gallery-nav-next::after,
  .gallery-nav-prev::after {
    font-size: 1.25rem;
    font-weight: 900;
  }

  .gallery-pagination {
    position: relative;
    margin-top: 2rem;
  }

  .gallery-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-gray-300);
    opacity: 1;
    transition: all var(--transition-base);
  }

  .gallery-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 30px;
    border-radius: var(--radius-full);
  }
  
  /* Lightbox */
  .gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeInLightbox 0.3s ease-out;
  }
  
  @keyframes fadeInLightbox {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .gallery-lightbox.active {
    display: flex;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
  }
  
  .lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
  }
  
  .lightbox-caption {
    color: var(--color-white);
    text-align: center;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
  }
  
  .lightbox-close,
  .lightbox-nav {
    position: fixed;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) translateZ(0);
  }
  
  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: perspective(1000px) translateY(-3px) rotateX(5deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(13, 148, 136, 0.3);
  }
  
  .lightbox-close {
    top: 2rem;
    left: 2rem;
  }
  
  .lightbox-prev {
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }
  
  .lightbox-next {
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
  }
  
  /* ============================================
     14. ARTICLES SECTION
     ============================================ */
  .articles-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
  }
  
  .articles-swiper-wrapper {
    position: relative;
    padding: 0 3rem;
  }

  .articles-swiper .swiper-slide {
    height: auto;
    display: flex;
  }
  
  .article-card {
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary);
  }
  
  .article-image {
    position: relative;
    overflow: hidden;
    height: 250px;
  }
  
  .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
  }
  
  .article-card:hover .article-image img {
    transform: scale(1.1);
  }
  
  .article-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.813rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
  }
  
  .article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .article-meta i {
    color: var(--color-primary);
  }
  
  .article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .article-excerpt {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
  }
  
  .article-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    margin-top: auto;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    min-height: 48px;
    width: 100%;
    text-align: center;
  }
  
  .article-link:hover {
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  .article-link i {
    font-size: 1.125rem;
  }
  
  .articles-nav-next,
  .articles-nav-prev {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--color-primary);
    transition: all var(--transition-base);
  }
  
  .articles-nav-next:hover,
  .articles-nav-prev:hover {
    background: var(--color-primary);
    color: var(--color-white);
  }
  
  .articles-nav-next::after,
  .articles-nav-prev::after {
    font-size: 1.25rem;
    font-weight: 900;
  }
  
  .articles-pagination {
    margin-top: 2rem;
  }
  
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-gray-300);
    opacity: 1;
    transition: all var(--transition-base);
  }
  
  .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 30px;
    border-radius: var(--radius-full);
  }

  /* ============================================
     ARTICLE PAGE STYLES
     ============================================ */
  .article-page-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-gray-50);
    min-height: 80vh;
  }

  .article-breadcrumb {
    margin-bottom: 2rem;
  }

  .article-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .article-breadcrumb .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base);
  }

  .article-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-primary-dark);
  }

  .article-breadcrumb .breadcrumb-item.active {
    color: var(--color-gray-600);
  }

  .article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "←";
    color: var(--color-gray-400);
    padding: 0 0.5rem;
  }

  .article-page-content {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
  }

  .article-page-category {
    display: inline-block;
    margin-bottom: 1rem;
  }

  .article-page-category span {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
  }

  .article-page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .article-page-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-200);
    color: var(--color-gray-600);
    font-size: 0.938rem;
  }

  .article-page-meta i {
    color: var(--color-primary);
    margin-left: 0.5rem;
  }

  .article-page-image {
    margin-bottom: 2.5rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .article-page-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .article-page-body {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-gray-700);
  }

  .article-page-body p {
    margin-bottom: 1.5rem;
  }

  .article-page-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .article-page-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .article-page-body ul,
  .article-page-body ol {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
  }

  .article-page-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
  }

  .article-page-body strong {
    color: var(--color-gray-900);
    font-weight: 700;
  }

  .article-page-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-200);
    flex-wrap: wrap;
  }

  .article-page-actions .btn {
    flex: 1;
    min-width: 200px;
  }

  @media (max-width: 991px) {
    .article-page-content {
      padding: 2rem;
    }

    .article-page-title {
      font-size: 2rem;
    }

    .article-page-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .article-page-actions {
      flex-direction: column;
    }

    .article-page-actions .btn {
      width: 100%;
    }
  }

  @media (max-width: 767px) {
    .article-page-section {
      padding: var(--spacing-xl) 0;
    }

    .article-page-content {
      padding: 1.5rem;
    }

    .article-page-title {
      font-size: 1.75rem;
    }

    .article-page-body {
      font-size: 1rem;
    }

    .article-page-body h2 {
      font-size: 1.5rem;
    }

    .article-page-body h3 {
      font-size: 1.25rem;
    }
  }
  
  /* ============================================
     15. BOOKING SECTION
     ============================================ */
  .booking-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
  }
  
  .booking-info {
    padding-left: var(--spacing-xl);
  }
  
  .section-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
  }
  
  .booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .booking-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--color-gray-700);
    font-weight: 600;
  }
  
  .booking-feature i {
    color: var(--color-primary);
    font-size: 1.5rem;
  }
  
  .booking-form-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-gray-200);
  }
  
  .form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-gray-100);
  }
  
  .form-header i {
    font-size: 2rem;
    color: var(--color-primary);
  }
  
  .form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.75rem;
    font-size: 0.938rem;
  }
  
  .form-group label i {
    color: var(--color-primary);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    background: var(--color-white);
    color: var(--color-gray-900);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-subtle);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .btn-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
  }
  
  .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }
  
  /* Booking Form Errors */
  .form-group .error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #fff5f5;
    border-right: 3px solid #dc3545;
    border-radius: var(--radius-sm);
    animation: slideDown 0.3s ease-out;
  }
  
  .form-group input.error,
  .form-group select.error,
  .form-group textarea.error {
    border-color: #dc3545;
    background: #fff5f5;
  }
  
  .form-group input.error:focus,
  .form-group select.error:focus,
  .form-group textarea.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }
  
  /* Success Alert */
  .booking-success-alert {
    margin-bottom: 1.5rem;
    animation: slideDown 0.4s ease-out;
  }
  
  .success-alert-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    position: relative;
  }
  
  .success-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: scaleIn 0.5s ease-out;
  }
  
  .success-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: white;
    stroke-width: 3;
  }
  
  .success-message-text {
    flex: 1;
  }
  
  .success-message-text h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    font-weight: 700;
  }
  
  .success-message-text p {
    margin: 0;
    font-size: 0.938rem;
    opacity: 0.95;
    line-height: 1.6;
  }
  
  .success-close-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .success-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }
  
  /* Error Alert */
  .booking-error-alert {
    margin-bottom: 1.5rem;
    animation: slideDown 0.4s ease-out;
  }
  
  .error-alert-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    position: relative;
  }
  
  .error-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
  }
  
  .error-message-text {
    flex: 1;
  }
  
  .error-message-text p {
    margin: 0;
    font-size: 0.938rem;
    line-height: 1.6;
  }
  
  .error-close-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .error-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes scaleIn {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .success-alert-content,
    .error-alert-content {
      padding: 1rem;
      gap: 0.75rem;
    }
    
    .success-icon,
    .error-icon {
      width: 2rem;
      height: 2rem;
    }
    
    .success-icon svg {
      width: 1.25rem;
      height: 1.25rem;
    }
    
    .success-message-text h4 {
      font-size: 1rem;
    }
    
    .success-message-text p,
    .error-message-text p {
      font-size: 0.875rem;
    }
  }
  
  /* ============================================
     16. FOOTER
     ============================================ */
  .modern-footer {
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
    color: var(--color-white);
    position: relative;
  }
  
  .footer-main {
    padding: 5rem 0 3rem;
  }
  
  .footer-brand {
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    padding: 0.5rem;
    object-fit: contain;
  }
  
  .footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-300);
    margin-bottom: 1.5rem;
  }
  
  .footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-weight: 600;
  }
  
  .badge-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
  }
  
  .footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: var(--color-gray-300);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-links a:hover {
    color: var(--color-primary);
    padding-right: 0.5rem;
  }
  
  .footer-links i {
    color: var(--color-primary);
    font-size: 1rem;
  }
  
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }
  
  .footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-contact i {
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }
  
  .footer-contact strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    font-size: 0.938rem;
  }
  
  .footer-contact a {
    color: var(--color-gray-300);
    transition: all var(--transition-base);
    display: block;
    font-size: 0.938rem;
  }
  
  .footer-contact a:hover {
    color: var(--color-primary);
  }
  
  .footer-social h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
  }
  
  .social-icons {
    display: flex;
    gap: 0.75rem;
  }
  
  .social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--color-white);
    transition: all var(--transition-base);
    font-size: 1.25rem;
  }
  
  .social-icon.whatsapp {
    background: #25d366;
  }
  
  .social-icon.facebook {
    background: #1877f2;
  }
  
  .social-icon.tiktok {
    background: #000000;
  }
  
  .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }
  
  .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-bottom p {
    margin: 0;
    color: var(--color-gray-400);
    font-size: 0.938rem;
  }
  
  .footer-bottom strong {
    color: var(--color-white);
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-bottom-links a {
    color: var(--color-gray-400);
    transition: all var(--transition-base);
    font-size: 0.938rem;
  }
  
  .footer-bottom-links a:hover {
    color: var(--color-primary);
  }
  
  .footer-bottom-links span {
    color: var(--color-gray-600);
  }
  
  /* ============================================
     17. FLOATING ELEMENTS
     ============================================ */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-2xl);
    z-index: 1000;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
    contain: layout style paint;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    color: var(--color-white);
  }
  
  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
  }
  
  .scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
  }
  
  .scroll-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
  }
  
  /* ============================================
     18. RESPONSIVE DESIGN
     ============================================ */
  /* Reduce top padding on large screens */
  @media (min-width: 992px) {
    .hero-about-section,
    .products-section,
    .upvc-focus-section,
    .grooms-section,
    .security-focus-section,
    .kitchen-focus-section,
    .process-section,
    .projects-gallery,
    .articles-section,
    .booking-section {
      padding: 4rem 0 var(--spacing-3xl) 0;
    }
  }

  @media (max-width: 991px) {
    .hero-content {
      max-width: 100%;
    }
  
    .about-hero-content {
      padding-right: 0;
      margin-top: 2rem;
    }
  
    .why-grid {
      grid-template-columns: 1fr;
    }
  
    .upvc-focus-content,
    .security-content,
    .kitchen-content,
    .grooms-content {
      padding-left: 0;
      padding-right: 0;
    }
  
    .upvc-features-grid {
      grid-template-columns: 1fr;
    }
  
    .upvc-stats-modern {
      flex-direction: column;
      text-align: center;
    }
  
    .grooms-visual {
      height: 400px;
      margin-top: 3rem;
    }
    
    .grooms-card.card-1 {
      width: 220px;
      height: 260px;
    }
    
    .grooms-card.card-2 {
      width: 180px;
      height: 220px;
    }
    
    .grooms-card.card-3 {
      width: 160px;
      height: 200px;
    }
  
    .booking-info {
      padding-left: 0;
      margin-bottom: 2rem;
    }
  
    .articles-swiper-wrapper {
      padding: 0 2rem;
    }
  }
  
  @media (max-width: 767px) {
    :root {
      --spacing-xl: 2rem;
      --spacing-2xl: 3rem;
      --spacing-3xl: 4rem;
    }
    
    /* Prevent horizontal overflow on mobile */
    body, html {
      overflow-x: hidden !important;
      width: 100% !important;
      max-width: 100vw !important;
      position: relative;
    }
    
    /* Center containers on mobile */
    .container,
    .container-fluid {
      width: 100% !important;
      max-width: 100% !important;
      padding-left: 15px !important;
      padding-right: 15px !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    
    /* Center rows and columns */
    .row {
      width: 100% !important;
      max-width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      display: flex;
      flex-wrap: wrap;
    }
    
    [class*="col-"] {
      padding-left: 15px !important;
      padding-right: 15px !important;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    * {
      max-width: 100%;
    }
  
    .carousel-inner {
      height: 70vh;
      min-height: 500px;
      position: relative;
      overflow: hidden;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
    
    .hero-quote {
      font-size: 1.125rem !important;
      padding: 0.75rem 0;
    }
    
    .hero-quote::before,
    .hero-quote::after {
      font-size: 1.5rem;
    }
    
    .hero-quote::before {
      right: -1rem;
    }
    
    .hero-quote::after {
      left: -1rem;
    }
  
    .hero-buttons {
      flex-direction: column;
    }
  
    .hero-buttons .btn {
      width: 100%;
      justify-content: center;
    }
  
    .section-title {
      font-size: 1.75rem;
    }
  
    .about-stats {
      flex-direction: column;
    }
  
    .modern-gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      padding: 1rem 0;
    }

    .gallery-item-large {
      grid-column: span 1;
      aspect-ratio: 1;
    }

    .gallery-item-tall {
      grid-row: span 1;
      aspect-ratio: 1;
    }

    .gallery-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
  
    .grooms-cta {
      flex-direction: column;
    }
  
    .grooms-cta .btn {
      width: 100%;
      justify-content: center;
    }
  
    .grooms-visual {
      height: 350px;
    }
    
    .grooms-card.card-1 {
      width: 200px;
      height: 240px;
    }
    
    .grooms-card.card-2 {
      width: 160px;
      height: 200px;
    }
    
    .grooms-card.card-3 {
      width: 140px;
      height: 180px;
    }
  
    .process-section .col-lg-3 {
      margin-bottom: 3rem;
    }
  
    .articles-swiper-wrapper {
      padding: 0 1rem;
    }
    
    .article-link {
      padding: 1rem 2rem;
      font-size: 1.125rem;
      min-height: 52px;
      width: 100%;
    }
  
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
  
    .whatsapp-float {
      width: 55px;
      height: 55px;
      bottom: 1.5rem;
      left: 1rem;
      animation: pulseMobile 2s infinite;
    }
    
    @keyframes pulseMobile {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
      }
    }
  
    .scroll-top {
      bottom: 1.5rem;
      right: 1.5rem;
    }
  
    .lightbox-close {
      top: 1rem;
      left: 1rem;
    }
  
    .lightbox-prev {
      right: 1rem;
    }
  
    .lightbox-next {
      left: 1rem;
    }
  
    .carousel-control-prev {
      right: 1rem;
    }
  
    .carousel-control-next {
      left: 1rem;
    }
  }
  
  @media (max-width: 575px) {
    .top-bar {
      font-size: 0.75rem;
    }
  
    .top-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  
    .gallery-main img {
      height: 300px;
    }
  
    .gallery-side {
      grid-template-columns: 1fr;
    }
  
    .security-main-image img,
    .kitchen-main-image img {
      height: 350px;
    }
  
    .security-side-images,
    .kitchen-side-images {
      grid-template-columns: 1fr;
    }
  
    .booking-form-card {
      padding: 1.5rem;
    }
  
    .about-hero-image img {
      height: 400px;
    }
  
    .experience-badge {
      bottom: 1rem;
      right: 1rem;
      padding: 1rem;
    }
  
    .badge-icon {
      width: 50px;
      height: 50px;
    }
  }
  
  /* ============================================
     19. SCROLL ANIMATIONS
     ============================================ */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-smooth);
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .slide-in-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--transition-smooth);
  }
  
  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .slide-in-left {
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-smooth);
  }
  
  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* ============================================
     20. UTILITY CLASSES
     ============================================ */
  .text-primary {
    color: var(--color-primary);
  }
  
  .text-accent {
    color: var(--color-accent);
  }
  
  .bg-primary {
    background-color: var(--color-primary);
  }
  
  .bg-gray-50 {
    background-color: var(--color-gray-50);
  }
  
  .container-fluid {
    max-width: 1400px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Bootstrap Container Override for Centering */
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Row Centering */
  .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
  }
  
  /* Prevent horizontal overflow */
  * {
    max-width: 100%;
  }
  
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }
  