/* ========================================
   THE UNLOCK SALES - PREMIUM MODERN CSS
   Fresh & Attractive Theme
   ======================================== */

/* ========================================
   MODERN RESET & BASE
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    
    /* Colors */
    --primary-purple: #667eea;
    --primary-pink: #f5576c;
    --primary-blue: #4facfe;
    --primary-green: #38ef7d;
    
    --dark-900: #0a0e27;
    --dark-800: #1a1d35;
    --dark-700: #2a2d45;
    --dark-600: #3a3d55;
    
    --light-100: #ffffff;
    --light-200: #f8f9fa;
    --light-300: #e9ecef;
    --light-400: #dee2e6;
    
    --text-primary: #1a1d35;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    /* Modern Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    --font-display: 'Sora', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    --shadow-colored: 0 8px 32px rgba(102, 126, 234, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--light-100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   MODERN TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.gradient-text-modern {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ========================================
   MODERN BUTTONS
   ======================================== */

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-display);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width var(--transition-base);
    z-index: -1;
}

.btn-modern:hover::before {
    width: 100%;
}

.btn-primary-modern {
    background: var(--primary-gradient);
    color: var(--light-100);
    box-shadow: var(--shadow-colored);
}

.btn-primary-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary-modern {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary-modern:hover {
    background: var(--primary-gradient);
    color: var(--light-100);
    border-color: transparent;
}

.btn-outline-modern {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--light-400);
}

.btn-outline-modern:hover {
    background: var(--primary-gradient);
    color: var(--light-100);
    border-color: transparent;
}

.btn-white-modern {
    background: var(--light-100);
    color: var(--primary-purple);
    box-shadow: var(--shadow-lg);
}

.btn-white-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white-modern {
    background: transparent;
    color: var(--light-100);
    border: 2px solid var(--light-100);
}

.btn-outline-white-modern:hover {
    background: var(--light-100);
    color: var(--primary-purple);
}

.btn-full-modern {
    width: 100%;
    justify-content: center;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-text {
    position: absolute;
    right: 75px;
    background: var(--dark-900);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    right: 80px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ========================================
   MODERN NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: var(--font-display);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-primary);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition-base);
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-colored);
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   MODERN HERO SECTION
   ======================================== */

