/* Zardware Design System - CSS Variables */
:root {
    /* Brand Colors (HSL format) */
    --primary: 174, 66%, 48%; /* Turquoise Green #28c4b1 */
    --primary-foreground: 0, 0%, 100%;
    --secondary: 177, 61%, 41%; /* Teal Blue #29a69a */
    --secondary-foreground: 0, 0%, 100%;
    --accent: 20, 89%, 55%; /* Bright Orange #f17d24 */
    --accent-foreground: 0, 0%, 100%;
    --background: 0, 0%, 100%;
    --foreground: 220, 15%, 15%;
    --muted: 210, 20%, 96%;
    --muted-foreground: 220, 15%, 45%;
    --border: 220, 13%, 91%;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    --gradient-accent: linear-gradient(135deg, hsl(var(--accent)), hsl(20, 89%, 60%));
    --gradient-subtle: linear-gradient(180deg, hsl(var(--background)), hsl(210, 20%, 98%));
    
    /* Shadows */
    --shadow-elegant: 0 10px 30px -10px hsl(var(--primary) / 0.2);
    --shadow-glow: 0 0 40px hsl(var(--primary) / 0.15);
    --shadow-accent: 0 8px 25px -8px hsl(var(--accent) / 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background: hsl(var(--background));
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #28c4b1 0%, #f17d24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* Navigation */
.custom-navbar {
    background: rgba(255,255,255,0.72) !important;
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    box-shadow: 0 4px 24px 0 rgba(40,196,177,0.08), 0 1.5px 8px 0 rgba(41,166,154,0.06);
    border-bottom: 1.5px solid rgba(40,196,177,0.10);
    transition: background 0.25s, box-shadow 0.25s;
    z-index: 100;
}
.custom-navbar .navbar-brand img {
  filter: drop-shadow(0 2px 8px rgba(40,196,177,0.10));
}

.custom-navbar.scrolled {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 12px 0 rgba(40,196,177,0.04);
    border-bottom: none;
    padding: 0.75rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.navbar-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition-smooth);
    margin-right: 0;
}

.custom-navbar.scrolled .navbar-logo {
    height: 35px;
}

.custom-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.custom-toggler:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
}

/* === Premium Navbar Link Styling === */
.custom-navbar .nav-link {
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  color: #232b2b !important;
  position: relative;
  padding: 0.5rem 1.1rem;
  transition: color 0.18s;
  background: none;
  z-index: 1;
}
.custom-navbar .nav-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.2rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #28c4b1 0%, #f17d24 100%);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 0;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
  color: #28c4b1 !important;
}
.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link:focus::after {
  opacity: 1;
  transform: scaleX(1);
}
.custom-navbar .nav-link.active,
.custom-navbar .nav-link.nav-link-premium.active {
  color: #28c4b1 !important;
}
.custom-navbar .nav-link.active::after,
.custom-navbar .nav-link.nav-link-premium.active::after {
  opacity: 1;
  transform: scaleX(1);
}
/* === End Premium Navbar Link Styling === */

.nav-link-premium {
    position: relative;
    overflow: hidden;
}

.nav-link-premium::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link-premium:hover::before,
.nav-link-premium.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: hsl(var(--primary));
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active {
    color: hsl(var(--primary));
    background: rgba(255, 255, 255, 0.1);
}

.navbar-cta {
    position: relative;
}

.premium-cta {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: var(--transition-spring);
}

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

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

.premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cta-text {
    margin-right: 0.5rem;
}

.cta-icon {
    transition: var(--transition-smooth);
}

.premium-cta:hover .cta-icon {
    transform: translateX(3px);
}

/* Buttons */
.btn {
    border-radius: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-hero {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-elegant);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    box-shadow: var(--shadow-glow);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    box-shadow: 0 12px 35px -12px hsl(var(--accent) / 0.4);
    color: white;
}

.btn-premium {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&w=1600&q=80') center center/cover no-repeat;
}

.hero-image {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(30, 77, 92, 0.2) 50%, rgba(44, 62, 80, 0.1) 100%);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(40, 196, 177, 0.1) 0%, 
        rgba(41, 166, 154, 0.05) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particle-float 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    animation: slideInDown 1s ease-out 0.3s both;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-highlight {
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.premium-btn {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition-spring);
    border: none;
}

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

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

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    font-size: 1.2em;
    transition: var(--transition-smooth);
}

.premium-btn:hover .btn-icon {
    transform: scale(1.1);
}

.hero-stats {
    animation: fadeInUp 1s ease-out 1.1s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease-out 1.3s both;
}

.scroll-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: hsl(var(--primary));
    border-radius: 50%;
    margin: 0 auto;
    animation: scroll-dot 2s ease-in-out infinite;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Gradients */
.section-gradient {
    background: var(--gradient-subtle);
}

/* Cards */
.feature-card,
.portfolio-card,
.testimonial-card,
.process-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: none;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-card:hover,
.portfolio-card:hover,
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.feature-icon,
.process-icon {
    font-size: 3rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon,
.process-card:hover .process-icon {
    transform: scale(1.1);
}

/* Portfolio Cards */
.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay .badge {
    background: hsl(var(--primary));
    color: white;
    border: none;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
}

/* Testimonial Cards */
.testimonial-card {
    border-left: 4px solid hsl(var(--primary));
}

.testimonial-text {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid hsl(var(--border));
    padding-top: 1rem;
}

/* Process Cards */
.process-card {
    position: relative;
    text-align: center;
}

.process-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-glow);
}

