 :root { --color-primary: #D4AF37; --color-primary-dark: #B5952F; --color-text-main: #1A1A1A; --color-text-light: #666666; --color-bg-light: #F9F9F9; --color-bg-white: #FFFFFF; --color-bg-dark: #121212; --color-border: #E5E5E5; --font-main: 'Manrope', sans-serif; --container-width: 1200px; --spacing-xs: 0.5rem; --spacing-sm: 1rem; --spacing-md: 2rem; --spacing-lg: 4rem; --spacing-xl: 8rem; --transition-base: all 0.3s ease; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: var(--font-main); color: var(--color-text-main); line-height: 1.6; background-color: var(--color-bg-white); -webkit-font-smoothing: antialiased; } img { max-width: 100%; display: block; } a { text-decoration: none; color: inherit; transition: var(--transition-base); } ul { list-style: none; } /* ======================================== ACCESSIBILITY IMPROVEMENTS ======================================== */ :focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; } :focus:not(:focus-visible) { outline: none; } .skip-link { position: absolute; left: -9999px; top: auto; z-index: 9999; padding: 1rem 2rem; background: var(--color-primary); color: var(--color-bg-dark); font-weight: 600; text-decoration: none; border-radius: 4px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } .skip-link:focus { left: 1rem; top: 1rem; } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } .icon { display: inline-block; width: 1em; height: 1em; vertical-align: middle; fill: currentColor; transition: var(--transition-base); } h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: var(--spacing-sm); } h1 { font-size: 3.5rem; letter-spacing: -0.02em; } h2 { font-size: 2.5rem; letter-spacing: -0.01em; } h3 { font-size: 1.75rem; } .text-gold { color: var(--color-primary); } .container { width: 90%; max-width: var(--container-width); margin: 0 auto; padding: 0 var(--spacing-sm); } section { padding: var(--spacing-lg) 0; } .page-header { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-md); background: var(--color-bg-white); } .page-title { font-size: 4rem; line-height: 1.1; color: var(--color-text-main); margin-bottom: 2rem; max-width: 800px; } .page-subtitle { font-size: 1.25rem; color: var(--color-text-light); max-width: 600px; line-height: 1.6; } .reveal-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .grid-asymmetric { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } @media (max-width: 768px) { .grid-asymmetric { grid-template-columns: 1fr; gap: 2rem; } .page-title { font-size: 2.5rem; } } .site-header { background: var(--glass-bg); backdrop-filter: var(--premium-blur); -webkit-backdrop-filter: var(--premium-blur); border-bottom: 1px solid rgba(0, 0, 0, 0.08); position: sticky; top: 0; z-index: 2004; padding: var(--spacing-sm) 0; transition: box-shadow 0.3s ease; } body.menu-open .site-header { box-shadow: none !important; border-bottom: 0 !important; } .header-inner { display: flex; justify-content: space-between; align-items: center; } .logo { display: flex; align-items: center; gap: 0.8rem; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; text-decoration: none; color: var(--color-text-main); } .brand-logo { height: 40px; width: auto; } .logo span { color: var(--color-primary); } .nav-menu { display: flex; gap: var(--spacing-md); } .nav-link { font-weight: 500; font-size: 0.95rem; position: relative; transition: color 0.3s ease, transform 0.3s ease; display: inline-block; color: var(--color-text-main); text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); } .nav-link:hover { color: #9B7F3C; transform: translateX(5px); } .btn { display: inline-block; padding: 12px 28px; font-weight: 600; border-radius: 4px; cursor: pointer; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; transition: var(--transition-base); } .btn-primary { background-color: var(--color-primary); color: var(--color-bg-dark); border: 1px solid var(--color-primary); } .btn-primary:hover { background-color: var(--color-primary-dark); border-color: var(--color-primary-dark); } .text-center { text-align: center; } .mb-1 { margin-bottom: var(--spacing-sm); } .mb-2 { margin-bottom: var(--spacing-md); } .mb-3 { margin-bottom: var(--spacing-lg); } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: var(--spacing-lg); } .pt-5 { padding-top: var(--spacing-lg); } .pb-5 { padding-bottom: var(--spacing-lg); } .pt-10 { padding-top: var(--spacing-xl); } .pb-10 { padding-bottom: var(--spacing-xl); } .sector-card .icon { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--color-primary); transition: transform 0.3s ease, color 0.3s ease; } .sector-card:hover .icon { transform: translateY(-5px); } .footer-contact .icon { font-size: 1.2rem; margin-right: 0.8rem; color: var(--color-primary); flex-shrink: 0; margin-top: 0.1em; } .social-links .icon { font-size: 1.2rem; } .mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; background: none; border: none; color: var(--color-text-main); z-index: 2003; position: relative; transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); } .mobile-toggle:active { transform: scale(0.9); } .mobile-toggle .icon { transition: transform 0.3s ease, opacity 0.2s ease; } @media (min-width: 851px) { .dropdown-icon { display: none; } } @media (max-width: 850px) { .mobile-toggle { display: block; } .nav-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--color-bg-white); flex-direction: column; padding: 5rem 0 2rem; box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1); border-left: 1px solid rgba(0, 0, 0, 0.08); transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 2002; overflow-y: auto; -webkit-overflow-scrolling: touch; gap: 0; } .nav-menu.active { right: 0; } .nav-menu li { margin-bottom: 0; width: 100%; border-bottom: 1px solid rgba(0, 0, 0, 0.05); } .nav-menu li:last-child { border-bottom: none; } .nav-link { font-size: 1rem; font-weight: 600; padding: 1.2rem 2rem; display: flex; align-items: center; width: 100%; min-height: 60px; color: var(--color-text-main); } .dropdown>.nav-link { display: flex; justify-content: space-between; align-items: center; } .dropdown>.nav-link .dropdown-icon { display: block; margin-left: auto; font-size: 1rem !important; } .dropdown.active>.nav-link .dropdown-icon { transform: rotate(180deg); } .dropdown-menu { position: static; display: none; width: 100%; background: #fdfdfd; box-shadow: none; border: none; border-left: 3px solid var(--color-primary); padding: 0; margin: 0; overflow: hidden; animation: slideDownFade 0.3s ease forwards; } @keyframes slideDownFade { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .dropdown.active .dropdown-menu { display: block; } .dropdown-menu li { border-bottom: 1px solid rgba(0, 0, 0, 0.03); opacity: 0; animation: fadeInItem 0.4s ease forwards; } .nav-menu li { opacity: 0; transform: translateX(20px); transition: opacity 0.4s ease, transform 0.4s ease; } .nav-menu.active li { opacity: 1; transform: translateX(0); } .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; } .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; } .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; } .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; } @keyframes fadeInItem { to { opacity: 1; } } .dropdown-menu a { padding: 1rem 3rem; font-size: 0.95rem; font-weight: 500; } .dropdown .dropdown-menu { display: none !important; } .dropdown.active .dropdown-menu { display: block !important; } .dropdown.active .dropdown-icon { transform: rotate(180deg); } body.menu-open { overflow: hidden; } .nav-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.25); z-index: 2001; visibility: hidden; opacity: 0; transition: opacity 0.4s ease, visibility 0.4s ease; pointer-events: none; backdrop-filter: blur(3px); } body.menu-open .nav-overlay { visibility: visible; opacity: 1; pointer-events: auto; } body.menu-open { overflow: hidden; } } .dropdown { position: relative; } .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--color-bg-white); min-width: 200px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); border-top: 2px solid var(--color-primary); padding: 0; z-index: 1001; } .wave-section { display: none; } .wave-container { position: absolute; width: 200%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYwMCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDE2MDAgNTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMjBoMTYwMHYyMEgwVjIwIiBmaWxsPSIjRkZGRkZGIi8+PC9zdmc+'); background-size: cover; animation: waveMove 12s linear infinite; } @keyframes waveMove { from { transform: translateX(0); } to { transform: translateX(-50%); } } .dropdown-menu li { border-bottom: 1px solid var(--color-border); } .dropdown-menu li:last-child { border-bottom: none; } .dropdown-menu a { display: block; padding: 12px 20px; font-size: 0.9rem; color: var(--color-text-main); } .dropdown-menu a:hover { background: var(--color-bg-light); color: var(--color-primary); } @media (min-width: 992px) { .dropdown:hover .dropdown-menu { display: block; } } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; padding: 3rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); } .stat-item { text-align: center; } .stat-number { font-size: 3rem; font-weight: 800; color: var(--color-primary); line-height: 1; margin-bottom: 0.5rem; } .stat-label { text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; color: var(--color-text-light); } .services-list-container { display: flex; flex-direction: column; border-top: 1px solid rgba(0, 0, 0, 0.1); } .service-list-item { display: flex; align-items: center; justify-content: space-between; padding: 3rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.1); transition: background-color 0.4s ease, padding 0.4s ease; text-decoration: none; color: inherit; position: relative; cursor: pointer; } .service-list-item:hover { background-color: #f9f9f9; padding-left: 2rem; padding-right: 2rem; } .service-item-index { font-size: 1.5rem; font-weight: 400; color: #ccc; width: 60px; flex-shrink: 0; } .service-item-content { flex-grow: 1; display: grid; grid-template-columns: 2fr 3fr; align-items: center; gap: 4rem; } .service-item-title { font-size: 3.5rem; font-weight: 300; margin: 0; line-height: 1; color: var(--color-text-main); transition: color 0.3s ease; min-width: 300px; } .service-list-item:hover .service-item-title { color: #000; } .service-item-desc { max-width: 400px; font-size: 1rem; color: #666; margin: 0; font-weight: 400; display: none; } @media (min-width: 992px) { .service-item-desc { display: block; width: 450px; max-width: 100%; margin-left: auto; margin-right: 4rem; text-align: left; } } .service-item-arrow { font-size: 2rem; color: #ccc; transition: transform 0.4s ease, color 0.4s ease; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; } .service-list-item:hover .service-item-arrow { transform: translateX(10px) translateY(-5px); color: var(--color-primary); } @media (max-width: 768px) { .service-item-title { font-size: 2rem; } .service-item-content { flex-direction: column; gap: 0.5rem; } .service-item-desc { display: block; font-size: 0.9rem; margin: 0; } } .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } .sector-card { background: #ffffff; padding: 2.5rem; border-radius: 24px; border: 1px solid #eaeaea; display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; color: inherit; transition: all 0.3s ease; height: 100%; } .sector-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); border-color: #e0e0e0; transition-delay: 0s !important; } .sector-icon { width: 60px; height: 60px; border-radius: 50%; #splash-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--color-bg-white); z-index: 9999; display: flex; justify-content: center; align-items: center; flex-direction: column; transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; } #splash-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; } .splash-content { text-align: center; position: relative; z-index: 2; } .splash-logo { width: 120px; height: auto; margin-bottom: 2rem; animation: logoPulse 2s infinite ease-in-out; filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); } .splash-loader { width: 40px; height: 40px; border: 3px solid rgba(212, 175, 55, 0.1); border-radius: 50%; border-top-color: var(--color-primary); margin: 0 auto; animation: spin 1s linear infinite; } @keyframes logoPulse { 0% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(1); opacity: 0.8; } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } display: flex; align-items: center; justify-content: flex-start; margin-bottom: 1.5rem; font-size: 2.5rem; color: #000; } .sector-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; color: #000; line-height: 1.2; } .sector-desc { font-size: 1rem; color: #666; line-height: 1.6; margin: 0; } .feature-card { background: var(--color-bg-white); padding: 2.5rem; border: 1px solid var(--color-border); transition: var(--transition-base); } .feature-card:hover { transform: translateY(-5px); border-color: var(--color-primary); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); } .form-group { margin-bottom: 1.5rem; } .form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--color-text-main); } .form-control { width: 100%; padding: 15px; border: 1px solid var(--color-border); background: var(--color-bg-light); border-radius: 2px; font-family: inherit; font-size: 1rem; transition: var(--transition-base); } .form-control:focus { outline: none; border-color: var(--color-primary); background: var(--color-bg-white); } textarea.form-control { resize: vertical; min-height: 120px; } .map-container { width: 100%; height: 400px; background: #ccc; position: relative; overflow: hidden; } .project-grid-asym { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4rem 2rem; align-items: start; padding-bottom: 4rem; } .project-item { display: block; text-decoration: none; color: var(--color-text-main); } .item-small { grid-column: span 5; margin-top: 4rem; } .item-large { grid-column: span 7; } .item-third { grid-column: span 4; } .item-third:nth-child(2) { margin-top: 6rem; } .project-img-frame { width: 100%; margin-bottom: 1.5rem; overflow: hidden; position: relative; aspect-ratio: 3/4; border-radius: 2px; will-change: transform; transition: clip-path 0.1s linear; } .item-large .project-img-frame { aspect-ratio: 16/9; } .item-third .project-img-frame { aspect-ratio: 3/4; } .parallax-img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transform: translateY(0); filter: saturate(0.8) contrast(0.9); transition: transform 0.1s linear, filter 0.6s cubic-bezier(0.4, 0, 0.2, 1); } .project-item:hover .parallax-img { filter: saturate(1.1) contrast(1.1); } .project-img-frame { position: relative; overflow: hidden; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); } .project-item:hover .project-img-frame { transform: scale(1.03); } .project-img-frame::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at bottom right, rgba(181, 150, 83, 0.15), transparent 70%); opacity: 0; transition: opacity 0.6s ease; pointer-events: none; z-index: 1; } .project-item:hover .project-img-frame::after { opacity: 1; } .project-meta { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 1.5rem; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .project-item:hover .project-meta { transform: translateY(-8px); } .project-text { flex-grow: 1; } .project-meta h4 { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.3rem; } .project-meta span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-light); } .project-icon-box { width: 45px; height: 45px; border: 1px solid var(--color-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--color-text-main); transition: all 0.3s ease; flex-shrink: 0; margin-left: 1rem; } .project-item:hover .project-icon-box { background: var(--color-primary); border-color: var(--color-primary); color: white; transform: rotate(-45deg); } @media (max-width: 900px) { .project-grid-asym { display: flex; flex-direction: column; gap: 3rem; } .item-small, .item-large, .item-third, .item-third:nth-child(2) { width: 100%; margin-top: 0; grid-column: span 12; } .project-img-frame, .item-large .project-img-frame, .item-third .project-img-frame { aspect-ratio: 16/9; } } .project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(500px, 1fr)); gap: 2rem; } .project-card { position: relative; display: block; overflow: hidden; border-radius: 4px; } .project-img-wrap { width: 100%; height: 400px; overflow: hidden; } .project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); } .project-card:hover .project-img-wrap img { transform: scale(1.1); } .project-info { padding: 1.5rem 0; position: relative; z-index: 2; background: var(--color-bg-white); transition: transform 0.3s ease; } .project-card:hover .project-info { transform: translateY(-5px); } .project-cat { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-light); margin-bottom: 0.5rem; } .project-title { font-size: 1.75rem; margin: 0; color: var(--color-text-main); } .scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; } .scroll-reveal.visible { opacity: 1; transform: translateY(0); } @media (max-width: 768px) { .project-grid { grid-template-columns: 1fr; } .project-img-wrap { height: 300px; } } .service-list { display: flex; flex-direction: column; } .service-row { display: flex; justify-content: space-between; align-items: center; padding: 3rem 0; border-bottom: 1px solid var(--color-border); transition: background-color 0.3s ease; text-decoration: none; color: inherit; } .service-row:hover { background-color: var(--color-bg-light); } .service-row-left { flex: 1; display: flex; align-items: baseline; gap: 2rem; } .service-num { font-family: var(--font-main); font-size: 1rem; font-weight: 700; color: var(--color-primary); } .service-row-title { font-size: 2.5rem; font-weight: 700; margin: 0; line-height: 1; transition: transform 0.3s ease; } .service-row:hover .service-row-title { color: var(--color-primary); transform: translateX(10px); } .service-row-desc { flex: 1; max-width: 400px; color: var(--color-text-light); font-size: 1rem; padding-left: 2rem; } .service-row-arrow { width: 50px; height: 50px; border: 1px solid var(--color-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s ease; } .service-row:hover .service-row-arrow { background: var(--color-primary); border-color: var(--color-primary); color: white; } .fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); } .fade-up.visible { opacity: 1; transform: translateY(0); } /* Masked Text Reveal Usage: Wrap text in .reveal-wrap > .reveal-inner */ .reveal-wrap { overflow: hidden; position: relative; display: block; padding-bottom: 0.15em; margin-bottom: -0.15em; } .reveal-inner { display: block; transform: translateY(110%); transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform; } .reveal-wrap.visible .reveal-inner { transform: translateY(0); } .impact-text-large { font-size: 2rem; line-height: 1.3; font-weight: 500; color: var(--color-text-main); } @media (max-width: 768px) { .impact-text-large { font-size: 1.5rem; } } .img-reveal-wrap { overflow: hidden; position: relative; } .img-reveal-inner { transform: scale(1.2); transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1); } .img-reveal-wrap.visible .img-reveal-inner { transform: scale(1); } /* ========================================= RESPONSIVE QUERIES (Consolidated) ========================================= */ @media (max-width: 900px) { h1 { font-size: 2.8rem; } h2 { font-size: 2.2rem; } .page-title { font-size: 2.5rem; } .grid-asymmetric { grid-template-columns: 1fr; gap: 2rem; } .mobile-toggle { display: block; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; } .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--color-bg-white); flex-direction: column; padding: 1rem 0; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); border-top: 1px solid var(--color-border); gap: 0; } .nav-menu.active { display: flex; } .nav-menu li { width: 100%; border-bottom: 1px solid var(--color-bg-light); } .nav-link { display: block; padding: 1rem 2rem; } .service-row { flex-direction: column; align-items: flex-start; gap: 1.5rem; } .service-row-left { width: 100%; justify-content: space-between; } .service-row-desc { padding-left: 0; max-width: 100%; } .service-row-arrow { display: none; } .dropdown .dropdown-menu { display: block; position: static; box-shadow: none; border: none; background: var(--color-bg-light); padding-left: 1rem; } .dropdown-menu a { padding-left: 2rem; font-size: 0.9rem; } } /* ========================================= 3. Generic Components & Cards ========================================= */ .contact-map { filter: grayscale(100%); transition: filter 0.5s ease; } .contact-map:hover { filter: grayscale(0%); } .sector-card .sector-title { transition: color 0.3s ease; } .sector-card:hover .sector-title { color: var(--color-primary); } .sector-card:hover .icon { fill: #000; } .card { background: #fff; border-radius: var(--border-radius-sm); box-shadow: var(--shadow-sm); padding: 2rem; transition: transform 0.3s, box-shadow 0.3s; } /* ========================================= 9. Footer Styles (Premium Dark) ========================================= */ .site-footer { background-color: #111111; color: #ffffff; padding: 5rem 0 0; margin-top: auto; font-size: 0.95rem; } .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 4rem; padding-bottom: 4rem; } .footer-logo { display: flex; align-items: center; gap: 0.8rem; font-size: 1.8rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 1.5rem; text-decoration: none; } .footer-logo span { color: var(--color-primary); } .footer-desc { color: #a0a0a0; line-height: 1.6; margin-bottom: 2rem; max-width: 300px; } .social-links { display: flex; gap: 1rem; } /* ========================================= Social & Platform Icons - Unified "Neutral -> Colorful" Style ========================================= */ .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; transition: all 0.3s ease; text-decoration: none; position: relative; border: 1px solid rgba(255, 255, 255, 0.3); background: transparent; color: #fff; } .icon-sahibinden { font-weight: 800; font-family: sans-serif; font-size: 1.2rem; } .icon-sahibinden:hover { background: #FFD700 !important; border-color: #FFD700 !important; color: #000 !important; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); } .icon-arabam { border-color: #e53935 !important; background: url('../img/arabam-icon.png') no-repeat center center, #e53935 !important; background-blend-mode: normal; background-size: 115% !important; overflow: hidden; border-radius: 50%; filter: grayscale(100%) opacity(0.7); backface-visibility: hidden; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; transform: translate3d(0, 0, 0); } .icon-arabam:hover { filter: grayscale(0%) opacity(1) !important; border-color: #e53935 !important; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4); } .social-links .icon-facebook:hover { background: #1877F2 !important; border-color: #1877F2 !important; color: #fff !important; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4); } .social-links .icon-instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; border-color: transparent !important; color: #fff !important; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(214, 36, 159, 0.4); } .contact-info-block .social-links a, .platform-links-section .social-links a { border-color: rgba(0, 0, 0, 0.2) !important; color: var(--color-text-main) !important; } .contact-info-block .social-links .icon-sahibinden:hover, .platform-links-section .social-links .icon-sahibinden:hover { color: #000 !important; } .contact-info-block .social-links .icon-facebook:hover, .platform-links-section .social-links .icon-facebook:hover { color: #fff !important; } .contact-info-block .social-links .icon-instagram:hover, .platform-links-section .social-links .icon-instagram:hover { color: #fff !important; } .platform-badge { position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); font-size: 0.55rem; padding: 1px 4px; border-radius: 3px; font-weight: 800; text-transform: uppercase; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); line-height: 1; white-space: nowrap; z-index: 2; transition: opacity 0.3s; } /* Optional: Make badge colors pop on hover too? Currently they are static, which is good for readability. */ .badge-emlak { background: #2c3e50; color: #fff; border: 1px solid #fff; } .badge-oto { background: #fff; color: #000; border: 1px solid #999; } .footer-nav h4, .footer-contact h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 600; } .footer-nav ul { list-style: none; padding: 0; } .footer-nav li { margin-bottom: 0.8rem; } .footer-nav a { color: #a0a0a0; text-decoration: none; transition: 0.3s; font-weight: 400; } .footer-nav a:hover { color: var(--color-primary); padding-left: 5px; } .contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; color: #a0a0a0; } .contact-item i { color: var(--color-primary); margin-top: 4px; } .contact-item a { color: #a0a0a0; text-decoration: none; transition: 0.3s; } .contact-item a:hover { color: #fff; } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 2rem 0; display: flex; justify-content: center; align-items: center; color: #666; font-size: 0.85rem; } .footer-legal { display: flex; gap: 1.5rem; } .footer-legal a { color: #666; text-decoration: none; transition: 0.3s; } .footer-legal a:hover { color: #fff; } @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; } .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } } /* ========================================= 10. Animations ========================================= */ @keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } } .text-shimmer { background: linear-gradient(-60deg, #333 30%, #C5A47E 40%, #f5e6d3 50%, #C5A47E 60%, #333 70%) 0 0 / 250% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; background-position: var(--shimmer-pos, 0%) 50%; font-weight: 700; will-change: background-position; transition: background-position 0.1s linear; } /* ========================================= 11. Refactored Utilities (Clean Code) ========================================= */ .contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; } .contact-info-block { margin-bottom: 3rem; } .contact-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; color: var(--color-text-light); font-weight: 700; } .contact-text { font-size: 1.1rem; line-height: 1.6; } .clean-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; } .clean-input { background: white; border: none; border-bottom: 1px solid #ddd; padding: 1rem 0; border-radius: 0; width: 100%; transition: border-color 0.3s; } .clean-input:focus { outline: none; border-bottom-color: var(--color-primary); } .form-label-sm { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 0.5rem; } .success-box { background: #f0fff4; color: #276749; padding: 1.5rem; border: 1px solid #c6f6d5; } .about-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; justify-items: start; border: none; padding: 0; } .about-stat-item { text-align: left; } .about-stat-number { font-size: 2.5rem; color: var(--color-primary); font-weight: 700; } .about-stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; } .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; } .value-card { background: white; padding: 3rem; border-top: 2px solid var(--color-primary); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03); transition: transform 0.3s; } .value-card:hover { transform: translateY(-5px); } .value-card.dark-border { border-top-color: var(--color-bg-dark); } @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } .clean-form-grid { grid-template-columns: 1fr; gap: 1.5rem; } } .about-hero-img { height: 700px; overflow: hidden; position: relative; } .about-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; } .about-content { padding-left: 2rem; } .values-section { background: var(--color-bg-light); } @media (max-width: 900px) { .about-hero-img { height: 450px; margin-bottom: 2rem; } .about-content { padding-left: 0; } } .mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem; margin-bottom: 4rem; } .mv-card { padding: 2.5rem; background: #f9f9f9; border-top: 3px solid var(--color-primary); position: relative; border-radius: var(--border-radius-sm); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); } .mv-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); border-top-width: 5px; } .mv-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--color-text-main); } .mv-card p { color: var(--color-text-light); line-height: 1.6; } @media (max-width: 900px) { .left-col-fix { padding-bottom: 2rem; } .mission-vision-grid { grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; margin-bottom: 2rem; } } .home-hero { position: relative; height: 90vh; overflow: hidden; display: flex; align-items: center; } .hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(0.4); } .hero-overlay { position: relative; z-index: 2; } .hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; color: white; } .hero-desc { font-size: 1.2rem; max-width: 600px; opacity: 0.9; color: white; margin-bottom: 2.5rem; } .btn-outline-white { border: 1px solid white; color: white; margin-left: 1rem; } .home-vision-section { background: var(--color-bg-white); padding: 8rem 0 10rem 0; } .vision-left-col { padding-top: 1rem; } .experience-block { border-left: 2px solid var(--color-primary); padding-left: 1.5rem; } .exp-year { display: block; font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--color-primary); } .exp-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-light); } .vision-tagline { margin-top: 2rem; opacity: 0.7; font-size: 0.9rem; } .vision-pill { display: inline-block; border: 1px solid var(--color-text-main); border-radius: 50px; padding: 10px 24px; margin-bottom: 2rem; font-size: 0.9rem; font-weight: 500; } .vision-subtext { color: var(--color-text-light); font-size: 0.8em; display: block; margin-top: 1rem; font-weight: 400; } .home-sector-bg { background-color: #f9f9f9; } .section-label { color: var(--color-primary); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 0.5rem; } .section-title-dark { font-size: 2.5rem; color: #000; } .home-project-section { background: var(--color-bg-white); padding-top: 5rem; } .project-header-flex { margin-bottom: 4rem; display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 2rem; } .project-header-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; } .stagger-margin { margin-top: 5rem; } @media (max-width: 900px) { .home-hero { height: auto; min-height: 500px; padding: 6rem 0; } .hero-title { font-size: 2.5rem; } .hero-desc { font-size: 1rem; } .btn-outline-white { margin-left: 0; margin-top: 1rem; display: inline-block; } .grid-asymmetric { grid-template-columns: 1fr; gap: 2rem; } .vision-left-col { border-bottom: 1px solid #ddd; padding-bottom: 2rem; margin-bottom: 2rem; } .experience-block { border-left: none; padding-left: 0; text-align: center; } .exp-year { font-size: 3rem; } .project-header-flex { flex-direction: column; align-items: flex-start; gap: 1rem; } .stagger-margin { margin-top: 0; } .project-grid-ratko { display: flex; flex-direction: column; gap: 2rem; } .project-item { width: 100%; margin-top: 0 !important; } } #splash-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--color-bg-white); z-index: 9999; display: flex; justify-content: center; align-items: center; flex-direction: column; transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; } #splash-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; } .splash-content { text-align: center; position: relative; z-index: 2; } .splash-logo { width: 120px; height: auto; margin-bottom: 2rem; animation: logoReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); opacity: 0; } .splash-loader { width: 40px; height: 40px; border: 3px solid rgba(212, 175, 55, 0.1); border-radius: 50%; border-top-color: var(--color-primary); margin: 0 auto; animation: spin 1s linear infinite; } @keyframes logoReveal { 0% { transform: scale(0.8) translateY(20px); opacity: 0; } 100% { transform: scale(1) translateY(0); opacity: 1; } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* ============================================ Lightbox Styles ============================================ */ .lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } .lightbox.active { opacity: 1; visibility: visible; } .lightbox-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(20px); cursor: pointer; } .lightbox-content { position: relative; z-index: 10001; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; animation: lightboxZoom 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding: 0 20px; } @keyframes lightboxZoom { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } } .lightbox-image { max-width: 100%; max-height: 70vh; width: auto; height: auto; object-fit: contain; border-radius: 2px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8); } .lightbox-caption { margin-top: 2rem; padding: 1rem 2rem; background: rgba(20, 20, 20, 0.9); border: 1px solid var(--color-primary); border-radius: 2px; font-size: 0.95rem; font-weight: 500; color: #ffffff; text-align: center; max-width: 600px; backdrop-filter: blur(10px); letter-spacing: 0.5px; } .lightbox-close { position: fixed; top: 20px; right: 20px; width: 48px; height: 48px; background: rgba(20, 20, 20, 0.9); border: 1px solid var(--color-primary); border-radius: 2px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; transition: all 0.3s ease; backdrop-filter: blur(10px); z-index: 10002; } .lightbox-close:hover { background: var(--color-primary); border-color: var(--color-primary); transform: rotate(90deg); } .lightbox-close svg { width: 20px; height: 20px; } @media (max-width: 768px) { .lightbox-content { max-width: 100vw; max-height: 100vh; padding: 0 10px; } .lightbox-image { max-height: 60vh; max-width: 100%; } .lightbox-close { top: 10px; right: 10px; width: 44px; height: 44px; background: rgba(20, 20, 20, 0.95); border-color: var(--color-primary); } .lightbox-caption { font-size: 0.85rem; padding: 0.75rem 1rem; margin-top: 1rem; max-width: 90vw; } } .cf-turnstile { display: flex; justify-content: flex-end; margin-bottom: 2rem; } @media (max-width: 768px) { .cf-turnstile { justify-content: center; } }