.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-gradient);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-gradient);
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--success-gradient);
    bottom: 20%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text-modern {
    max-width: 700px;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title-modern {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-desc-modern {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-modern h3 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-modern p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-visual-modern {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.visual-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    animation: float-card 4s ease-in-out infinite;
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.visual-card-1 { animation-delay: 0s; }
.visual-card-2 { animation-delay: 1s; }
.visual-card-3 { animation-delay: 2s; }
.visual-card-4 { animation-delay: 3s; }

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.visual-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.visual-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========================================
   TRUSTED BY SECTION
   ======================================== */

.trusted-section {
    padding: 60px 0;
    background: var(--light-200);
}

.trusted-content {
    text-align: center;
}

.trusted-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-item {
    padding: 15px 30px;
    background: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.trusted-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--primary-purple);
}

/* ========================================
   SECTION LABELS & TITLES
   ======================================== */

section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title-modern {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ========================================
   ABOUT PREVIEW SECTION
   ======================================== */

.about-preview-section {
    background: white;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-modern i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.feature-content-modern h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-content-modern p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.visual-stats-card {
    background: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.stat-circle {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 40px;
}

.stat-circle svg {
    transform: rotate(-90deg);
}

.stat-circle circle {
    fill: none;
    stroke: var(--light-300);
    stroke-width: 8;
}

.stat-circle circle.progress {
    stroke: url(#gradient);
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--percent)) / 100);
    transition: stroke-dashoffset 2s ease;
}

.stat-circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.stat-circle-content h3 {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-circle-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-list-item i {
    color: var(--primary-green);
    font-size: 1.3rem;
}

/* ========================================
   SERVICES MODERN SECTION
   ======================================== */

.services-modern-section {
    background: var(--light-200);
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-modern-card {
    background: white;
    padding: 45px 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-modern-card:hover::before {
    transform: scaleX(1);
}

.service-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-modern-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition-base);
}

.service-modern-card:hover .service-modern-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-modern-icon i {
    font-size: 2.2rem;
    color: white;
}

.service-modern-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-modern-card > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-modern-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.service-modern-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-modern-list i {
    color: var(--primary-green);
    font-size: 1rem;
}

.service-modern-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-base);
}

.service-modern-link:hover {
    gap: 15px;
}

/* ========================================
   PORTFOLIO MODERN SECTION
   ======================================== */

.portfolio-modern-section {
    background: white;
}

.portfolio-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.portfolio-modern-card {
    background: white;
    border: 2px solid var(--light-300);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.portfolio-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.portfolio-modern-card:hover::before {
    opacity: 0.05;
}

.portfolio-modern-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-modern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.portfolio-modern-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modern-icon i {
    font-size: 1.8rem;
    color: var(--primary-purple);
}

.portfolio-modern-category {
    padding: 8px 16px;
    background: var(--light-200);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.portfolio-modern-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.portfolio-modern-card > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.portfolio-modern-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.portfolio-modern-tags span {
    padding: 6px 14px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.portfolio-modern-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.portfolio-modern-link:hover {
    gap: 15px;
}

.portfolio-modern-cta {
    text-align: center;
}

/* ========================================
   WHY CHOOSE MODERN SECTION
   ======================================== */

.why-choose-modern-section {
    background: var(--dark-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.why-choose-modern-section .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.why-choose-modern-section .section-title-modern {
    color: white;
}

.why-choose-modern-section .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.why-choose-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.why-choose-modern-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
}

.why-choose-modern-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.why-choose-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-display);
}

.why-choose-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-choose-icon-modern i {
    font-size: 2rem;
    color: white;
}

.why-choose-modern-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.why-choose-modern-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ========================================
   PROCESS MODERN SECTION
   ======================================== */

.process-modern-section {
    background: var(--light-200);
}

.process-modern-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-modern-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
}

.process-modern-item {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.process-modern-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.process-modern-number {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.process-modern-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.process-modern-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.process-modern-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-modern-item:nth-child(even) .process-modern-icon {
    margin-left: auto;
}

.process-modern-icon i {
    font-size: 1.8rem;
    color: var(--primary-purple);
}

.process-modern-content h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.process-modern-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Continue to Part 2... */
/* ========================================
   TESTIMONIALS MODERN SECTION
   ======================================== */

.testimonials-modern-section {
    background: white;
}

.testimonials-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-modern-card {
    background: white;
    border: 2px solid var(--light-300);
    padding: 40px 35px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-modern-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========================================
   INQUIRY FORM SECTION
   ======================================== */

.inquiry-form-section {
    background: var(--light-200);
}

.inquiry-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.inquiry-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.inquiry-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.inquiry-benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.inquiry-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.inquiry-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.inquiry-contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.inquiry-contact-item i {
    font-size: 1.8rem;
    color: var(--primary-purple);
}

.inquiry-contact-item h5 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inquiry-contact-item a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.inquiry-form-box {
    background: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.modern-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group-modern {
    position: relative;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-family: inherit;
    transition: all var(--transition-base);
    background: white;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group-modern label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.05rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition-base);
    background: white;
    padding: 0 5px;
}

.form-group-modern textarea + label {
    top: 25px;
}

.form-group-modern input:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern select:focus + label,
.form-group-modern select:valid + label,
.form-group-modern textarea:focus + label,
.form-group-modern textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.85rem;
    color: var(--primary-purple);
    font-weight: 600;
}

.form-group-modern select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-message-modern {
    padding: 18px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
    display: none;
}

.form-message-modern.success {
    background: rgba(56, 239, 125, 0.1);
    color: #059669;
    border: 2px solid #059669;
    display: block;
}

.form-message-modern.error {
    background: rgba(245, 87, 108, 0.1);
    color: #dc2626;
    border: 2px solid #dc2626;
    display: block;
}

/* ========================================
   CTA MODERN SECTION
   ======================================== */

.cta-modern-section {
    background: var(--dark-900);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta-modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
}

.cta-modern-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-modern-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 25px;
}

.cta-modern-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-modern-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER MODERN
   ======================================== */

.footer-modern {
    background: var(--dark-900);
    color: white;
    padding: 80px 0 30px;
}

.footer-modern-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-modern .logo-main {
    color: white;
}

.footer-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-social-modern {
    display: flex;
    gap: 15px;
}

.footer-social-modern a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social-modern a:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
}

.footer-social-modern i {
    font-size: 1.3rem;
}

.footer-modern-col h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 25px;
}

.footer-links-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-modern a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    transition: var(--transition-base);
}

.footer-links-modern a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links-modern i {
    font-size: 0.8rem;
    color: var(--primary-purple);
}

.footer-contact-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-contact-modern li {
    display: flex;
    gap: 15px;
}

.footer-contact-modern i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-top: 3px;
}

.footer-contact-modern span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.footer-contact-modern a {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-contact-modern p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.footer-modern-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-modern-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-modern-links {
    display: flex;
    gap: 30px;
}

.footer-modern-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition-base);
}