/* Tab Navigation */
.tab-wrapper {
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: var(--shadow-elegant);
    display: flex;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    color: hsl(var(--foreground));
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.tab-btn:hover:not(.active) {
    color: hsl(var(--primary));
}

/* Contact Section */
.contact-form-card {
    box-shadow: var(--shadow-elegant);
}

.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item.small {
    margin-bottom: 1rem;
    align-items: center;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.contact-item.small .contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.operating-areas {
    background: var(--gradient-subtle);
    padding: 1.5rem;
    border-radius: 1rem;
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: hsl(var(--primary));
    border-radius: 50%;
    flex-shrink: 0;
}

/* Forms */
.form-control,
.form-select {
    border: 2px solid hsl(var(--border));
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 0.2rem hsl(var(--primary) / 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

/* Footer */
.footer {
    background: hsl(var(--foreground));
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-brand h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: hsl(var(--primary));
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-contact .contact-item {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow-accent);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px -8px hsl(var(--accent) / 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .tab-wrapper {
        flex-direction: column;
    }
    
    .tab-btn {
        margin: 0.25rem 0;
    }
    
    .feature-card,
    .portfolio-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
    }
    
    .navbar-logo {
        height: 32px;
    }
    
    .custom-navbar.scrolled .navbar-logo {
        height: 28px;
    }
    
    .hero-stats .stat-item {
        margin-bottom: 1rem;
    }
    
    .stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.375rem 1rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    /* Trust Indicators Mobile */
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-item {
        padding: 0.5rem 1rem;
        min-width: 200px;
    }
    
    .trust-text {
        font-size: 0.8rem;
    }
    
    /* Enhanced Mobile CTAs */
    .primary-cta {
        transform: scale(1);
    }
    
    .primary-cta:hover {
        transform: scale(1) translateY(-2px);
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .custom-navbar {
        padding: 0.5rem 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Premium Glass Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
}

.glass-effect-dark {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

/* Enhanced Button Styles */
.btn-hero {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-elegant);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    box-shadow: var(--shadow-glow);
    color: white;
    transform: translateY(-2px);
}

/* Premium Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Text Gradients */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Background Effects */
.bg-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Shadows */
.shadow-primary {
    box-shadow: var(--shadow-elegant);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-smooth);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.2em;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Primary CTA */
.primary-cta {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-elegant);
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
}

.primary-cta::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.6s;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Secondary CTA Enhancement */
.secondary-cta {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition-spring);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    animation: slideInDown 1s ease-out 0.3s both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2.5rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

/* Enhanced Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.7s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: hsl(var(--primary));
    font-weight: 700;
    text-shadow: 0 2px 10px hsl(var(--primary) / 0.3);
}

/* Floating Geometric Shape */
.floating-shape {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    opacity: 0.12;
    border-radius: 40% 60% 60% 40%/60% 40% 60% 40%;
    filter: blur(2px);
    z-index: 0;
    animation: floatShape 8s ease-in-out infinite alternate;
}

@keyframes floatShape {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    100% { transform: translateY(30px) scale(1.1) rotate(12deg); }
}

/* Client Logos Bar */
.client-logo {
    height: 36px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(1) contrast(1.2);
    transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}
.client-logo:hover {
    opacity: 1;
    filter: grayscale(0) contrast(1.1) drop-shadow(0 2px 8px hsl(var(--primary) / 0.2));
    transform: scale(1.07);
}

/* Testimonial Preview */
.testimonial-preview {
    background: linear-gradient(90deg, hsl(var(--primary) / 0.04), hsl(var(--accent) / 0.04));
}
.testimonial-card {
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: none;
    background: rgba(255,255,255,0.12);
    transition: box-shadow 0.3s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.stars {
    font-size: 1.2rem;
}
.testimonial-text {
    font-size: 1.1rem;
    color: hsl(var(--foreground));
}
.testimonial-author {
    font-size: 0.95rem;
    color: hsl(var(--muted-foreground));
}

/* Urgency Message */
.urgency-message {
    display: inline-block;
    background: linear-gradient(90deg, hsl(var(--accent) / 0.15), hsl(var(--primary) / 0.10));
    color: hsl(var(--accent));
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    animation: pulseUrgency 2s infinite alternate;
}
.urgency-icon {
    margin-right: 0.5rem;
}
@keyframes pulseUrgency {
    0% { box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
    100% { box-shadow: 0 4px 16px hsl(var(--accent) / 0.15); }
}

/* Micro-interactions for Trust Indicators */
.trust-item {
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.trust-item:active {
    background: rgba(255,255,255,0.22);
    transform: scale(0.97);
    box-shadow: 0 2px 8px hsl(var(--primary) / 0.10);
}

/* Micro-interactions for CTAs */
.primary-cta:active, .secondary-cta:active {
    transform: scale(0.98) translateY(1px);
    box-shadow: 0 2px 8px hsl(var(--primary) / 0.10);
}

/* Premium hover for stat-item */
.stat-item {
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.stat-item:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 6px 24px hsl(var(--primary) / 0.10);
}
.stat-item:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px hsl(var(--primary) / 0.10);
}

/* Trust-item hover already present, but enhance slightly */
.trust-item:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 6px 24px hsl(var(--primary) / 0.10);
}
.trust-item:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px hsl(var(--primary) / 0.10);
}

/* Premium Tabs for Services Section */
.premium-tabs {
    position: relative;
    display: flex;
    gap: 2rem;
    background: rgba(255,255,255,0.07);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    align-items: center;
}
.tab-btn {
    background: none;
    border: none;
    outline: none;
    font-weight: 700;
    font-size: 1.15rem;
    color: hsl(var(--muted-foreground));
    padding: 0.75rem 2.5rem;
    border-radius: 2rem;
    position: relative;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    z-index: 1;
}
.tab-btn .tab-icon {
    font-size: 1.3em;
    transition: color 0.3s, transform 0.3s;
}
.tab-btn.active, .tab-btn[aria-selected="true"] {
    color: hsl(var(--primary));
    background: rgba(40,196,177,0.10);
    box-shadow: 0 2px 12px hsl(var(--primary) / 0.08);
}
.tab-btn.active .tab-icon, .tab-btn[aria-selected="true"] .tab-icon {
    color: hsl(var(--primary));
    transform: scale(1.15);
}
.tab-btn:hover:not(.active):not([aria-selected="true"]) {
    color: hsl(var(--accent));
    background: rgba(241,125,36,0.07);
}
.tab-btn:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}
.tab-underline {
    position: absolute;
    bottom: 0.3rem;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1), width 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
}

@media (max-width: 768px) {
    .premium-tabs {
        gap: 0.5rem;
        padding: 0.25rem 0.5rem;
    }
    .tab-btn {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }
}

/* Premium Service Cards */
.feature-card {
    background: rgba(255,255,255,0.13);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(40,196,177,0.08), 0 1.5px 8px rgba(0,0,0,0.04);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    margin-bottom: 0.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.08), hsl(var(--accent) / 0.07));
    z-index: 0;
    border-radius: 1.5rem;
    pointer-events: none;
}
.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    z-index: 1;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: white;
    border-radius: 1rem;
    padding: 0.7rem 1.1rem;
    box-shadow: 0 2px 12px hsl(var(--primary) / 0.10);
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    display: inline-block;
}
.feature-card:hover {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px hsl(var(--primary) / 0.13), 0 2px 12px hsl(var(--accent) / 0.10);
    transform: translateY(-6px) scale(1.03);
}
.feature-card:hover .feature-icon {
    transform: scale(1.13) rotate(-6deg);
    filter: brightness(1.15) drop-shadow(0 4px 16px hsl(var(--primary) / 0.13));
}
.feature-card h5 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    z-index: 1;
}
.feature-card p {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    z-index: 1;
}
@media (max-width: 768px) {
    .feature-card {
        padding: 1.2rem 0.7rem 1.1rem 0.7rem;
        min-height: 180px;
    }
    .feature-card .feature-icon {
        font-size: 1.6rem;
        padding: 0.5rem 0.7rem;
    }
    .feature-card h5 {
        font-size: 1rem;
    }
    .feature-card p {
        font-size: 0.92rem;
    }
}

/* Premium Services Section Background */
.services-section-bg-premium {
    background: linear-gradient(120deg, #f3fbfa 0%, #eaf7f6 100%);
    margin-top: 3.5rem;
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
}
.services-section-bg-premium .section-title {
    margin-bottom: 1.2rem;
}
.services-section-bg-premium .section-subtitle {
    margin-bottom: 1.2rem;
}
.premium-tabs {
    margin-bottom: 1.2rem;
}
.tab-description {
    margin-bottom: 1.5rem;
}
#services-grid {
    margin-bottom: 2.8rem;
}
.services-cta-card {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 420px;
    padding: 2.2rem 0 2.2rem 0;
}
@media (max-width: 900px) {
    .services-section-bg-premium {
        padding-top: 2.2rem;
        padding-bottom: 2.5rem;
    }
    .services-cta-card {
        padding: 1.2rem 0 1.2rem 0;
    }
}

