/* PrintPro Modern Theme CSS Variables */
:root {
    --primary-color: #6B46C1;
    --secondary-color: #3B82F6;
    --accent-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --info-color: #06B6D4;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --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);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 20%, #f5f0ff 40%, #e8f4ff 60%, #f0f4ff 80%, #e8ecff 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 85%, rgba(107, 70, 193, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%),
                radial-gradient(circle at 30% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-brand {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 2px;
}

.logo-k {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 26px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -1px;
    position: relative;
}

.logo-k::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.logo-name {
    background: linear-gradient(135deg, var(--gray-800), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.8px;
    transition: all 0.3s ease;
}

.logo-brand:hover .logo-name {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    color: var(--gray-500);
    font-size: 10px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.9;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}



.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #6B46C1 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.get-quote-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
    color: #0f172a;
    border: 2px solid #d4af37;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0;
    display: none;
}

.get-quote-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;
    z-index: 1;
}

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

.get-quote-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d4af37 100%);
    border-color: #f59e0b;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.call-now-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color: #ffffff;
    border: none;
    padding: 6px 20px 6px 6px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    text-transform: none;
    letter-spacing: 0.5px;
}

.call-now-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    transform: translateY(-1px);
}

.call-now-btn i {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Split Layout */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.4) 0%, rgba(59, 130, 246, 0.3) 25%, rgba(16, 185, 129, 0.25) 50%, rgba(59, 130, 246, 0.3) 75%, rgba(107, 70, 193, 0.4) 100%);
}

/* Left Side - Hero Content */
.hero-content-wrapper {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 2;
}

.hero-content {
    text-align: left;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.85) 0%, rgba(59, 130, 246, 0.8) 50%, rgba(16, 185, 129, 0.75) 100%);
    padding: 40px 50px;
    border-radius: 20px;
    max-width: 500px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 20px;
    max-width: 500px;
}

/* Right Side - Hero Slider */
.hero-slider-wrapper {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Hero Image Slider Container */
.hero-image-slider {
    position: relative;
    width: 90%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Hero Slides */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Big Rounded Image Card */
.hero-image-card {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(0, 0, 0, 0.2);
    position: relative;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.8) 0%, rgba(59, 130, 246, 0.75) 50%, rgba(16, 185, 129, 0.8) 100%);
}

/* Product Image - Full Display */
.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

/* Subtle zoom on active */
.hero-slide.active .hero-image-card img {
    transform: scale(1.02);
}