.footer-modern-links a:hover {
    color: white;
}

/* ========================================
   SCROLL TO TOP MODERN
   ======================================== */

.scroll-to-top-modern {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-colored);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 998;
}

.scroll-to-top-modern.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets and Below (1200px) */
@media (max-width: 1200px) {
    .container-fluid {
        padding: 0 30px;
    }
    
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual-modern {
        order: -1;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-preview-grid,
    .story-grid,
    .inquiry-form-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-modern-grid,
    .portfolio-modern-grid,
    .why-choose-modern-grid,
    .testimonials-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-modern-grid,
    .industries-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-modern-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .service-detailed-card {
        grid-template-columns: 1fr !important;
    }
    
    .service-detailed-card:nth-child(even) .service-detailed-visual {
        order: 0;
    }
}

/* Tablets (992px) */
@media (max-width: 992px) {
    .container-fluid {
        padding: 0 25px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        gap: 20px;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
    
    /* Hero Section */
    .hero-stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-visual-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Process Timeline */
    .process-modern-timeline::before {
        left: 40px;
    }
    
    .process-modern-item {
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .process-modern-item .process-modern-icon {
        margin-left: 0 !important;
    }
    
    /* Mission & Vision */
    .mv-modern-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing */
    .pricing-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-modern-card.featured {
        transform: scale(1);
    }
    
    /* Business Hours */
    .business-hours-grid {
        grid-template-columns: 1fr;
    }
    
    /* Success Stats */
    .success-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Portfolio */
    .portfolio-full-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Info */
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Landscape and Below (768px) */
@media (max-width: 768px) {
    .container-fluid {
        padding: 0 20px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    
    .section-title-modern {
        font-size: 1.75rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    /* Navigation */
    .nav-menu {
        width: 280px;
        padding: 90px 25px 30px;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Page Hero */
    .page-hero-modern {
        min-height: 50vh;
        padding: 140px 0 80px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero-modern {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title-modern {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-desc-modern {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-actions .btn-modern {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-modern h3 {
        font-size: 2rem;
    }
    
    .hero-visual-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .visual-card {
        padding: 25px;
    }
    
    /* Trusted Section */
    .trusted-logos {
        gap: 15px;
    }
    
    .trusted-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Services Grid */
    .services-modern-grid,
    .portfolio-modern-grid,
    .why-choose-modern-grid,
    .testimonials-modern-grid,
    .values-modern-grid,
    .industries-modern-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-modern-card,
    .portfolio-modern-card,
    .testimonial-modern-card,
    .value-modern-card,
    .industry-modern-card {
        padding: 35px 25px;
    }
    
    /* Service Features */
    .service-features-list {
        grid-template-columns: 1fr;
    }
    
    /* Process Timeline */
    .process-modern-timeline::before {
        left: 35px;
    }
    
    .process-modern-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .process-modern-content {
        padding: 30px 25px;
    }
    
    /* Why Us Section */
    .why-us-detailed-item {
        flex-direction: column;
        padding: 30px 25px;
        text-align: center;
    }
    
    .why-us-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    /* Inquiry Form */
    .inquiry-form-box {
        padding: 35px 25px;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .modern-inquiry-form {
        gap: 25px;
    }
    
    /* CTA Section */
    .cta-modern-section {
        padding: 80px 0;
    }
    
    .cta-modern-content h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .cta-modern-content p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .cta-modern-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .cta-modern-actions .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer-modern-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-modern-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Buttons */
    .btn-modern {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    /* Story Stats */
    .story-stats-card {
        padding: 35px 25px;
    }
    
    /* Success Stats */
    .success-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stat-card {
        padding: 40px 25px;
    }
    
    /* Portfolio Details */
    .portfolio-full-card {
        padding: 35px 25px;
    }
    
    /* FAQ */
    .faq-modern-question {
        padding: 25px;
    }
    
    .faq-modern-answer-content {
        padding: 0 25px 25px;
    }
    
    /* WhatsApp & Scroll Buttons */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .scroll-to-top-modern {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    /* Social Links */
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service Detailed */
    .service-detailed-card {
        padding: 40px 25px;
        gap: 35px;
    }
    
    .service-detailed-icon-large {
        width: 120px;
        height: 120px;
    }
    
    .service-detailed-icon-large i {
        font-size: 3rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .container-fluid {
        padding: 0 15px;
    }
    
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title-modern {
        font-size: 1.5rem;
    }
    
    .hero-title-modern {
        font-size: 1.75rem;
    }
    
    /* Buttons */
    .btn-modern {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* Cards */
    .service-modern-card,
    .portfolio-modern-card,
    .testimonial-modern-card,
    .value-modern-card,
    .industry-modern-card {
        padding: 30px 20px;
    }
    
    /* Icons */
    .service-modern-icon,
    .portfolio-modern-icon,
    .value-modern-icon,
    .industry-modern-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-modern-icon i,
    .portfolio-modern-icon i,
    .value-modern-icon i,
    .industry-modern-icon i {
        font-size: 2rem;
    }
    
    /* Stats */
    .stat-modern h3,
    .stat-circle-content h3 {
        font-size: 1.75rem;
    }
    
    /* Process */
    .process-modern-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-modern-content {
        padding: 25px 20px;
    }
    
    /* Form */
    .inquiry-form-box {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-modern {
        padding: 60px 0 25px;
    }
    
    /* Logo */
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Navigation */
    .nav-menu {
        width: 260px;
    }
    
    /* Trusted */
    .trusted-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Page Hero */
    .page-hero-modern {
        padding: 130px 0 70px;
    }
    
    /* Hero Visual Cards - Stack Vertically on Very Small Screens */
    .hero-visual-modern {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Filters */
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn-modern {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    .container-fluid {
        padding: 0 12px;
    }
    
    .hero-title-modern {
        font-size: 1.5rem;
    }
    
    .section-title-modern {
        font-size: 1.35rem;
    }
    
    .btn-modern {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .service-modern-card,
    .portfolio-modern-card {
        padding: 25px 18px;
    }
    
    .nav-menu {
        width: 240px;
        padding: 80px 20px 25px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-to-top-modern {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 15px;
        left: 15px;
    }
}

/* Landscape Orientation Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-modern {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .page-hero-modern {
        min-height: auto;
        padding: 120px 0 60px;
    }
}

/* Fix for overflow issues */
body {
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for cards not wrapping properly */
.services-modern-grid > *,
.portfolio-modern-grid > *,
.testimonials-modern-grid > * {
    min-width: 0;
    word-wrap: break-word;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}



/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   LOADING SPINNER (OPTIONAL)
   ======================================== */

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(102, 126, 234, 0.3);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   END OF MODERN CSS
   ======================================== */




   /* ========================================
   PAGE HERO MODERN
   ======================================== */

.page-hero-modern {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

/* ========================================
   STORY SECTION
   ======================================== */

.story-section {
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 1.9;
}

.story-stats-card {
    background: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-stat-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--light-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.story-stat-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.story-stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.story-stat-icon i {
    font-size: 2rem;
    color: white;
}

.story-stat-content h3 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.story-stat-content p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   MISSION & VISION MODERN
   ======================================== */

.mission-vision-modern {
    background: var(--light-200);
}

.mv-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-modern-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.mv-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mv-modern-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mv-modern-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-modern-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mv-modern-card > p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.mv-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mv-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mv-point i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* ========================================
   VALUES MODERN SECTION
   ======================================== */

.values-modern-section {
    background: white;
}

.values-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.value-modern-card {
    background: var(--light-200);
    padding: 45px 35px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.value-modern-card:hover::before {
    opacity: 0.05;
}

.value-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-modern-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-modern-icon i {
    font-size: 2.2rem;
    color: white;
}

.value-modern-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-modern-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========================================
   INDUSTRIES MODERN SECTION
   ======================================== */

.industries-modern-section {
    background: var(--light-200);
}

.industries-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.industry-modern-card {
    background: white;
    padding: 45px 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.industry-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.industry-modern-icon {
    width: 70px;
    height: 70px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.industry-modern-icon i {
    font-size: 2rem;
    color: var(--primary-purple);
}

.industry-modern-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.industry-modern-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.industry-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.client-tag {
    padding: 8px 16px;
    background: var(--light-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ========================================
   WHY US DETAILED SECTION
   ======================================== */

.why-us-detailed-section {
    background: white;
}

.why-us-detailed-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-us-detailed-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
    background: var(--light-200);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.why-us-detailed-item:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateX(10px);
}

.why-us-number {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.why-us-content h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.why-us-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ========================================
   SERVICES DETAILED SECTION
   ======================================== */

.services-detailed-section {
    background: white;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    padding: 60px;
    background: var(--light-200);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.service-detailed-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.service-detailed-card:nth-child(even) .service-detailed-visual {
    order: 2;
}

.service-detailed-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.service-detailed-visual {
    position: relative;
}

.service-detailed-icon-large {
    width: 150px;
    height: 150px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-colored);
}

.service-detailed-icon-large i {
    font-size: 4rem;
    color: white;
}

.service-detailed-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-detailed-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.service-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.service-feature-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-modern-section {
    background: var(--light-200);
}

.pricing-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.pricing-modern-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
}

.pricing-modern-card.featured {
    background: var(--dark-900);
    color: white;
    transform: scale(1.05);
}

.pricing-modern-card.featured .pricing-badge {
    display: block;
}

.pricing-modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: none;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-modern-card.featured .pricing-name {
    color: white;
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-modern-card.featured .pricing-description {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.pricing-modern-card.featured .pricing-price {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.pricing-feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.pricing-modern-card.featured .pricing-feature {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   PORTFOLIO FILTER
   ======================================== */

.portfolio-filter-section {
    background: white;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.filter-btn-modern {
    padding: 14px 30px;
    background: var(--light-200);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-base);
    cursor: pointer;
}

.filter-btn-modern:hover,
.filter-btn-modern.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-full-card {
    background: white;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    transition: var(--transition-base);
}

.portfolio-full-card:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.portfolio-full-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.portfolio-full-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portfolio-full-icon i {
    font-size: 2rem;
    color: white;
}

.portfolio-full-category {
    padding: 10px 20px;
    background: var(--light-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.portfolio-full-card h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.portfolio-full-card > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.portfolio-full-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding: 25px;
    background: var(--light-200);
    border-radius: var(--radius-md);
}

.portfolio-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.portfolio-detail-item i {
    color: var(--primary-purple);
    font-size: 1.1rem;
    width: 20px;
}

.portfolio-detail-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 100px;
}

.portfolio-detail-value {
    color: var(--text-secondary);
}

.portfolio-full-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.portfolio-full-tags span {
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.portfolio-full-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-base);
}

.portfolio-full-link:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-colored);
}

/* ========================================
   CONTACT PAGE SECTIONS
   ======================================== */

.contact-info-section {
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.contact-info-card {
    text-align: center;
    padding: 50px 35px;
    background: var(--light-200);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background: white;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-info-icon i {
    font-size: 2.2rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.contact-info-card a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-purple);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-modern-section {
    background: var(--light-200);
}

.faq-modern-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-modern-item {
    background: white;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.faq-modern-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-modern-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-modern-question h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    flex: 1;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.faq-icon i {
    font-size: 1.2rem;
    color: var(--primary-purple);
    transition: var(--transition-base);
}

.faq-modern-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-modern-answer-content {
    padding: 0 35px 30px;
}

.faq-modern-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-modern-item.active .faq-modern-question {
    background: rgba(102, 126, 234, 0.05);
}

.faq-modern-item.active .faq-icon {
    background: var(--primary-gradient);
}

.faq-modern-item.active .faq-icon i {
    color: white;
    transform: rotate(180deg);
}

.faq-modern-item.active .faq-modern-answer {
    max-height: 500px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 1200px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-modern-grid,
    .industries-modern-grid,
    .pricing-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detailed-card {
        grid-template-columns: 1fr !important;
    }
    
    .service-detailed-card:nth-child(even) .service-detailed-visual {
        order: 0;
    }
}

@media (max-width: 768px) {
    .values-modern-grid,
    .industries-modern-grid,
    .mv-modern-grid,
    .pricing-modern-grid,
    .contact-info-grid,
    .portfolio-full-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-detailed-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }
    
    .pricing-modern-card.featured {
        transform: scale(1);
    }
}







/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */

.contact-social-links {
    margin-top: 40px;
}

.contact-social-links h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--light-200);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.social-link-card:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateX(5px);
}

.social-link-card i {
    font-size: 1.3rem;
}

.social-link-card span {
    font-weight: 600;
    font-size: 1rem;
}

/* ========================================
   BUSINESS HOURS SECTION
   ======================================== */

.business-hours-section {
    background: white;
}

.business-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.business-hours-card {
    background: var(--light-200);
    padding: 45px 35px;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.business-hours-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background: white;
}

.business-hours-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.business-hours-icon i {
    font-size: 2rem;
    color: white;
}

.business-hours-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-300);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-primary);
}

.hours-item .time {
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 992px) {
    .business-hours-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
}