/* Featured Badge for Service Card */
.featured-badge {
    display: inline-block;
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: linear-gradient(90deg, hsl(var(--accent)), hsl(var(--primary)));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    box-shadow: 0 2px 8px hsl(var(--accent) / 0.13);
    letter-spacing: 0.5px;
    z-index: 2;
    animation: fadeIn 0.7s;
}

/* Dynamic Tab Description */
.tab-description {
    font-size: 1.15rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    letter-spacing: 0.1px;
    animation: fadeInUp 0.7s;
}

/* Premium Services CTA Card */
.services-cta-card {
    max-width: 420px;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 8px 32px hsl(var(--primary) / 0.10), 0 2px 12px hsl(var(--accent) / 0.08);
    background: rgba(255,255,255,0.18);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.4,0,0.2,1);
    transition: box-shadow 0.3s, transform 0.3s;
}
.services-cta-card:hover {
    box-shadow: 0 12px 40px hsl(var(--primary) / 0.13), 0 4px 16px hsl(var(--accent) / 0.10);
    transform: translateY(-4px) scale(1.03);
}
.services-cta-card .btn {
    font-size: 1.18rem;
    font-weight: 700;
    border-radius: 2rem;
    box-shadow: 0 2px 12px hsl(var(--primary) / 0.10);
    padding: 1.1rem 2.5rem;
}
@media (max-width: 768px) {
    .services-cta-card {
        max-width: 100%;
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .services-cta-card .btn {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
}
/* Animate fade-in utility */
.animate-fade-in {
    animation: fadeInUp 1s cubic-bezier(0.4,0,0.2,1);
}

/* Portfolio Section Premium Background */
.portfolio-section-bg {
    background: linear-gradient(120deg, hsl(var(--primary) / 0.04) 0%, hsl(var(--accent) / 0.05) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.2rem !important;
}

/* Hero Project Card */
.hero-project-card {
    border-radius: 2rem;
    box-shadow: 0 8px 32px hsl(var(--primary) / 0.10), 0 2px 12px hsl(var(--accent) / 0.08);
    background: rgba(255,255,255,0.18);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 320px;
    margin-bottom: 3rem;
    z-index: 1;
    animation: fadeInUp 1s cubic-bezier(0.4,0,0.2,1);
}
.hero-project-image-wrap {
    position: relative;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    border-radius: 2rem 0 0 2rem;
}
.hero-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.hero-project-card:hover .hero-project-image {
    transform: scale(1.06);
}
.portfolio-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: linear-gradient(90deg, hsl(var(--accent)), hsl(var(--primary)));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
    box-shadow: 0 2px 8px hsl(var(--accent) / 0.13);
    letter-spacing: 0.5px;
    z-index: 2;
    animation: fadeIn 0.7s;
}
.hero-project-title {
    font-size: 2rem;
    font-weight: 800;
    color: hsl(var(--foreground));
}
.hero-project-location {
    font-size: 1.1rem;
    color: hsl(var(--primary));
    font-weight: 600;
}
.hero-project-story {
    font-size: 1.08rem;
    color: hsl(var(--muted-foreground));
    font-style: italic;
    margin-bottom: 1.2rem;
}
.hero-project-card .btn {
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 2rem;
    box-shadow: 0 2px 12px hsl(var(--primary) / 0.10);
    padding: 0.9rem 2.2rem;
}

/* Portfolio Carousel */
.portfolio-carousel-wrapper {
    position: relative;
    z-index: 1;
}
.portfolio-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
}
.portfolio-card {
    min-width: 340px;
    max-width: 340px;
    background: rgba(255,255,255,0.13);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(40,196,177,0.08), 0 1.5px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    transition: box-shadow 0.3s, transform 0.3s;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.portfolio-card:hover {
    box-shadow: 0 8px 32px hsl(var(--primary) / 0.13), 0 2px 12px hsl(var(--accent) / 0.10);
    transform: translateY(-6px) scale(1.03);
}
.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.portfolio-card:hover .portfolio-image {
    transform: scale(1.07);
}
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.08), hsl(var(--accent) / 0.10));
    opacity: 0.85;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.2rem;
    pointer-events: none;
    border-radius: 1.5rem 1.5rem 0 0;
}
.portfolio-overlay .portfolio-badge {
    position: static;
    margin-bottom: 0.5rem;
    left: unset; top: unset;
    font-size: 0.85rem;
    padding: 0.3rem 0.9rem;
    box-shadow: none;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
}
.portfolio-card .card-body {
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    z-index: 3;
    background: transparent;
}
.card-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.card-text {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.portfolio-card .view-details-btn {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: hsl(var(--primary));
    background: rgba(255,255,255,0.13);
    border-radius: 1.2rem;
    padding: 0.4rem 1.2rem;
    border: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 4px hsl(var(--primary) / 0.08);
    cursor: pointer;
}
.portfolio-card .view-details-btn:hover {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 2px 8px hsl(var(--primary) / 0.13);
}

/* Portfolio Gallery CTA */
.portfolio-gallery-cta {
    color: #28c4b1 !important;
    font-weight: 700;
    background: #fff;
    border: 2px solid #28c4b1;
    box-shadow: 0 2px 12px hsl(var(--primary) / 0.10);
    padding: 1.1rem 2.5rem;
    margin-top: 2rem;
    font-size: 1.1rem;
    border-radius: 2rem;
    transition: box-shadow 0.3s, transform 0.3s, background 0.2s, color 0.2s;
}
.portfolio-gallery-cta:hover {
    background: #28c4b1;
    color: #fff !important;
    box-shadow: 0 8px 32px hsl(var(--primary) / 0.13);
    transform: translateY(-4px) scale(1.04);
}

@media (max-width: 992px) {
    .hero-project-card {
        flex-direction: column;
        min-height: 220px;
    }
    .hero-project-image-wrap {
        border-radius: 2rem 2rem 0 0;
        min-height: 180px;
    }
}
@media (max-width: 768px) {
    .portfolio-carousel {
        gap: 1.1rem;
    }
    .portfolio-card {
        min-width: 260px;
        max-width: 260px;
    }
    .hero-project-title {
        font-size: 1.2rem;
    }
}

/* Why Zardware Premium Background Accents */
.why-zardware-bg-accents {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.why-zardware-accent {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
    transition: opacity 0.3s;
}
.why-zardware-accent-top {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.22;
}
.why-zardware-accent-bottom {
    bottom: -80px;
    right: -120px;
    opacity: 0.13;
}

/* Why Zardware Heading & Tagline Premium Styles */
.why-zardware-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}
.why-zardware-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem;
    position: relative;
}
.why-zardware-gradient-text {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    letter-spacing: -1px;
    display: inline-block;
}
.why-zardware-underline {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #28c4b1 0%, #29a69a 100%);
    border-radius: 3px;
    margin-top: 0.3rem;
    opacity: 0.18;
}
.why-zardware-tagline {
    font-size: 1.15rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.2rem;
}
.why-zardware-icon {
    font-size: 1.3rem;
    color: #28c4b1;
    margin-right: 0.3rem;
    vertical-align: middle;
}
@media (max-width: 768px) {
    .why-zardware-title {
        font-size: 1.5rem;
    }
    .why-zardware-gradient-text {
        font-size: 1.3rem;
    }
    .why-zardware-underline {
        width: 48px;
        height: 3px;
    }
}