/* Card Title - Bottom Left Position */
.card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(212, 175, 55, 0.8);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.card-title:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-2px);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), rgba(255, 215, 0, 0.6), rgba(212, 175, 55, 0.8), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: #ffffff;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.6), transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.hero-content h1 .gold-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 28px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(145deg, #d4af37 0%, #c9a227 50%, #b8941d 100%);
    color: #0f172a;
    font-weight: 700;
    border: 2px solid rgba(212, 175, 55, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #e5c158 0%, #d4af37 50%, #c9a227 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3);
    border-color: rgba(255, 215, 0, 0.9);
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.6);
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 18px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.6);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature i {
    font-size: 13px;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.feature span {
    font-weight: 500;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Slider Arrows - Positioned at left and right of image */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #0f172a;
    z-index: 15;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-slider-arrow:hover {
    background: #d4af37;
    color: #0f172a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.hero-slider-arrow.prev {
    left: 20px;
}

.hero-slider-arrow.next {
    right: 20px;
}

/* Card Dots - Custom styling like reference image */
.card-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 6;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.card-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
}

.card-dots .dot.active {
    background: #d4af37;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header h3 {
    color: var(--gray-900);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

/* About Us Section - Premium Design */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(107, 70, 193, 0.03) 0%, transparent 50%),
        linear-gradient(90deg, transparent 49%, rgba(212, 175, 55, 0.02) 50%, transparent 51%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
    pointer-events: none;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Visual Side */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    position: relative;
    width: 320px;
    height: 320px;
}

.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.about-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(107, 70, 193, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-icon i {
    font-size: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatBadge 6s ease-in-out infinite;
}

.floating-badge.badge-1 {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 40px;
    left: 0;
    animation-delay: 3s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge i {
    font-size: 16px;
    color: #d4af37;
}

.floating-badge span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Content Side */
.about-content {
    padding-left: 20px;
}

.about-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tag-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.tag-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
    text-transform: uppercase;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.about-title .gradient-text {
    background: linear-gradient(135deg, #d4af37 0%, #f0d878 50%, #b8941f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 10px;
}

.additional-services {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid #d4af37;
}

.additional-services h4 {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 20px;
}

.services-list li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Stats Section */
.about-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f0d878 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* CTA Button */
.about-cta .btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 50%, #b8941f 100%);
    color: #0f172a;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.about-cta .btn-primary i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.about-cta .btn-primary:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-tag {
        justify-content: center;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-description {
        max-width: 100%;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-image-container {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 70px 0;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .floating-badge {
        padding: 10px 16px;
    }
    
    .floating-badge span {
        font-size: 12px;
    }
}

/* Services Section */
.services {
    padding: 40px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h4 {
    color: var(--gray-900);
    font-size: 18px;
    margin: 20px 24px 12px;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: var(--gray-600);
    margin: 0 24px 20px;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-btn {
    background: transparent;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 24px 24px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--primary-color);
    align-self: flex-start;
}

.service-btn:hover {
    gap: 10px;
    color: #5A3AA8;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 40px 0;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 40px;
    color: white;
}

.feature-item h4 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    color: #64748b;
}

/* Portfolio Section */
.portfolio {
    padding: 30px 0;
    background: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Customer Testimonials Section */
.testimonials {
    padding: 40px 0;
    background: #ffffff;
}

.testimonials .section-title {
    text-align: center;
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    width: max-content;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    width: fit-content;
    overflow: visible;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 280px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #6B46C1 0%, #3B82F6 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dots .dot.active {
    background: linear-gradient(135deg, #6B46C1 0%, #3B82F6 100%);
    border-color: #6B46C1;
    transform: scale(1.2);
}

.carousel-dots .dot:hover {
    background: #9ca3af;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.customer-name {
    color: #6b21a8;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.star-rating i {
    color: #6b21a8;
    font-size: 14px;
}

.star-rating i.far.fa-star {
    color: #d1d5db;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #2563eb;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.btn-call {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-call:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-logo h3 {
    color: #2563eb;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #2563eb;
}

.contact-info p {
    margin-bottom: 10px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.contact-info i {
    margin-right: 10px;
    color: #2563eb;
    flex-shrink: 0;
    min-width: 20px;
}

.contact-info a {
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

/* Service Card */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:target {
    animation: highlightCard 2s ease;
    border: 2px solid #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

@keyframes highlightCard {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #64748b;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-option {
    text-align: center;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.contact-option i {
    font-size: 30px;
    color: #2563eb;
    margin-bottom: 10px;
}

.contact-option h3 {
    margin-bottom: 10px;
    color: #1e293b;
}

.working-hours {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
}

.working-hours h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.working-hours p {
    color: #64748b;
    margin-bottom: 5px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 16px;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    z-index: 1000 !important;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        z-index: 9999;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-menu ul li {
        text-align: center;
    }
    
    .nav-menu ul li a {
        display: block;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #4a5568;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu ul li a:hover {
        background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
        color: #6B46C1;
        -webkit-text-fill-color: #6B46C1;
    }
    
    .nav-menu ul li a::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .get-quote-btn, .call-now-btn {
        display: none;
    }
    
    /* Mobile Hero Layout - Content below hero section */
    .hero {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    /* Hide desktop hero content wrapper on mobile */
    .hero-content-wrapper {
        display: none;
    }
    
    /* Make slider wrapper full width on mobile */
    .hero-slider-wrapper {
        flex: none;
        width: 100%;
        height: 70vh;
        min-height: 500px;
        padding: 15px;
    }
    
    .hero-image-slider {
        position: relative;
        height: 100%;
        width: 100%;
    }
    
    .hero-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    /* Make hero image card larger on mobile */
    .hero-image-card {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    
    /* Adjust card title for mobile - move upward to avoid hiding scroll dots */
    .card-title {
        position: absolute;
        bottom: 60px;
        left: 20px;
        top: auto;
        right: auto;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #ffffff;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 1px solid rgba(212, 175, 55, 0.5);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        z-index: 7;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        transition: all 0.3s ease;
    }
    
    /* Adjust card dots for mobile */
    .card-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 6;
        padding: 6px 12px;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .card-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    
    .card-dots .dot.active {
        background: #d4af37;
        border-color: #ffffff;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
        transform: scale(1.3);
    }
    
    /* Show mobile hero content below hero section */
    .hero-content-mobile {
        display: block;
        width: 100%;
        padding: 35px 25px;
        background: linear-gradient(135deg, rgba(107, 70, 193, 0.95) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(16, 185, 129, 0.85) 100%);
        text-align: center;
        color: #ffffff;
    }
    
    /* Show slider dots in hero content mobile above the text */
    .hero-content-mobile .slider-dots {
        display: flex;
        position: relative;
        margin-bottom: 20px;
        justify-content: center;
        gap: 10px;
    }
    
    .hero-content-mobile .slider-dots .dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.6);
    }
    
    .hero-content-mobile .slider-dots .dot.active {
        background: #ffffff;
        border-color: #ffffff;
    }

    .hero-content-mobile .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .hero-content-mobile .hero-buttons .btn-primary,
    .hero-content-mobile .hero-buttons .btn-secondary,
    .hero-content-mobile .hero-buttons .btn-call {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 10px;
    }

    .hero-content-mobile .hero-buttons .btn-primary,
    .hero-content-mobile .hero-buttons .btn-secondary {
        padding: 14px 24px;
    }
    
    .hero-content-mobile .hero-features {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .hero-content-mobile .feature {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(15, 23, 42, 0.5);
        padding: 8px 14px;
        border-radius: 50px;
        border: 1px solid rgba(212, 175, 55, 0.4);
    }
    
    .hero-content-mobile .feature i {
        font-size: 13px;
        color: #d4af37;
    }
    
    .hero-content-mobile .feature span {
        font-size: 11px;
        color: #ffffff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    /* Hide desktop hero content on mobile */
    .hero-content {
        display: none;
    }
    
    .section-header h3 {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Hero Layout - Content below hero section */
    .hero {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    /* Hide desktop hero content wrapper on mobile */
    .hero-content-wrapper {
        display: none;
    }
    
    /* Make slider wrapper full width on mobile */
    .hero-slider-wrapper {
        flex: none;
        width: 100%;
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-slider {
        position: relative;
        height: 100%;
        width: 100%;
    }
    
    .slide {
        position: absolute;
        height: 100%;
    }
    
    /* Hide hero-content inside slides on mobile */
    .slide .hero-content {
        display: none;
    }
    
    /* Mobile hero content below hero image */
    .hero-content-mobile {
        display: block;
        width: 100%;
        padding: 30px 20px;
        background: linear-gradient(135deg, rgba(107, 70, 193, 0.95) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(16, 185, 129, 0.85) 100%);
        text-align: center;
        color: #ffffff;
    }
    
    /* Show slider dots in hero content mobile above the text */
    .hero-content-mobile .slider-dots {
        display: flex;
        position: relative;
        margin-bottom: 15px;
        justify-content: center;
        gap: 8px;
    }
    
    .hero-content-mobile .slider-dots .dot {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.6);
    }
    
    .hero-content-mobile .slider-dots .dot.active {
        background: #ffffff;
        border-color: #ffffff;
    }
    
    .hero-content-mobile h1 {
        font-size: 22px;
        margin-bottom: 10px;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        position: relative;
        display: inline-block;
        color: #ffffff;
    }
    
    .hero-content-mobile h1 .gold-text {
        background: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #ffaa00 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
    }

    .hero-content-mobile h1::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #d4af37, #ffd700, transparent);
        border-radius: 2px;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    }
    
    .hero-content-mobile p {
        font-size: 15px;
        margin-bottom: 20px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.5;
    }
    
    .hero-content-mobile .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .hero-content-mobile .hero-buttons .btn-primary,
    .hero-content-mobile .hero-buttons .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
        letter-spacing: 0.8px;
        width: 100%;
        max-width: 260px;
    }
    
    .hero-content-mobile .hero-features {
        gap: 8px;
        margin-top: 15px;
        justify-content: center;
    }
    
    .hero-content-mobile .feature {
        padding: 6px 12px;
    }
    
    /* Hide desktop hero content on mobile */
    .hero-content {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 12px;
        letter-spacing: 0.3px;
    }
    
    .hero-content h1::after {
        width: 50px;
        height: 2px;
        bottom: -6px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 22px;
        line-height: 1.5;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 0.8px;
    }
    
    .hero-features {
        gap: 8px;
        margin-top: 15px;
    }
    
    .feature {
        padding: 5px 10px;
    }
    
    .feature span {
        font-size: 10px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}
