/* ======================================== MSPE Website - Main Stylesheet Multiple Service Provider Experts ======================================== */ /* ==================== CSS Variables ==================== */ :root { /* Primary Colors */ --primary: #0a1628; --primary-light: #1a365d; --primary-dark: #050d17; /* Accent Colors */ --accent: #0ea5e9; --accent-light: #38bdf8; --accent-dark: #0284c7; --accent-glow: rgba(14, 165, 233, 0.3); /* Secondary Colors */ --secondary: #0d9488; --secondary-light: #14b8a6; /* Neutral Colors */ --white: #ffffff; --gray-50: #f8fafc; --gray-100: #f1f5f9; --gray-200: #e2e8f0; --gray-300: #cbd5e1; --gray-400: #94a3b8; --gray-500: #64748b; --gray-600: #475569; --gray-700: #334155; --gray-800: #1e293b; --gray-900: #0f172a; /* Typography */ --font-primary: 'DM Sans', sans-serif; --font-display: 'Playfair Display', serif; --font-heading: 'Playfair Display', serif; /* Spacing */ --spacing-xs: 0.25rem; --spacing-sm: 0.5rem; --spacing-md: 1rem; --spacing-lg: 1.5rem; --spacing-xl: 2rem; --spacing-2xl: 3rem; --spacing-3xl: 4rem; --spacing-section: 5rem; /* Text Colors */ --text-white: #ffffff; --text-dark: #0a1628; --text-body: #64748b; --text-muted: #94a3b8; /* Background Colors */ --bg-dark: #0a1628; --bg-light: #f8fafc; /* Border Color */ --border-light: #e2e8f0; /* Accent aliases */ --accent-cyan: var(--accent); --secondary-teal: var(--secondary); /* Transitions */ --transition-base: all 0.3s ease; --transition-fast: all 0.2s ease; --transition-slow: all 0.5s ease; /* Border Radius */ --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.75rem; --radius-xl: 1rem; --radius-2xl: 1.5rem; --radius-full: 9999px; /* Shadows */ --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1); --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1); --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.4); /* Z-index scale */ --z-dropdown: 100; --z-sticky: 1000; --z-preloader: 9999; } /* Common patterns */ .text-gradient { background: linear-gradient(135deg, var(--accent-cyan), var(--secondary-teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; display: inline-block; } /* ==================== Reset & Base ==================== */ /* Accessibility: Skip to content link */ .skip-to-content { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); padding: 0.75rem 1.5rem; border-radius: var(--radius-md); z-index: 10000; font-weight: 600; text-decoration: none; transition: top 0.2s ease; } .skip-to-content:focus { top: 1rem; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: var(--font-primary); font-size: 1rem; line-height: 1.6; color: var(--gray-700); background-color: var(--white); overflow-x: hidden; } body.no-scroll { overflow: hidden; } a { text-decoration: none; color: inherit; transition: var(--transition-base); } img { max-width: 100%; height: auto; display: block; } ul, ol { list-style: none; } button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; } input, textarea, select { font-family: inherit; font-size: inherit; padding: 0.75rem 1rem; border: 1px solid var(--border-light); border-radius: var(--radius-md); transition: var(--transition-base); } input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1); } select { -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; } /* ==================== Utilities ==================== */ .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--spacing-lg); } /* Ensure proper centering for all containers */ @media (min-width: 1280px) { .container { padding: 0 2rem; } } .section { padding: var(--spacing-3xl) 0; } .section-header { text-align: center; max-width: 700px; margin: 0 auto var(--spacing-3xl); } .section-label { display: inline-block; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: var(--spacing-sm); } .section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--gray-900); margin-bottom: var(--spacing-md); line-height: 1.2; } .section-description { font-size: 1.125rem; color: var(--gray-600); } .section-cta { text-align: center; margin-top: var(--spacing-2xl); } /* ==================== Buttons ==================== */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--spacing-sm); padding: 0.75rem 1.5rem; font-weight: 600; font-size: 0.9375rem; border-radius: var(--radius-md); transition: var(--transition-base); cursor: pointer; border: 2px solid transparent; } .btn-primary { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--white); border-color: var(--accent); } .btn-primary:hover { background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%); transform: translateY(-2px); box-shadow: var(--shadow-glow); } .btn-outline { background: transparent; color: var(--primary); border-color: var(--gray-300); } .btn-outline:hover { background: var(--primary); color: var(--white); border-color: var(--primary); } .btn-white { background: var(--white); color: var(--primary); border-color: var(--white); } .btn-white:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-glow); } .btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.5); } .btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-2px); } .btn-lg { padding: 1rem 2rem; font-size: 1rem; } /* ==================== Preloader ==================== */ .preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary); display: flex; align-items: center; justify-content: center; z-index: var(--z-preloader); transition: opacity 0.5s ease, visibility 0.5s ease; } .preloader.hidden { opacity: 0; visibility: hidden; } /* Alternative preloader structure */ .preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; } .preloader-logo img { height: 50px; width: auto; display: block; } .preloader-spinner { width: 60px; height: 60px; border: 3px solid rgba(255, 255, 255, 0.1); border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite; } .loader { position: relative; display: flex; align-items: center; justify-content: center; } .loader-ring { width: 100px; height: 100px; border: 3px solid transparent; border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite; } .loader-text { position: absolute; font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: 0.1em; } @keyframes spin { to { transform: rotate(360deg); } } /* ==================== Header & Navigation ==================== */ .header { position: fixed; top: 0; left: 0; width: 100%; z-index: var(--z-sticky); background: transparent; transition: var(--transition-base); } .header.scrolled { background: rgba(10, 22, 40, 0.95); backdrop-filter: blur(10px); box-shadow: var(--shadow-lg); } .nav { display: flex; align-items: center; justify-content: space-between; padding: var(--spacing-md) 0; height: 80px; } .nav-logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; } .nav-logo img { height: 60px; width: auto; } .logo-text { font-size: 1.75rem; font-weight: 700; color: var(--white); letter-spacing: 0.05em; } .logo-tagline { font-size: 0.6875rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; } .nav-menu { display: flex; align-items: center; } .nav-list { display: flex; gap: var(--spacing-xl); } .nav-link { color: var(--white); font-weight: 500; font-size: 0.9375rem; padding: var(--spacing-sm) 0; position: relative; display: flex; align-items: center; gap: var(--spacing-xs); } .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--transition-base); } .nav-link:hover::after, .nav-link.active::after { width: 100%; } .nav-link i { font-size: 0.75rem; transition: var(--transition-base); } /* Dropdown */ .dropdown { position: relative; } .dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: rgba(5, 8, 16, 0.95); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); padding: var(--spacing-md) 0; min-width: 240px; opacity: 0; visibility: hidden; transition: var(--transition-base); border: 1px solid rgba(255, 255, 255, 0.1); } .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); } .dropdown:hover .nav-link i { transform: rotate(180deg); } .dropdown-menu li a { display: block; padding: var(--spacing-sm) var(--spacing-lg); color: rgba(255, 255, 255, 0.85); font-size: 0.9375rem; transition: var(--transition-base); } .dropdown-menu li a:hover { background: rgba(0, 245, 255, 0.1); color: var(--accent); } .nav-actions { display: flex; align-items: center; gap: var(--spacing-md); } .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--spacing-sm); } .nav-toggle span { width: 25px; height: 2px; background: var(--white); transition: var(--transition-base); } /* ==================== Hero Section ==================== */ .hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; overflow: hidden; } .hero-slider { position: relative; height: 100vh; width: 100%; /* Add this line to ensure full width */ } .hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s ease; } .hero-slide.active { opacity: 1; visibility: visible; } .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .hero-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,'); opacity: 0.5; } .hero-content { position: relative; display: flex; flex-direction: row; align-items: center; justify-content: space-between; text-align: left; height: 100%; padding-top: 80px; width: 100%; } .hero-text { animation: fadeInUp 0.8s ease forwards; display: flex; flex-direction: column; align-items: flex-start; flex: 1; padding-right: 2rem; } .hero-label { display: inline-block; background: rgba(14, 165, 233, 0.15); color: var(--accent-light); padding: var(--spacing-sm) var(--spacing-md); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; margin-bottom: var(--spacing-lg); white-space: nowrap; } .hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: var(--spacing-lg); word-break: normal; overflow-wrap: normal; hyphens: none; } .hero-title .highlight { background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-description { font-size: 1.25rem; color: var(--gray-300); margin-bottom: var(--spacing-xl); max-width: 640px; text-align: left; } .hero-buttons { display: flex; gap: var(--spacing-md); flex-wrap: wrap; justify-content: flex-start; } .hero-buttons .btn-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.3); } .hero-buttons .btn-outline:hover { background: var(--white); color: var(--primary); } /* Hero Visual */ .hero-visual { display: flex; justify-content: center; align-items: center; position: relative; flex: 1; } .hero-graphic { position: relative; width: 400px; height: 400px; } .orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; transform: translate(-50%, -50%); } .orbit-1 { width: 200px; height: 200px; animation: orbit 20s linear infinite; } .orbit-2 { width: 300px; height: 300px; animation: orbit 30s linear infinite reverse; } .orbit-3 { width: 400px; height: 400px; animation: orbit 40s linear infinite; } .core { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%); border-radius: 50%; box-shadow: 0 0 60px var(--accent-glow); animation: pulse 2s ease-in-out infinite; } @keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } } @keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.1); } } /* Floating Cards */ .floating-card { position: absolute; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg); padding: var(--spacing-md) var(--spacing-lg); display: flex; align-items: center; gap: var(--spacing-sm); color: var(--white); font-weight: 500; font-size: 0.875rem; animation: float 6s ease-in-out infinite; } .floating-card i { font-size: 1.25rem; color: var(--accent-light); } .card-1 { top: 10%; right: 10%; animation-delay: 0s; } .card-2 { bottom: 30%; left: 5%; animation-delay: 2s; } .card-3 { bottom: 10%; right: 20%; animation-delay: 4s; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } /* Hero Controls */ .hero-controls { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: var(--spacing-lg); z-index: 10; } .hero-control { width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); display: flex; align-items: center; justify-content: center; transition: var(--transition-base); } .hero-control:hover { background: var(--accent); border-color: var(--accent); } .hero-dots { display: flex; gap: var(--spacing-sm); } .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: var(--transition-base); } .dot.active { background: var(--accent); box-shadow: 0 0 10px var(--accent); } /* ==================== Stats Section ==================== */ .stats { background: var(--primary); padding: var(--spacing-3xl) 0; margin-top: -1px; } .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-xl); } .stat-item { text-align: center; padding: var(--spacing-xl); border-radius: var(--radius-xl); background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); transition: var(--transition-base); } .stat-item:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-5px); } .stat-icon { width: 60px; height: 60px; margin: 0 auto var(--spacing-md); background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; } .stat-icon i { font-size: 1.5rem; color: var(--white); } .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: var(--spacing-xs); } .stat-label { color: var(--gray-400); font-size: 0.9375rem; } /* ==================== Services Section ==================== */ .services { background: #050810; } .services .section-title { color: rgba(255, 255, 255, 0.95); } .services .section-description { color: rgba(255, 255, 255, 0.7); } .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-xl); } .service-card { background: rgba(255, 255, 255, 0.03); border-radius: var(--radius-xl); padding: var(--spacing-xl); border: 1px solid rgba(255, 255, 255, 0.08); transition: var(--transition-base); position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%; /* Add this to ensure cards take full height of grid cell */ } .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%); transform: scaleX(0); transform-origin: left; transition: var(--transition-base); } .service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); } .service-card:hover::before { transform: scaleX(1); } .service-card.featured { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-color: transparent; } .service-card.featured::before { transform: scaleX(1); } .service-badge { position: absolute; top: var(--spacing-md); right: var(--spacing-md); background: var(--accent); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: var(--spacing-xs) var(--spacing-sm); border-radius: var(--radius-full); } .service-icon { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: var(--spacing-lg); } .service-icon i { font-size: 1.75rem; background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .service-card.featured .service-icon { background: rgba(255, 255, 255, 0.1); } .service-card.featured .service-icon i { background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .service-title { font-size: 1.25rem; font-weight: 700; color: rgba(255, 255, 255, 0.95); margin-bottom: var(--spacing-sm); } .service-card.featured .service-title { color: var(--white); } .service-description { color: rgba(255, 255, 255, 0.7); font-size: 0.9375rem; margin-bottom: var(--spacing-md); line-height: 1.7; flex-grow: 1; /* Make description take available space to push link down */ } .service-card.featured .service-description { color: var(--gray-300); } .service-features { margin-bottom: var(--spacing-lg); } .service-features li { display: flex; align-items: center; gap: var(--spacing-sm); padding: var(--spacing-xs) 0; font-size: 0.875rem; color: rgba(255, 255, 255, 0.75); } .service-card.featured .service-features li { color: var(--gray-300); } .service-features li i { color: var(--accent); font-size: 0.75rem; } .service-link { display: inline-flex; align-items: center; gap: var(--spacing-sm); color: var(--accent); font-weight: 600; font-size: 0.9375rem; margin-top: auto; position: relative; /* Add this */ z-index: 2; /* Add this */ } .service-link i { transition: var(--transition-base); } .service-link:hover i { transform: translateX(5px); } .service-card.featured .service-link { color: var(--accent-light); } /* ==================== Why Us Section ==================== */ .why-us { background: #050810; } .why-us .section-header { text-align: center; max-width: 700px; margin: 0 auto var(--spacing-3xl); } .why-us .section-title { color: rgba(255, 255, 255, 0.95); } .why-us .section-description { color: rgba(255, 255, 255, 0.7); } .why-us-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-3xl); align-items: center; } .features-list { display: grid; gap: var(--spacing-lg); } .feature-item { display: flex; gap: var(--spacing-md); padding: var(--spacing-md); border-radius: var(--radius-lg); transition: var(--transition-base); } .feature-item:hover { background: rgba(0, 245, 255, 0.05); } .feature-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .feature-icon i { font-size: 1.25rem; color: var(--white); } .feature-content h4 { font-size: 1.0625rem; font-weight: 600; color: rgba(255, 255, 255, 0.95); margin-bottom: var(--spacing-xs); } .feature-content p { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.7); } /* Process Flow */ .process-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--spacing-lg); } .process-step { background: rgba(255, 255, 255, 0.03); border-radius: var(--radius-xl); padding: var(--spacing-xl); text-align: center; border: 1px solid rgba(255, 255, 255, 0.08); transition: var(--transition-base); } .process-step:hover { background: var(--primary); border-color: var(--primary); } .process-step:hover .step-number, .process-step:hover h4, .process-step:hover p { color: var(--white); } .step-number { font-size: 2rem; font-weight: 700; color: var(--accent); margin-bottom: var(--spacing-sm); transition: var(--transition-base); } .process-step h4 { font-size: 1.125rem; font-weight: 600; color: rgba(255, 255, 255, 0.95); margin-bottom: var(--spacing-xs); transition: var(--transition-base); } .process-step p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); transition: var(--transition-base); } /* ==================== Philosophy Section ==================== */ .philosophy { background: var(--gray-50); padding: var(--spacing-section) 0; } /* Ensure sections without dark backgrounds have proper text colors */ .section:not(.services):not(.why-us):not(.clients):not(.news):not(.stats):not(.commitment):not(.testimonials) .section-title { color: var(--gray-900); } .section:not(.services):not(.why-us):not(.clients):not(.news):not(.stats):not(.commitment):not(.testimonials) .section-description { color: var(--gray-600); } .philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; } .philosophy-card { text-align: center; padding: 2rem; background: var(--white); border-radius: var(--radius-xl); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); transition: var(--transition-base); } .philosophy-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); } .philosophy-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; display: block; } .philosophy-card h4 { font-size: 1.25rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; } .philosophy-card p { color: var(--gray-600); line-height: 1.6; } /* ==================== Clients Section ==================== */ .clients { background: #050810; } .clients .section-title { color: rgba(255, 255, 255, 0.95); } .clients .section-description { color: rgba(255, 255, 255, 0.7); } .clients-slider { overflow: hidden; padding: var(--spacing-lg) 0; } .clients-track { display: flex; gap: var(--spacing-xl); animation: scroll 30s linear infinite; } .client-logo { flex-shrink: 0; width: 180px; height: 80px; background: rgba(255, 255, 255, 0.03); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.08); transition: var(--transition-base); } .client-logo:hover { box-shadow: var(--shadow-md); } .logo-placeholder { color: var(--gray-400); font-weight: 600; } @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-180px * 6 - var(--spacing-xl) * 6)); } } /* ==================== Commitment Section ==================== */ .commitment { background: var(--primary); padding: var(--spacing-section) 0; } .commitment .section-title { color: var(--white); } .commitment-content { max-width: 900px; margin: 0 auto; text-align: center; } .commitment-card { background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%); border-radius: 20px; padding: 3rem; margin-top: 2rem; border: 1px solid rgba(255, 255, 255, 0.1); } .commitment-card .quote-icon { font-size: 3rem; color: var(--accent); opacity: 0.5; margin-bottom: 1rem; } .commitment-quote { font-size: 1.5rem; line-height: 1.8; margin: 2rem 0; font-style: italic; color: var(--gray-200); } .commitment-author { margin-top: 2rem; } .author-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--accent), var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; } .author-icon i { color: var(--white); font-size: 1.5rem; } .commitment-author h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.25rem; } .commitment-author p { color: var(--gray-400); font-size: 0.9rem; } .commitment-footer { margin-top: 2rem; color: var(--gray-300); line-height: 1.6; } /* ==================== Testimonials Section ==================== */ .testimonials { background: var(--primary); position: relative; overflow: hidden; } .testimonials::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,'); background-size: 100px; } .testimonials .section-label, .testimonials .section-title { color: var(--white); } .testimonials-slider { position: relative; max-width: 800px; margin: 0 auto; } .testimonial-card { display: none; animation: fadeIn 0.5s ease; } .testimonial-card.active { display: block; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .testimonial-content { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-2xl); padding: var(--spacing-2xl); text-align: center; } .quote-icon { font-size: 3rem; color: var(--accent); margin-bottom: var(--spacing-lg); } .testimonial-text { font-size: 1.25rem; color: var(--gray-200); line-height: 1.8; margin-bottom: var(--spacing-xl); font-style: italic; } .testimonial-author { display: flex; align-items: center; justify-content: center; gap: var(--spacing-md); } .author-avatar { width: 60px; height: 60px; background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; color: var(--white); } .author-info h4 { color: var(--white); font-size: 1.125rem; font-weight: 600; } .author-info p { color: var(--gray-400); font-size: 0.875rem; } .testimonials-nav { display: flex; align-items: center; justify-content: center; gap: var(--spacing-md); margin-top: var(--spacing-xl); } .testimonial-prev, .testimonial-next { width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); display: flex; align-items: center; justify-content: center; transition: var(--transition-base); } .testimonial-prev:hover, .testimonial-next:hover { background: var(--accent); border-color: var(--accent); } .testimonial-dots { display: flex; gap: var(--spacing-sm); } /* ==================== News Section ==================== */ .news { background: #050810; } .news .section-title { color: rgba(255, 255, 255, 0.95); } .news .section-description { color: rgba(255, 255, 255, 0.7); } .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-xl); } .news-card { background: rgba(255, 255, 255, 0.03); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); transition: var(--transition-base); } .news-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); } .news-image { height: 200px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); position: relative; } .news-date { position: absolute; bottom: var(--spacing-md); left: var(--spacing-md); background: var(--accent); color: var(--white); padding: var(--spacing-sm) var(--spacing-md); border-radius: var(--radius-md); text-align: center; line-height: 1.2; } .news-date .day { display: block; font-size: 1.5rem; font-weight: 700; } .news-date .month { display: block; font-size: 0.75rem; text-transform: uppercase; } .news-content { padding: var(--spacing-lg); } .news-category { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--accent); margin-bottom: var(--spacing-sm); } .news-title { font-size: 1.125rem; font-weight: 700; color: rgba(255, 255, 255, 0.95); margin-bottom: var(--spacing-sm); line-height: 1.4; } .news-excerpt { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.7); margin-bottom: var(--spacing-md); line-height: 1.6; } .news-link { display: inline-flex; align-items: center; gap: var(--spacing-sm); color: var(--accent); font-weight: 600; font-size: 0.875rem; } .news-link i { transition: var(--transition-base); } .news-link:hover i { transform: translateX(5px); } /* ==================== CTA Section ==================== */ .cta { position: relative; padding: var(--spacing-3xl) 0; overflow: hidden; } .cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%); } .cta-bg::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,'); background-size: 50px; } .cta-content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; } .cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; color: var(--white); margin-bottom: var(--spacing-md); } .cta-description { font-size: 1.125rem; color: rgba(255, 255, 255, 0.9); margin-bottom: var(--spacing-xl); } .cta-buttons { display: flex; gap: var(--spacing-md); justify-content: center; flex-wrap: wrap; } .cta-buttons .btn-primary { background: var(--white); color: var(--accent); border-color: var(--white); } .cta-buttons .btn-primary:hover { background: var(--primary); color: var(--white); border-color: var(--primary); } .cta-buttons .btn-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.5); } .cta-buttons .btn-outline:hover { background: var(--white); color: var(--accent); } /* ==================== Footer ==================== */ .footer { background: var(--primary); margin-top: 0; position: relative; width: 100%; border-top: 1px solid rgba(255, 255, 255, 0.05); } .footer-main { padding: var(--spacing-3xl) 0 var(--spacing-2xl); } .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: var(--spacing-2xl); align-items: start; } .footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: var(--spacing-md); text-decoration: none; line-height: 1; } .footer-logo img { display: block; height: 60px; width: auto; max-width: 220px; } .footer-logo .logo-text { font-size: 2rem; } .footer-description { color: var(--gray-400); font-size: 0.9375rem; line-height: 1.7; margin-bottom: var(--spacing-lg); } .footer-social { display: flex; gap: var(--spacing-sm); } .social-link { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--gray-400); text-decoration: none; transition: var(--transition-base); } .social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); } .footer-title { color: var(--white); font-size: 1.125rem; font-weight: 600; margin-bottom: var(--spacing-lg); } .footer-links ul li { margin-bottom: var(--spacing-sm); } .footer-links ul li a { color: var(--gray-400); font-size: 0.9375rem; transition: var(--transition-base); } .footer-links ul li a:hover { color: var(--accent); } .contact-list li { display: flex; gap: var(--spacing-md); margin-bottom: var(--spacing-md); color: var(--gray-400); font-size: 0.9375rem; } .contact-list li i { color: var(--accent); margin-top: 4px; } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: var(--spacing-lg) 0; margin-top: var(--spacing-xl); } .footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--spacing-md); } .footer-bottom p { color: var(--gray-500); font-size: 0.875rem; margin: 0; } .footer-bottom-links { display: flex; gap: var(--spacing-lg); flex-wrap: wrap; } .footer-bottom-links a { color: var(--gray-500); font-size: 0.875rem; transition: var(--transition-base); text-decoration: none; } .footer-bottom-links a:hover { color: var(--accent); } /* ==================== Text & Spacing Fixes ==================== */ .text-center { text-align: center; } .text-left { text-align: left; } .text-right { text-align: right; } .text-uppercase { text-transform: uppercase; letter-spacing: 0.05em; } .text-muted { color: var(--text-muted) !important; } .tight-spacing { letter-spacing: -0.02em; } .normal-spacing { letter-spacing: normal; } .max-width-fit { max-width: fit-content; } .aspect-ratio-4-3 { aspect-ratio: 4/3; object-fit: cover; } .aspect-ratio-16-9 { aspect-ratio: 16/9; object-fit: cover; } .aspect-ratio-1-1 { aspect-ratio: 1/1; object-fit: cover; } /* ==================== Back to Top ==================== */ .back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--accent); color: var(--white); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition-base); z-index: var(--z-dropdown); } .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); } .back-to-top:hover { background: var(--accent-dark); transform: translateY(-5px); } /* ==================== Typography Fixes ==================== */ h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; hyphens: auto; } .text-overflow-hidden { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } /* ==================== Responsive ==================== */ @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .why-us-content { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-xl); } .footer-main { padding: var(--spacing-2xl) 0 var(--spacing-xl); } } @media (max-width: 768px) { .nav-menu { position: fixed; top: 0; right: -100%; width: 100%; max-width: 320px; height: 100vh; background: var(--primary); padding: 100px var(--spacing-xl) var(--spacing-xl); transition: var(--transition-slow); overflow-y: auto; } .nav-menu.active { transform: translateX(-100%); } .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; padding-left: var(--spacing-lg); margin-top: var(--spacing-sm); background: rgba(255, 255, 255, 0.1); } .nav-menu.active { right: 0; } .nav-list { flex-direction: column; gap: 0; } .nav-link { padding: var(--spacing-md) 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; background: rgba(255, 255, 255, 0.05); margin-top: var(--spacing-sm); border-radius: var(--radius-md); } .dropdown-menu li a { color: var(--gray-300); } .nav-toggle { display: flex; } .nav-actions .btn { display: none; } .hero-content { text-align: center; flex-direction: column; justify-content: center; } .hero-text { align-items: center; padding-right: 0; } .hero-visual { display: none; } .hero-description { margin-left: auto; margin-right: auto; text-align: center; } .hero-buttons { justify-content: center; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .services-grid { grid-template-columns: 1fr; } .news-grid { grid-template-columns: 1fr; } .process-flow { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; gap: var(--spacing-xl); text-align: center; } .footer-brand { order: 1; } .footer-links { order: 2; } .footer-contact { order: 3; } .footer-social { justify-content: center; margin-top: var(--spacing-md); } .footer-bottom .container { flex-direction: column; gap: var(--spacing-md); text-align: center; } } @media (max-width: 480px) { .section-title { font-size: 1.75rem; } .services-grid { grid-template-columns: 1fr; } .hero-buttons { flex-direction: column; margin-top: 1rem; } .hero-buttons .btn { width: 100%; margin-bottom: 0.5rem; } .cta-buttons { flex-direction: column; margin-top: 1rem; } .cta-buttons .btn { width: 100%; margin-bottom: 0.5rem; } .form-row { grid-template-columns: 1fr; gap: 0.75rem; } .contact-grid { grid-template-columns: 1fr; gap: 2rem; } .dropdown-menu { min-width: auto; width: 100%; } .hero-buttons { flex-direction: column; } .hero-buttons .btn { width: 100%; } .cta-buttons { flex-direction: column; } .cta-buttons .btn { width: 100%; } } /* ==================== Notifications ==================== */ .notification { position: fixed; top: 20px; right: 20px; padding: 1rem 1.5rem; border-radius: var(--radius-lg); display: flex; align-items: center; gap: 0.75rem; font-weight: 500; z-index: 9999; animation: slideInRight 0.3s ease; box-shadow: var(--shadow-xl); max-width: 400px; } .notification-success { background: #10b981; color: white; } .notification-error { background: #ef4444; color: white; } .notification-info { background: var(--accent); color: white; } .notification.show { opacity: 1; transform: translateX(0); } @keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } } /* ==================== Form Message ==================== */ .form-message { display: none; padding: 1rem; border-radius: var(--radius-md); margin-top: 1rem; font-size: 0.9rem; } .form-message.success { background-color: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); } .form-message.error { background-color: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); } .form-message i { margin-right: 0.5rem; } /* ==================== Preloader Hidden State ==================== */ .preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; } /* ==================== Premium Experience Layer (2026) ==================== */ :root { --premium-bg: #060b17; --premium-bg-soft: #0b1426; --premium-surface: rgba(255, 255, 255, 0.04); --premium-surface-strong: rgba(255, 255, 255, 0.08); --premium-border: rgba(148, 163, 184, 0.25); --premium-border-strong: rgba(148, 163, 184, 0.45); --premium-gold: #e6c068; --premium-gold-soft: rgba(230, 192, 104, 0.25); --premium-shadow: 0 18px 45px rgba(2, 8, 23, 0.45); } body.premium-ui { color: #d8e3f1; background: radial-gradient(circle at 10% 0%, rgba(14, 165, 233, 0.14), transparent 42%), radial-gradient(circle at 90% 12%, rgba(230, 192, 104, 0.08), transparent 38%), linear-gradient(180deg, var(--premium-bg) 0%, #050a14 45%, #040811 100%); } /* body.premium-ui::before scanline overlay REMOVED for performance — fixed full-screen pseudo-element creates expensive compositor layer */ body.premium-ui section, body.premium-ui footer { position: relative; } body.premium-ui .section-title, body.premium-ui .page-title, body.premium-ui .hero-title { color: #f8fbff; letter-spacing: 0.01em; text-wrap: balance; } body.premium-ui .section-label, body.premium-ui .hero-label, body.premium-ui .page-label { color: var(--premium-gold); letter-spacing: 0.16em; } body.premium-ui .section-description, body.premium-ui .hero-description, body.premium-ui .page-description, body.premium-ui .page-subtitle, body.premium-ui p { color: #a8b9cc; } body.premium-ui .header { background: linear-gradient(180deg, rgba(3, 7, 16, 0.68), rgba(3, 7, 16, 0.2)); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(148, 163, 184, 0.18); } body.premium-ui .header.scrolled { background: rgba(3, 7, 16, 0.85); border-bottom-color: rgba(148, 163, 184, 0.28); } body.premium-ui .nav-link { color: #dbe8f7; font-weight: 500; } body.premium-ui .nav-link::after { height: 1px; background: linear-gradient(90deg, var(--premium-gold), var(--accent-light)); } body.premium-ui .btn { border-radius: 999px; font-weight: 600; letter-spacing: 0.02em; } body.premium-ui .btn-primary { background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 45%, #123a9f 100%); border-color: rgba(219, 234, 254, 0.25); box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35); } body.premium-ui .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(14, 165, 233, 0.26); } body.premium-ui .btn-outline { color: #dbe8f7; border-color: var(--premium-border-strong); background: rgba(15, 23, 42, 0.38); } body.premium-ui .btn-outline:hover { border-color: var(--premium-gold); color: #fff7e0; background: rgba(230, 192, 104, 0.12); } body.premium-ui .hero-bg { filter: saturate(1.2) contrast(1.08); } body.premium-ui .hero::after, body.premium-ui .page-hero::after { content: ''; position: absolute; inset: auto 0 0 0; height: 120px; background: linear-gradient(180deg, rgba(4, 8, 17, 0), rgba(4, 8, 17, 0.9)); pointer-events: none; } body.premium-ui .stats, body.premium-ui .services, body.premium-ui .why-us, body.premium-ui .philosophy, body.premium-ui .commitment, body.premium-ui .about-intro, body.premium-ui .values, body.premium-ui .team, body.premium-ui .team-section, body.premium-ui .service-detail, body.premium-ui .contact-main, body.premium-ui .contact-cards-section, body.premium-ui .portfolio-grid, body.premium-ui .news-grid { background: transparent; } body.premium-ui .service-card, body.premium-ui .stat-item, body.premium-ui .feature-item, body.premium-ui .value-card, body.premium-ui .team-card, body.premium-ui .testimonial-card, body.premium-ui .news-card, body.premium-ui .portfolio-card, body.premium-ui .philosophy-card, body.premium-ui .commitment-card, body.premium-ui .contact-card, body.premium-ui .service-visual-card, body.premium-ui .about-image, body.premium-ui .process-step, body.premium-ui .contact-form-wrapper, body.premium-ui .contact-info, body.premium-ui .calendar-wrapper, body.premium-ui .booking-wrapper { background: linear-gradient(160deg, rgba(15, 23, 42, 0.68), rgba(8, 15, 30, 0.5)); border: 1px solid var(--premium-border); box-shadow: var(--premium-shadow); /* backdrop-filter: blur(6px) removed for performance */ } body.premium-ui .service-card:hover, body.premium-ui .value-card:hover, body.premium-ui .team-card:hover, body.premium-ui .news-card:hover, body.premium-ui .portfolio-card:hover, body.premium-ui .contact-card:hover, body.premium-ui .feature-item:hover { border-color: rgba(230, 192, 104, 0.45); box-shadow: 0 22px 44px rgba(2, 8, 23, 0.52); } body.premium-ui .service-title, body.premium-ui .feature-content h4, body.premium-ui .value-card h3, body.premium-ui .team-card h3, body.premium-ui .team-card h4, body.premium-ui .contact-card h3, body.premium-ui .news-title, body.premium-ui .portfolio-title, body.premium-ui .service-feature h4 { color: #ecf4ff; } body.premium-ui .service-description, body.premium-ui .service-features li, body.premium-ui .feature-content p, body.premium-ui .value-card p, body.premium-ui .team-card p, body.premium-ui .contact-card p, body.premium-ui .news-excerpt, body.premium-ui .portfolio-client, body.premium-ui .service-feature p { color: #9fb3c8; } body.premium-ui .service-link, body.premium-ui .news-link, body.premium-ui .portfolio-link { color: #f7d88f; } body.premium-ui .service-link:hover, body.premium-ui .news-link:hover, body.premium-ui .portfolio-link:hover { color: #ffe7b0; } body.premium-ui input, body.premium-ui select, body.premium-ui textarea { color: #e7f1fe; background: rgba(15, 23, 42, 0.72); border: 1px solid rgba(148, 163, 184, 0.35); } body.premium-ui input::placeholder, body.premium-ui textarea::placeholder { color: #94a3b8; } body.premium-ui input:focus, body.premium-ui select:focus, body.premium-ui textarea:focus { border-color: rgba(230, 192, 104, 0.75); box-shadow: 0 0 0 3px rgba(230, 192, 104, 0.16); } body.premium-ui .breadcrumb, body.premium-ui .breadcrumb a, body.premium-ui .breadcrumb span { color: #afc3da; } body.premium-ui .footer, body.premium-ui footer { border-top: 1px solid rgba(148, 163, 184, 0.2); } /* Premium motion polish */ .premium-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; will-change: transform, opacity; } .premium-reveal.is-visible { opacity: 1; transform: translateY(0); } @media (prefers-reduced-motion: reduce) { .premium-reveal, .premium-reveal.is-visible { opacity: 1; transform: none; transition: none; } } @media (max-width: 1024px) { body.premium-ui .header { background: rgba(3, 7, 16, 0.94); } body.premium-ui .nav-menu { background: linear-gradient(180deg, rgba(7, 12, 24, 0.98), rgba(5, 9, 18, 0.96)); border: 1px solid rgba(148, 163, 184, 0.24); } } /* ==================== Industries Section ==================== */ .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; } .industry-item { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 2rem 1rem; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%); border: 1px solid rgba(255, 255, 255, 0.06); transition: transform 0.3s ease, border-color 0.3s ease; text-align: center; } .industry-item:hover { transform: translateY(-6px); border-color: rgba(14, 165, 233, 0.3); } .industry-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(13, 148, 136, 0.1) 100%); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(14, 165, 233, 0.2); } .industry-icon i { font-size: 1.5rem; color: var(--accent, #0ea5e9); } .industry-item span { font-weight: 600; font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); } .industries-note { text-align: center; color: rgba(255, 255, 255, 0.6); font-size: 1rem; } .text-accent { color: var(--accent, #0ea5e9) !important; font-weight: 600; transition: color 0.3s ease; } .text-accent:hover { color: var(--accent-light, #38bdf8) !important; } @media (max-width: 768px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 480px) { .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .industry-item { padding: 1.25rem 0.75rem; } } /* ==================== WhatsApp Float Button ==================== */ .whatsapp-float { position: fixed; bottom: 24px; left: 24px; width: 56px; height: 56px; background: #25d366; color: #fff !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 900; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; } .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); color: #fff !important; } @media (max-width: 768px) { .whatsapp-float { bottom: 1.25rem; left: 1rem; width: 50px; height: 50px; font-size: 1.5rem; } }