/* Why Zardware Premium Feature Cards */
.why-zardware-feature-card {
    background: rgba(255,255,255,0.82);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(60,60,100,0.10);
    backdrop-filter: blur(8px);
    border: 2.5px solid transparent;
    background-clip: padding-box;
    position: relative;
    margin-bottom: 1.2rem;
    transition: box-shadow 0.3s, transform 0.3s, margin 0.3s;
}
/* Gradient border using pseudo-element */
.why-zardware-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(120deg, #28c4b1 0%, #29a69a 100%);
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.why-zardware-feature-card:hover::before {
    opacity: 0.22;
}
.why-zardware-feature-card > * {
    position: relative;
    z-index: 1;
}

/* Staggered fade-in animation */
.why-zardware-feature-card {
    opacity: 0;
    transform: translateY(32px);
    animation: wz-fade-in-up 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
.why-zardware-feature-card:nth-child(1) { animation-delay: 0.08s; }
.why-zardware-feature-card:nth-child(2) { animation-delay: 0.18s; }
.why-zardware-feature-card:nth-child(3) { animation-delay: 0.28s; }
.why-zardware-feature-card:nth-child(4) { animation-delay: 0.38s; }
.why-zardware-feature-card:nth-child(5) { animation-delay: 0.48s; }
.why-zardware-feature-card:nth-child(6) { animation-delay: 0.58s; }
@keyframes wz-fade-in-up {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Animate SVG icon color on hover */
.why-zardware-feature-card .why-zardware-feature-icon svg {
    transition: stroke 0.35s cubic-bezier(0.4,0,0.2,1), filter 0.35s, fill 0.35s;
}
.why-zardware-feature-card:hover .why-zardware-feature-icon svg {
    stroke: #1fa89a;
    filter: drop-shadow(0 2px 8px #28c4b155);
    fill: #e6faf7;
}
/* Orange icons get a lighter orange on hover */
.why-zardware-feature-card:hover .why-zardware-feature-icon svg[stroke="#f17d24"] {
    stroke: #ffb366;
    filter: drop-shadow(0 2px 8px #f17d2444);
}
.why-zardware-feature-icon {
    width: 64px;
    height: 64px;
    margin: 1.2rem auto 1.3rem auto;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6faf7 0%, #f7fafd 100%);
    box-shadow: 0 2px 12px 0 rgba(40,196,177,0.08);
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.why-zardware-feature-card:hover .why-zardware-feature-icon {
    box-shadow: 0 4px 24px 0 rgba(40,196,177,0.18);
    transform: scale(1.08) rotate(-2deg);
}
.why-zardware-feature-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}
.why-zardware-feature-card h5 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #23272f;
    margin-bottom: 0.7rem;
}
.why-zardware-feature-card p {
    font-size: 1.01rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .why-zardware-feature-card {
        padding: 1.3rem 0.7rem 1.1rem 0.7rem;
        margin-bottom: 0.7rem;
    }
    .why-zardware-feature-icon {
        width: 48px;
        height: 48px;
        margin: 0.8rem auto 1rem auto;
        padding-top: 0.1rem;
        padding-bottom: 0.1rem;
    }
    .why-zardware-feature-icon svg {
        width: 26px;
        height: 26px;
    }
    .why-zardware-feature-card h5 {
        font-size: 1rem;
    }
    .why-zardware-feature-card p {
        font-size: 0.97rem;
    }
}

/* Services Section Premium Background Accents */
.services-bg-accents {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.services-accent {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    filter: blur(12px);
    transition: opacity 0.3s;
}
.services-accent-top {
    top: -80px;
    left: -120px;
    opacity: 0.19;
}
.services-accent-bottom {
    bottom: -60px;
    right: -100px;
    opacity: 0.11;
}

/* Premium Service Card Icon Box */
#services .feature-icon {
    width: 84px;
    height: 84px;
    margin: 1.2rem auto 1.3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, #e6faf7 0%, #f7fafd 100%);
    box-shadow: 0 2px 12px 0 rgba(40,196,177,0.10);
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
}
#services .feature-card:hover .feature-icon {
    box-shadow: 0 4px 24px 0 rgba(40,196,177,0.18);
    transform: scale(1.06) translateY(-2px);
}
#services .feature-icon svg {
    width: 60px;
    height: 60px;
    display: block;
    transition: transform 0.3s, filter 0.3s;
}
#services .feature-card:hover .feature-icon svg {
    transform: scale(1.08);
    filter: drop-shadow(0 2px 8px #28c4b133);
}
@media (max-width: 768px) {
    #services .feature-icon {
        width: 56px;
        height: 56px;
        margin: 0.8rem auto 1rem auto;
        border-radius: 0.8rem;
    }
    #services .feature-icon svg {
        width: 38px;
        height: 38px;
    }
}

/* Animated SVG Blob for Services Section */
.services-animated-bg {
    position: absolute;
    top: 10%;
    left: 55%;
    transform: translate(-50%, 0);
    z-index: 1;
    pointer-events: none;
    width: 520px;
    height: 420px;
    opacity: 0.7;
}
.services-blob {
    filter: blur(10px);
    opacity: 0.7;
    animation: services-blob-float 12s ease-in-out infinite alternate;
}
@keyframes services-blob-float {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.04) translateY(18px) translateX(12px); }
    100% { transform: scale(1) translateY(0); }
}
@media (max-width: 900px) {
    .services-animated-bg {
        width: 320px;
        height: 220px;
        left: 50%;
        top: 6%;
    }
}

/* Animated Gradient Sweep for Services Section */
.services-gradient-sweep {
    position: absolute;
    top: 0;
    left: -30%;
    width: 160%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.32;
    background: linear-gradient(120deg, #28c4b1 0%, #29a69a 40%, #f7fafd 100%);
    filter: blur(32px);
    animation: services-gradient-move 18s ease-in-out infinite alternate;
}
@keyframes services-gradient-move {
    0% { left: -30%; }
    100% { left: -10%; }
}

/* Dynamic Wavy SVG Divider Overlapping Portfolio */
.services-divider-overlap {
    width: 100%;
    height: 90px;
    position: relative;
    margin-top: -3.5rem;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}
.services-divider-svg {
    width: 100%;
    height: 100%;
    display: block;
}
@media (max-width: 900px) {
    .services-divider-overlap {
        height: 48px;
        margin-top: -1.8rem;
    }
}
/* Remove extra gap between Services and Portfolio */
#portfolio {
    margin-top: 0 !important;
    padding-top: 0.5rem;
}

