/* ============================================ ELEGO WEBSITE — STYLESHEET Version: 1.0 | 2026 ============================================ */ /* ---------- RESET & BASE ---------- */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --navy: #072B4A; --navy-dark: #041938; --blue: #005B96; --blue-light: #00A6D6; --bg-light: #F0F6FB; --bg-white: #FFFFFF; --text-dark: #1F2933; --text-mid: #4B5563; --text-light: #A0B8D0; --border: #E2EAF0; --radius: 12px; --radius-lg: 20px; --shadow: 0 4px 24px rgba(7,43,74,0.10); --shadow-lg: 0 8px 40px rgba(7,43,74,0.16); --transition: 0.25s ease; --font: 'Inter', sans-serif; } html { scroll-behavior: smooth; } body { font-family: var(--font); color: var(--text-dark); background: var(--bg-white); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; } img { max-width: 100%; display: block; } a { text-decoration: none; color: inherit; } ul { list-style: none; } /* ---------- CONTAINER ---------- */ .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; } /* ---------- SECTION ---------- */ .section { padding: 96px 0; } .bg-white { background: var(--bg-white); } .bg-light { background: var(--bg-light); } .section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; } .section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); background: rgba(0,91,150,0.08); padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; } .section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; } .section-desc { font-size: 17px; color: var(--text-mid); line-height: 1.7; } /* ---------- BUTTONS ---------- */ .btn { display: inline-block; padding: 14px 28px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); font-family: var(--font); } .btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); } .btn-primary:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); } .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); } .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; } .btn-white { background: #fff; color: var(--navy); border-color: #fff; width: 100%; text-align: center; padding: 16px; font-size: 16px; } .btn-white:hover { background: var(--bg-light); transform: translateY(-2px); } /* ---------- BADGE ---------- */ .badge { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.4); padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; } .badge-light { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.5); } /* ---------- TWO-COL LAYOUT ---------- */ .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } .two-col-reverse { direction: rtl; } .two-col-reverse > * { direction: ltr; } .col-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 16px; } .col-text p:last-of-type { margin-bottom: 24px; } /* ---------- NAVBAR ---------- */ .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; transition: background var(--transition), box-shadow var(--transition); } .navbar.scrolled { background: rgba(4,25,56,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.3); } .nav-inner { display: flex; align-items: center; gap: 32px; height: 72px; } .nav-logo { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.5px; flex-shrink: 0; } .nav-links { display: flex; gap: 28px; flex: 1; } .nav-links a { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; transition: color var(--transition); } .nav-links a:hover { color: #fff; } .nav-cta { background: var(--blue-light); color: #fff; border: none; padding: 10px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--transition); font-family: var(--font); flex-shrink: 0; } .nav-cta:hover { background: var(--blue); transform: translateY(-1px); } .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; } .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); } /* ---------- HERO ---------- */ .hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; } .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; } .hero-overlay { position: absolute; inset: 0; background: linear-gradient( 135deg, rgba(4,25,56,0.85) 0%, rgba(7,43,74,0.75) 50%, rgba(0,91,150,0.60) 100% ); z-index: 1; } .hero-content { position: relative; z-index: 2; max-width: 800px; padding-top: 80px; } .hero-title { font-size: clamp(40px, 7vw, 80px); font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -1px; margin-bottom: 20px; } .hero-sub { font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,0.9); font-weight: 500; margin-bottom: 16px; line-height: 1.5; } .hero-desc { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 600px; margin-bottom: 40px; line-height: 1.7; } .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; } .hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.5); font-size: 24px; animation: bounce 2s infinite; } @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } } /* ---------- STATS ---------- */ .col-stats { display: flex; align-items: center; } .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; } .stat-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); } .stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); } .stat-number { font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; } .stat-label { font-size: 13px; color: var(--text-mid); font-weight: 500; } /* ---------- SERVICES ---------- */ .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; } .service-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--border); transition: all var(--transition); } .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); } .service-icon { font-size: 36px; margin-bottom: 16px; } .service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; } .service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; } /* ---------- BANNER ---------- */ .section-banner { position: relative; padding: 120px 0; text-align: center; overflow: hidden; } .banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; } .banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,25,56,0.88), rgba(0,91,150,0.75)); z-index: 1; } .banner-content { position: relative; z-index: 2; } .banner-title { font-size: clamp(28px, 5vw, 52px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; } .banner-desc { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; line-height: 1.6; } /* ---------- PRODUCTS ---------- */ .product-section { padding: 80px 0; } .product-label { margin-bottom: 8px; } .product-subtitle { font-size: 18px; color: var(--blue); font-weight: 600; margin-bottom: 16px; margin-top: -8px; } .product-img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); } .feature-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; } .feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-dark); } .feature-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; } /* ---------- CLIENTS ---------- */ .clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; } .client-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 1px solid var(--border); transition: all var(--transition); } .client-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-light); } .client-icon { font-size: 32px; margin-bottom: 12px; } .client-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; } .client-type { font-size: 12px; color: var(--text-mid); } /* ---------- WHY US ---------- */ .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .why-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 36px 28px; border-left: 4px solid var(--blue); transition: all var(--transition); } .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--navy); } .why-card:hover h3, .why-card:hover p { color: #fff; } .why-card:hover .why-number { color: var(--blue-light); } .why-number { font-size: 48px; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 16px; transition: color var(--transition); } .why-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; transition: color var(--transition); } .why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; transition: color var(--transition); } /* ---------- CONTACT ---------- */ .contact-cols { align-items: flex-start; gap: 48px; } .contact-info { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; } .contact-info li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-mid); } .contact-info li span { font-size: 18px; } .contact-info a { color: var(--blue); } .contact-info a:hover { text-decoration: underline; } .contact-cta-box { background: var(--navy); border-radius: var(--radius-lg); padding: 40px 36px; color: #fff; } .contact-cta-box h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; } .contact-cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 15px; line-height: 1.6; } .contact-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; } .contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-size: 14px; font-family: var(--font); transition: border-color var(--transition); outline: none; } .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.45); } .contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue-light); } .contact-form textarea { resize: vertical; } .contact-note { font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 8px; } /* ---------- FOOTER ---------- */ .footer { background: var(--navy-dark); color: var(--text-light); padding: 64px 0 32px; } .footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; } .footer-logo { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; } .footer-tagline { font-size: 13px; color: var(--text-light); line-height: 1.6; max-width: 280px; } .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; } .footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; } .footer-col ul { display: flex; flex-direction: column; gap: 10px; } .footer-col a, .footer-col li { font-size: 13px; color: var(--text-light); transition: color var(--transition); } .footer-col a:hover { color: var(--blue-light); } .footer-bottom { text-align: center; font-size: 12px; color: rgba(160,184,208,0.5); } /* ---------- SCROLL ANIMATIONS ---------- */ .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; } .fade-in.visible { opacity: 1; transform: translateY(0); } /* ---------- RESPONSIVE ---------- */ @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .clients-grid { grid-template-columns: repeat(4, 1fr); } .why-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .section { padding: 64px 0; } .nav-links, .nav-cta { display: none; } .hamburger { display: flex; } .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-dark); padding: 24px; gap: 20px; z-index: 999; } .two-col, .two-col-reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; } .two-col-reverse .col-image { order: -1; } .stats-grid { grid-template-columns: 1fr 1fr; } .services-grid { grid-template-columns: 1fr; } .clients-grid { grid-template-columns: repeat(2, 1fr); } .why-grid { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; gap: 40px; } .footer-links { grid-template-columns: 1fr 1fr; } .contact-cols { grid-template-columns: 1fr; } .hero-title { font-size: 40px; } .hero-btns { flex-direction: column; } .hero-btns .btn { text-align: center; } } @media (max-width: 480px) { .clients-grid { grid-template-columns: 1fr 1fr; } .footer-links { grid-template-columns: 1fr; } .stats-grid { grid-template-columns: 1fr 1fr; } }