/* Simple Gradient Fade Divider for Services Section */
.services-gradient-fade {
    width: 100%;
    height: 48px;
    margin-top: -1.5rem;
    margin-bottom: -0.5rem;
    background: linear-gradient(to bottom, rgba(40,196,177,0.10) 0%, rgba(233,247,246,0.18) 60%, transparent 100%);
    pointer-events: none;
    z-index: 3;
    position: relative;
}
@media (max-width: 900px) {
    .services-gradient-fade {
        height: 28px;
        margin-top: -0.7rem;
    }
}

/* Animated Gradient Overlay for Hero Section */
.hero-animated-gradient {
    position: absolute;
    top: 0;
    left: -30%;
    width: 160%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.32;
    background: linear-gradient(120deg, #28c4b1 0%, #29a69a 40%, #f7fafd 100%);
    filter: blur(32px);
    animation: hero-gradient-move 18s ease-in-out infinite alternate;
}
@keyframes hero-gradient-move {
    0% { left: -30%; }
    100% { left: -10%; }
}

/* Premium Hero Micro-Badge, Headline, and Subheadline */
.hero-microbadge {
    display: inline-block;
    background: linear-gradient(90deg, #eaf7f6 0%, #f7fafd 100%);
    color: #28c4b1;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.45em 1.2em;
    border-radius: 2em;
    box-shadow: 0 2px 12px 0 rgba(40,196,177,0.08);
    letter-spacing: 0.01em;
    margin-bottom: 0.7rem;
}
.hero-microbadge-text {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.hero-title-premium {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.2px;
    color: #fff;
    margin-bottom: 1.1rem;
}
.hero-title-line {
    display: inline;
    font-size: 2.1rem;
    font-weight: 700;
    color: #eaf7f6;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    line-height: 1.08;
}
.hero-highlight {
    display: inline;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-top: 0;
    line-height: 1.08;
    vertical-align: baseline;
}
.hero-subtitle-premium {
    font-size: 1.35rem;
    color: #eaf7f6;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2.2rem;
}
.hero-subtitle-highlight {
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    background: rgba(40,196,177,0.10);
    border-radius: 1em;
    padding: 0.18em 0.7em;
    margin-left: 0.4em;
}
@media (max-width: 900px) {
    .hero-title-premium {
        font-size: 2.1rem;
    }
    .hero-title-line {
        font-size: 1.2rem;
    }
    .hero-highlight {
        font-size: 2.2rem;
    }
    .hero-microbadge {
        font-size: 0.95rem;
        padding: 0.35em 0.8em;
    }
    .hero-subtitle-premium {
        font-size: 1.01rem;
    }
}

/* Premium Trust Bar Below Hero */
.trust-bar-premium {
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
    font-size: 1.05rem;
    color: #233;
    border-top: none;
    padding-top: 0.7rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}
.trust-bar-premium::after {
    content: '';
    display: block;
    width: 220px;
    max-width: 80vw;
    height: 3px;
    margin: 1.1rem auto 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #28c4b1 0%, #29a69a 100%);
    opacity: 0.18;
}
.trust-item-premium {
    display: inline-flex;
    align-items: center;
    background: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 0;
    padding: 0.18em 1em;
    margin: 0 0.3em 0.5em 0.3em;
    box-shadow: none;
    letter-spacing: 0.01em;
    transition: color 0.18s;
}
.trust-item-premium .trust-icon {
    margin-right: 0.5em;
    color: #28c4b1;
    font-size: 1.25em;
    transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s, filter 0.22s;
    will-change: transform, box-shadow, filter;
}
.trust-item-premium:hover .trust-icon,
.trust-item-premium:focus .trust-icon {
    transform: scale(1.18) rotate(-6deg);
    box-shadow: 0 0 12px 2px rgba(40, 196, 177, 0.22);
    filter: brightness(1.18);
}

.process-journey-section {
    width: 100%;
    background: #fff;
    position: relative;
    padding: 4.5rem 0 8rem 0;
    z-index: 2;
    overflow: hidden;
}
.process-journey-path-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0 auto;
    position: relative;
    height: 120px;
    pointer-events: none;
}
.process-journey-path {
    width: 100%;
    height: 120px;
    display: block;
    filter: drop-shadow(0 2px 18px rgba(40,196,177,0.08));
    opacity: 0.92;
    stroke-dasharray: 1800;
    stroke-dashoffset: 1800;
    transition: stroke-dashoffset 1.6s cubic-bezier(.4,2,.6,1);
}
.process-journey-path.process-path-animate {
    stroke-dashoffset: 0;
}

.process-journey-milestones {
    position: absolute;
    top: 5.2rem;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 3;
}
#process .section-title {
    margin-bottom: 2.2rem;
}
.process-milestone {
    position: absolute;
    width: 180px;
    text-align: center;
    pointer-events: auto;
    background: none;
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,2,.6,1), transform 0.7s cubic-bezier(.4,2,.6,1);
}
.process-milestone.process-milestone-animate {
    opacity: 1;
    transform: translateY(0);
}
.process-step-number {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #28c4b1 0%, #29a69a 100%);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 38px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 12px 0 rgba(40,196,177,0.10);
    border: 3px solid #fff;
    letter-spacing: 0.01em;
}
.process-step-icon {
    margin-bottom: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s, filter 0.22s;
    will-change: transform, box-shadow, filter;
}
.process-step-icon:hover,
.process-step-icon:focus {
    transform: scale(1.13) rotate(-4deg);
    box-shadow: 0 0 18px 2px rgba(40, 196, 177, 0.18);
    filter: brightness(1.13);
}
.process-step-icon svg {
    width: 64px;
    height: 64px;
}
.process-step-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #233;
    margin-bottom: 0.3rem;
    letter-spacing: -0.2px;
}
.process-step-desc {
    font-size: 1.01rem;
    color: #3a4a4a;
    font-weight: 500;
    opacity: 0.92;
    line-height: 1.5;
}

.services-gradient-fade-premium {
    width: 100%;
    height: 56px;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(to bottom, rgba(40,196,177,0.10) 0%, rgba(233,247,246,0.18) 60%, transparent 100%);
    pointer-events: none;
    z-index: 3;
    position: relative;
}

.process-journey-path-segment {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    transition: stroke-dashoffset 1.2s cubic-bezier(.4,2,.6,1);
}
.process-journey-path-segment.animate {
    stroke-dashoffset: 0;
}

.process-milestone:hover .process-step-icon,
.process-milestone:focus .process-step-icon,
.process-milestone.active .process-step-icon {
    transform: scale(1.18) rotate(-6deg);
    box-shadow: 0 0 24px 4px rgba(40, 196, 177, 0.22);
    filter: brightness(1.22);
    transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s, filter 0.22s;
}
.process-milestone:hover .process-step-number,
.process-milestone:focus .process-step-number,
.process-milestone.active .process-step-number {
    background: linear-gradient(90deg, #29a69a 0%, #28c4b1 100%);
    color: #fff;
    box-shadow: 0 0 16px 2px rgba(40, 196, 177, 0.18);
    border-color: #29a69a;
    transition: background 0.22s, color 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.process-milestone[data-segment="6"] .process-confetti {
    position: absolute;
    left: 50%;
    top: -38px;
    transform: translateX(-50%);
    width: 64px;
    height: 32px;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s;
}
.process-milestone[data-segment="6"].active .process-confetti {
    opacity: 1;
    animation: confetti-pop 1.2s cubic-bezier(.4,2,.6,1);
}
@keyframes confetti-pop {
    0% { opacity: 0; transform: translateX(-50%) scale(0.7) translateY(10px); }
    30% { opacity: 1; transform: translateX(-50%) scale(1.1) translateY(-8px); }
    60% { opacity: 1; transform: translateX(-50%) scale(1) translateY(0); }
    100% { opacity: 1; transform: translateX(-50%) scale(1) translateY(0); }
}

.process-journey-section .container.position-relative {
    max-width: 1400px;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
@media (max-width: 1200px) {
    .process-journey-section .container.position-relative {
        max-width: 100vw;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}
.process-journey-section {
    padding-top: 6rem;
    padding-bottom: 10rem;
}

/* ===== PREMIUM MODAL STYLES ===== */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.modal-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Content */
.modal-content {
    padding: 40px;
    position: relative;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    color: #333;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28c4b1 0%, #29a69a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    box-shadow: 0 8px 32px rgba(40, 196, 177, 0.3);
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.modal-subtitle {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin: 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #28c4b1;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid rgba(40, 196, 177, 0.2);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #333;
}

.form-input:focus {
    outline: none;
    border-color: #28c4b1;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(40, 196, 177, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: #999;
}

/* Checkbox Styling */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    background: rgba(40, 196, 177, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(40, 196, 177, 0.1);
    transition: all 0.3s ease;
}

.checkbox-wrapper:hover {
    background: rgba(40, 196, 177, 0.08);
    border-color: rgba(40, 196, 177, 0.2);
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #28c4b1;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: #28c4b1;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.privacy-link {
    color: #28c4b1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #29a69a;
    text-decoration: underline;
}

/* Submit Button */
.modal-submit-btn {
    background: linear-gradient(135deg, #28c4b1 0%, #29a69a 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(40, 196, 177, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modal-submit-btn:hover::before {
    left: 100%;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 196, 177, 0.4);
}

.modal-submit-btn:active {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 18px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28c4b1 0%, #29a69a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    box-shadow: 0 8px 32px rgba(40, 196, 177, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.success-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.success-close-btn {
    background: linear-gradient(135deg, #28c4b1 0%, #29a69a 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(40, 196, 177, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        padding: 24px;
    }
    
    .modal-title {
        font-size: 20px;
        line-height: 1.1;
    }
    
    .modal-subtitle {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-input {
        padding: 14px 14px 14px 44px;
        font-size: 16px;
    }
    
    .modal-submit-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 18px;
        line-height: 1.1;
    }
    
    .modal-subtitle {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
    }
    
    .success-title {
        font-size: 20px;
    }
    
    .success-text {
        font-size: 14px;
    }
}

/* Loading State */
.modal-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.modal-submit-btn.loading .btn-text {
    opacity: 0;
}

.modal-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade-in and slide-in on scroll */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: none;
}

.slide-in-left-scroll {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.slide-in-left-scroll.visible {
  opacity: 1;
  transform: none;
}

.slide-in-right-scroll {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.slide-in-right-scroll.visible {
  opacity: 1;
  transform: none;
}

/* === Premium Contact Section Styles === */
.contact-section-premium {
  position: relative;
  background: linear-gradient(120deg, #f8fcfc 0%, #eaf7f6 100%);
  overflow: hidden;
  z-index: 1;
}

/* SVG/Gradient Background Accents */
.contact-bg-accents {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.contact-accent-top {
  position: absolute;
  top: -80px; left: -120px;
  z-index: 1;
}
.contact-accent-bottom {
  position: absolute;
  bottom: -60px; right: -100px;
  z-index: 1;
}

/* Card Duo Layout: Even Columns */
.premium-contact-row > .col-lg-6 {
  display: flex;
  align-items: stretch;
}
.contact-form-card, .contact-info-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  background: rgba(255,255,255,0.65);
  box-shadow: 0 8px 32px 0 rgba(40,196,177,0.10), 0 1.5px 8px 0 rgba(41,166,154,0.08);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px) saturate(120%);
  border: 1.5px solid rgba(40,196,177,0.13);
  transition: box-shadow 0.3s, transform 0.3s;
}
.contact-form-card:hover, .contact-info-card:hover {
  box-shadow: 0 12px 40px 0 rgba(40,196,177,0.18), 0 2px 12px 0 rgba(41,166,154,0.12);
  transform: translateY(-2px) scale(1.01);
}

/* Remove old split/flex styles */
.premium-contact-split-wrapper, .contact-diagonal-divider {
  display: none !important;
}

/* Premium Form Styles */
.premium-form {
  width: 100%;
}
.form-group {
  position: relative;
}
.form-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #28c4b1;
  font-size: 1.1rem;
  z-index: 2;
  pointer-events: none;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1.5px solid #e0f2f1;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.85);
  font-size: 1rem;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-shadow: none;
}
.form-input:focus {
  border-color: #28c4b1;
  box-shadow: 0 0 0 2px rgba(40,196,177,0.10);
}
.form-label-floating {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  background: transparent;
  pointer-events: none;
  transition: 0.2s;
  z-index: 3;
}
.form-input:focus + .form-label-floating,
.form-input:not(:placeholder-shown) + .form-label-floating,
.form-input:valid + .form-label-floating {
  top: -0.7rem;
  left: 2.2rem;
  font-size: 0.85rem;
  color: #28c4b1;
  background: #f8fcfc;
  padding: 0 0.25rem;
}
select.form-input:focus + .form-label-floating,
select.form-input:not([value=""]) + .form-label-floating {
  top: -0.7rem;
  left: 2.2rem;
  font-size: 0.85rem;
  color: #28c4b1;
  background: #f8fcfc;
  padding: 0 0.25rem;
}
textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

/* Checkbox Styles */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.97rem;
  color: #555;
  cursor: pointer;
}
.checkbox-wrapper input[type="checkbox"] {
  accent-color: #28c4b1;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}
.privacy-link {
  color: #28c4b1;
  text-decoration: underline;
}

/* Premium Button */
.btn-hero {
  background: linear-gradient(90deg, #28c4b1 0%, #29a69a 100%);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(40,196,177,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-hero:hover, .btn-hero:focus {
  background: linear-gradient(90deg, #29a69a 0%, #28c4b1 100%);
  box-shadow: 0 4px 16px 0 rgba(40,196,177,0.16);
  transform: translateY(-2px) scale(1.01);
}
.btn-icon {
  margin-left: 0.5rem;
}

/* Trust Bar */
.contact-trust-bar-premium {
  background: linear-gradient(120deg, rgba(255,255,255,0.92) 60%, rgba(232,252,250,0.92) 100%);
  border-radius: 1rem;
  box-shadow: 0 2px 16px 0 rgba(40,196,177,0.10);
  padding: 1.25rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a3a36;
  gap: 3rem;
  margin-top: 3.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.contact-trust-bar-premium .trust-item-premium {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #1a3a36;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.18s, color 0.18s;
  cursor: pointer;
}
.contact-trust-bar-premium .trust-item-premium:hover {
  color: #28c4b1;
  transform: scale(1.06);
}
.contact-trust-bar-premium .trust-icon {
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-trust-bar-premium .trust-item-premium:nth-child(1) .trust-icon {
  color: #28c4b1; /* Teal for lock */
}
.contact-trust-bar-premium .trust-item-premium:nth-child(2) .trust-icon {
  color: #f17d24; /* Orange for bolt */
}
.contact-trust-bar-premium .trust-item-premium:nth-child(3) .trust-icon {
  color: #e74c3c; /* Red for no-spam */
}
.contact-trust-bar-premium .section-underline {
  display: none !important;
}
@media (max-width: 767.98px) {
  .trust-bar-premium {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
  }
  .contact-trust-bar-premium {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.1rem 1rem;
    font-size: 1.05rem;
  }
}

/* Contact Info Card */
.contact-info-list {
  margin-top: 1.5rem;
}
.contact-info-item {
  gap: 1rem;
}
.contact-info-icon {
  color: #28c4b1;
  font-size: 1.3rem;
  margin-top: 0.2rem;
  min-width: 1.7rem;
}
.contact-link {
  color: #29a69a;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover {
  color: #f17d24;
  text-decoration: underline;
}

/* Social Links */
.contact-social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: linear-gradient(120deg, #eaf7f6 0%, #f8fcfc 100%);
  color: #28c4b1;
  font-size: 1.2rem;
  box-shadow: 0 1px 6px 0 rgba(40,196,177,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.contact-social-links .social-link:hover {
  background: linear-gradient(120deg, #28c4b1 0%, #29a69a 100%);
  color: #fff;
  transform: scale(1.08);
}

/* Gradient Text & Underline */
.gradient-text {
  background: linear-gradient(90deg, #28c4b1 0%, #f17d24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.section-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #28c4b1 0%, #f17d24 100%);
  border-radius: 2px;
  margin: 0.5rem auto 1.5rem auto;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .premium-contact-row > .col-lg-6 {
    display: block;
    align-items: initial;
  }
  .contact-form-card, .contact-info-card {
    min-height: unset;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .contact-form-card, .contact-info-card {
    width: 100%;
    padding: 1.5rem !important;
  }
  .trust-bar-premium {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
  }
}

/* === End Premium Contact Section Styles === */

/* === Contact Section Entrance Animations === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.9s cubic-bezier(.23,1.02,.32,1) 0.2s forwards;
}
.animate-fade-in-up.delay-1 {
  animation-delay: 0.4s;
}
.animate-fade-in-up.delay-2 {
  animation-delay: 0.6s;
}
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1.1s cubic-bezier(.23,1.02,.32,1) 0.7s forwards;
}

/* === End Contact Section Entrance Animations === */

/* === Premium Social Icons for Contact Section === */
.contact-info-card .contact-social-label {
  text-align: center;
  font-size: 1.08rem;
  font-weight: 600;
  color: #28c4b1;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.contact-info-card .contact-social-links {
  margin-top: 1.2rem;
  gap: 1.1rem !important;
}
.contact-info-card .social-link {
  width: 2.7rem;
  height: 2.7rem;
  font-size: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(255,255,255,0.92) 60%, rgba(232,252,250,0.92) 100%);
  box-shadow: 0 2px 10px 0 rgba(40,196,177,0.10);
  border: 1.5px solid #28c4b1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28c4b1;
  transition: background 0.18s, color 0.18s, transform 0.18s, border 0.18s;
}
.contact-info-card .social-link:hover {
  background: linear-gradient(120deg, #28c4b1 0%, #29a69a 100%);
  color: #fff;
  border-color: #f17d24;
  transform: scale(1.13);
}
/* === End Premium Social Icons for Contact Section === */

/* Optional: Subtle gradient for contact section only */
.contact-gradient-text {
  background: linear-gradient(90deg, #29a69a 0%, #28c4b1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: brightness(1.1) contrast(1.1);
}

/* === Hero Section Overlay and Gradient Underline === */
.hero-text-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.38) 60%, rgba(0,0,0,0.18) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.hero-title {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-highlight {
  color: #fff;
  position: relative;
  display: inline-block;
}
.gradient-underline {
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 0.18em;
  border-radius: 3px;
  background: linear-gradient(90deg, #28c4b1 0%, #f17d24 100%);
  box-shadow: 0 2px 8px 0 rgba(40,196,177,0.10);
}
@media (max-width: 767.98px) {
  .gradient-underline {
    height: 4px;
  }
}
/* === End Hero Section Overlay and Gradient Underline === */

/* === Premium Navbar CTA Button === */
.custom-navbar .premium-cta {
  background: linear-gradient(90deg, #28c4b1 0%, #29a69a 60%, #f17d24 100%);
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 1.7rem;
  box-shadow: 0 2px 12px 0 rgba(40,196,177,0.13);
  padding: 0.65rem 2.1rem;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  position: relative;
  z-index: 2;
  outline: none;
}
.custom-navbar .premium-cta:hover, .custom-navbar .premium-cta:focus {
  background: linear-gradient(90deg, #29a69a 0%, #28c4b1 60%, #f17d24 100%);
  box-shadow: 0 4px 20px 0 rgba(40,196,177,0.18);
  transform: scale(1.06);
}
.custom-navbar .premium-cta:focus {
  box-shadow: 0 0 0 3px #28c4b1, 0 4px 20px 0 rgba(40,196,177,0.18);
}
.custom-navbar .premium-cta .cta-text {
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 0.01em;
}
.custom-navbar .premium-cta .cta-icon {
  margin-left: 0.7em;
  font-size: 1.1em;
  vertical-align: middle;
}
/* === End Premium Navbar CTA Button === */

/* === Subtle Animated Background for Contact Section === */
.contact-animated-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.contact-orb-main {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 700px;
  height: 420px;
  background: radial-gradient(circle at 60% 40%, #28c4b1 0%, #29a69a 60%, transparent 100%);
  opacity: 0.13;
  filter: blur(48px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbMainMove 22s ease-in-out infinite alternate;
}
.contact-orb-side {
  position: absolute;
  right: 10%;
  top: 70%;
  width: 320px;
  height: 180px;
  background: radial-gradient(circle at 40% 60%, #f17d24 0%, #28c4b1 80%, transparent 100%);
  opacity: 0.11;
  filter: blur(36px);
  border-radius: 50%;
  animation: orbSideMove 18s ease-in-out infinite alternate;
}
@keyframes orbMainMove {
  0%   { transform: translate(-50%, -50%) scale(1); }
  25%  { transform: translate(-48%, -52%) scale(1.04); }
  50%  { transform: translate(-46%, -50%) scale(1.01); }
  75%  { transform: translate(-48%, -48%) scale(0.98); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
@keyframes orbSideMove {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.07) translateY(-18px); }
  100% { transform: scale(0.95) translateY(12px); }
}
/* Hide old blobs */
.contact-blob { display: none !important; }
@media (max-width: 991.98px) {
  .contact-orb-main { width: 380px; height: 220px; }
  .contact-orb-side { width: 160px; height: 90px; right: 2%; top: 80%; }
}
@media (max-width: 767.98px) {
  .contact-orb-main { width: 220px; height: 120px; }
  .contact-orb-side { width: 90px; height: 50px; right: 0; top: 85%; }
}
/* === End Centered Animated Orbs for Contact Section === */

/* Hide left SVG blob in contact section */
.contact-bg-accents .contact-accent-top { display: none !important; }

/* Animate main orb in a circular/elliptical path */
@keyframes orbMainMove {
  0%   { transform: translate(-50%, -50%) scale(1); }
  25%  { transform: translate(-48%, -52%) scale(1.04); }
  50%  { transform: translate(-46%, -50%) scale(1.01); }
  75%  { transform: translate(-48%, -48%) scale(0.98); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

/* === Subtle Centered Blob Behind Navbar Links === */
.navbar-blob-bg {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 70px;
  background: linear-gradient(90deg, #28c4b1 0%, #aee9e1 100%);
  opacity: 0.12;
  filter: blur(38px);
  border-radius: 100px / 48px;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .navbar-blob-bg {
    width: 420px;
    height: 60px;
  }
}
@media (max-width: 991.98px) {
  .navbar-blob-bg {
    width: 240px;
    height: 44px;
    top: 56%;
  }
}
/* === End Subtle Centered Blob Behind Navbar Links === */

/* === Breathable Spacing for Why Zardware Feature Grid === */
.why-zardware-feature-card {
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 0;
  border-radius: 1.3rem;
  box-shadow: 0 2px 18px 0 rgba(40,196,177,0.07);
  background: #f6fcfc;
  transition: box-shadow 0.18s, transform 0.18s;
}
.why-zardware-feature-card:hover {
  box-shadow: 0 10px 36px 0 rgba(40,196,177,0.16);
  transform: translateY(-6px) scale(1.045);
}
#about .row.g-4 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 2.5rem;
}
@media (max-width: 991.98px) {
  #about .row.g-4 {
    --bs-gutter-x: 1.2rem;
    --bs-gutter-y: 1.5rem;
  }
  .why-zardware-feature-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}
/* === End Breathable Spacing for Why Zardware Feature Grid === */

/* === Micro-Interactions for Premium Feel === */
.why-zardware-feature-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.why-zardware-feature-card:hover {
  box-shadow: 0 10px 36px 0 rgba(40,196,177,0.16);
  transform: translateY(-6px) scale(1.045);
}
.why-zardware-feature-card .why-zardware-feature-icon {
  transition: transform 0.22s cubic-bezier(.23,1.02,.32,1), filter 0.22s;
}
.why-zardware-feature-card:hover .why-zardware-feature-icon {
  transform: scale(1.18) rotate(-6deg);
  filter: drop-shadow(0 2px 8px #28c4b1aa);
}

.btn-hero, .btn-premium {
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
}
.btn-hero:hover, .btn-hero:focus,
.btn-premium:hover, .btn-premium:focus {
  transform: scale(1.045);
  box-shadow: 0 4px 20px 0 rgba(40,196,177,0.18);
  filter: brightness(1.07);
}

.contact-social-links .social-link {
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.contact-social-links .social-link:hover {
  transform: scale(1.15) rotate(-4deg);
  box-shadow: 0 2px 12px 0 rgba(40,196,177,0.13);
  filter: brightness(1.15);
}
/* === End Micro-Interactions for Premium Feel === */

/* === Subtle Section Transitions === */
.section-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.23,1.02,.32,1), transform 0.9s cubic-bezier(.23,1.02,.32,1);
  will-change: opacity, transform;
}
.section-fade-in.visible {
  opacity: 1;
  transform: none;
}
/* === End Subtle Section Transitions === */

/* === Accessible Focus States === */
.btn-hero:focus, .btn-hero:focus-visible,
.btn-premium:focus, .btn-premium:focus-visible,
.premium-cta:focus, .premium-cta:focus-visible {
  outline: 2.5px solid #28c4b1;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #28c4b1aa, 0 4px 20px 0 rgba(40,196,177,0.18);
}
.nav-link:focus, .nav-link:focus-visible {
  outline: 2.5px solid #f17d24;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #f17d24aa;
}
.social-link:focus, .social-link:focus-visible {
  outline: 2.5px solid #28c4b1;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #28c4b1aa;
}
.form-input:focus, .form-input:focus-visible {
  border-color: #28c4b1;
  outline: 2.5px solid #28c4b1;
  outline-offset: 1.5px;
  box-shadow: 0 0 0 3px #28c4b1aa;
}
/* === End Accessible Focus States === */

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    word-break: break-word;
    letter-spacing: -0.5px;
  }
  .gradient-underline {
    height: 3px;
    margin-top: 0.12em;
    border-radius: 2px;
  }
  .hero-section {
    padding-top: 90px;
  }
  .custom-navbar .container {
    padding-top: 8px;
  }
  .navbar-toggler {
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 0.6rem 0.9rem;
    font-size: 1.7rem;
  }
  .process-journey-milestones {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.2rem;
    margin-bottom: 1.5rem;
  }
  .process-milestone {
    position: static !important;
    width: 100%;
    margin: 0 0 1.5rem 0 !important;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #f6fcfc;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px 0 rgba(40,196,177,0.07);
    padding: 1.1rem 1rem;
    gap: 1.1rem;
  }
  .process-step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .process-step-number {
    font-size: 1.1rem;
    margin-right: 0.7rem;
    margin-top: 0.2rem;
    color: #28c4b1;
    font-weight: 700;
  }
  .process-step-title {
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    margin-top: 0.1rem;
    color: #232b2b;
  }
  .process-step-desc {
    font-size: 0.97rem;
    color: #3a4a4a;
    margin-bottom: 0;
  }
  .process-journey-path-wrap,
  .process-journey-path-svg {
    display: none !important;
  }
}

/* === Mobile Vertical Process Section Styles === */
@media (max-width: 767.98px) {
  .process-journey-section { display: none !important; }
  .mobile-process-section { display: block !important; background: #fafdfe; }
  .mobile-process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
  }
  .mobile-process-step {
    background: #f6fcfc;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px 0 rgba(40,196,177,0.07);
    padding: 1.3rem 1.1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .mobile-process-icon-wrap {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .mobile-process-step-number {
    background: #28c4b1;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50%;
    width: 2.1rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px 0 rgba(40,196,177,0.10);
    margin-right: 0.2rem;
  }
  .mobile-process-step-icon {
    font-size: 1.45rem;
    color: #29a69a;
    margin-left: 0.1rem;
  }
  .mobile-process-step-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: #232b2b;
    margin-top: 0.2rem;
    margin-bottom: 0.1rem;
  }
  .mobile-process-step-desc {
    font-size: 0.97rem;
    color: #3a4a4a;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .mobile-process-section { display: none !important; }
}
/* === End Mobile Vertical Process Section Styles === */

@media (max-width: 767.98px) {
  .mobile-process-section {
    margin-bottom: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .services-section-bg-premium {
    margin-top: 1.2rem !important;
    padding-top: 2.2rem !important;
  }
}

@media (min-width: 768px) {
  .portfolio-section-bg {
    margin-bottom: 2.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  #testimonials {
    margin-top: 0 !important;
    padding-top: 1.2rem !important;
  }
}