Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Margins Developments - Innovative Real Estate Solutions</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet"> | |
| <style> | |
| :root { | |
| --color-primary: #0a1628; | |
| --color-secondary: #1a3a52; | |
| --color-accent: #c9a87c; | |
| --color-accent-light: #d4b896; | |
| --color-white: #ffffff; | |
| --color-cream: #f8f6f3; | |
| --color-text: #2d3748; | |
| --color-text-light: #718096; | |
| --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1); | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| html { | |
| scroll-behavior: smooth; | |
| } | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| color: var(--color-text); | |
| background-color: var(--color-white); | |
| line-height: 1.6; | |
| overflow-x: hidden; | |
| } | |
| h1, h2, h3, h4, h5, h6 { | |
| font-family: 'Cormorant Garamond', serif; | |
| font-weight: 600; | |
| line-height: 1.2; | |
| } | |
| /* Preloader */ | |
| .preloader { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: var(--color-primary); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| z-index: 9999; | |
| transition: opacity 0.8s var(--transition-smooth), visibility 0.8s; | |
| } | |
| .preloader.hidden { | |
| opacity: 0; | |
| visibility: hidden; | |
| } | |
| .preloader-text { | |
| font-family: 'Cormorant Garamond', serif; | |
| font-size: clamp(2rem, 5vw, 4rem); | |
| color: var(--color-white); | |
| letter-spacing: 0.2em; | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0%, 100% { opacity: 1; } | |
| 50% { opacity: 0.5; } | |
| } | |
| /* Navigation */ | |
| .navbar { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| z-index: 1000; | |
| padding: 1.5rem 3rem; | |
| transition: all 0.4s var(--transition-smooth); | |
| } | |
| .navbar.scrolled { | |
| background: rgba(10, 22, 40, 0.98); | |
| backdrop-filter: blur(20px); | |
| padding: 1rem 3rem; | |
| box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); | |
| } | |
| .nav-container { | |
| max-width: 1600px; | |
| margin: 0 auto; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .logo { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.75rem; | |
| text-decoration: none; | |
| } | |
| .logo-icon { | |
| width: 45px; | |
| height: 45px; | |
| background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%); | |
| border-radius: 8px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| transform: rotate(45deg); | |
| } | |
| .logo-icon-inner { | |
| width: 20px; | |
| height: 20px; | |
| background: var(--color-primary); | |
| transform: rotate(-45deg); | |
| } | |
| .logo-text { | |
| font-family: 'Cormorant Garamond', serif; | |
| font-size: 1.5rem; | |
| font-weight: 600; | |
| color: var(--color-white); | |
| letter-spacing: 0.05em; | |
| } | |
| .nav-links { | |
| display: flex; | |
| gap: 3rem; | |
| list-style: none; | |
| } | |
| .nav-link { | |
| text-decoration: none; | |
| color: rgba(255, 255, 255, 0.9); | |
| font-size: 0.875rem; | |
| font-weight: 500; | |
| letter-spacing: 0.05em; | |
| text-transform: uppercase; | |
| position: relative; | |
| padding: 0.5rem 0; | |
| transition: color 0.3s ease; | |
| } | |
| .nav-link::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: 0; | |
| left: 0; | |
| width: 0; | |
| height: 2px; | |
| background: var(--color-accent); | |
| transition: width 0.3s var(--transition-smooth); | |
| } | |
| .nav-link:hover { | |
| color: var(--color-white); | |
| } | |
| .nav-link:hover::after { | |
| width: 100%; | |
| } | |
| .nav-cta { | |
| display: flex; | |
| align-items: center; | |
| gap: 1.5rem; | |
| } | |
| .contact-btn { | |
| padding: 0.875rem 2rem; | |
| background: transparent; | |
| border: 1px solid rgba(255, 255, 255, 0.3); | |
| color: var(--color-white); | |
| font-size: 0.8125rem; | |
| font-weight: 500; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| cursor: pointer; | |
| transition: all 0.4s var(--transition-smooth); | |
| } | |
| .contact-btn:hover { | |
| background: var(--color-accent); | |
| border-color: var(--color-accent); | |
| } | |
| .mobile-menu-btn { | |
| display: none; | |
| flex-direction: column; | |
| gap: 6px; | |
| background: none; | |
| border: none; | |
| cursor: pointer; | |
| padding: 0.5rem; | |
| } | |
| .mobile-menu-btn span { | |
| width: 28px; | |
| height: 2px; | |
| background: var(--color-white); | |
| transition: all 0.3s ease; | |
| } | |
| /* Hero Section */ | |
| .hero { | |
| position: relative; | |
| height: 100vh; | |
| min-height: 900px; | |
| display: flex; | |
| align-items: center; | |
| overflow: hidden; | |
| } | |
| .hero-bg { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| .hero-bg::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient( | |
| 135deg, | |
| rgba(10, 22, 40, 0.95) 0%, | |
| rgba(10, 22, 40, 0.7) 50%, | |
| rgba(26, 58, 82, 0.5) 100% | |
| ); | |
| z-index: 1; | |
| } | |
| .hero-image { | |
| width: 100%; | |
| height: 100%; | |
| object-fit: cover; | |
| } | |
| .hero-content { | |
| position: relative; | |
| z-index: 2; | |
| max-width: 1600px; | |
| margin: 0 auto; | |
| padding: 0 4rem; | |
| width: 100%; | |
| } | |
| .hero-label { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 1rem; | |
| margin-bottom: 2rem; | |
| } | |
| .hero-label-line { | |
| width: 60px; | |
| height: 1px; | |
| background: var(--color-accent); | |
| } | |
| .hero-label-text { | |
| font-size: 0.75rem; | |
| font-weight: 500; | |
| letter-spacing: 0.2em; | |
| text-transform: uppercase; | |
| color: var(--color-accent-light); | |
| } | |
| .hero-title { | |
| font-size: clamp(3rem, 6vw, 7rem); | |
| font-weight: 400; | |
| color: var(--color-white); | |
| line-height: 1.05; | |
| margin-bottom: 2rem; | |
| } | |
| .hero-title-accent { | |
| color: var(--color-accent); | |
| font-style: italic; | |
| } | |
| .hero-description { | |
| max-width: 550px; | |
| font-size: 1.125rem; | |
| color: rgba(255, 255, 255, 0.75); | |
| line-height: 1.8; | |
| margin-bottom: 3rem; | |
| } | |
| .hero-cta { | |
| display: flex; | |
| gap: 1.5rem; | |
| flex-wrap: wrap; | |
| } | |
| .btn-primary { | |
| padding: 1.25rem 2.5rem; | |
| background: var(--color-accent); | |
| color: var(--color-primary); | |
| font-size: 0.8125rem; | |
| font-weight: 600; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| text-decoration: none; | |
| border: none; | |
| cursor: pointer; | |
| transition: all 0.4s var(--transition-smooth); | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 0.75rem; | |
| } | |
| .btn-primary:hover { | |
| background: var(--color-accent-light); | |
| transform: translateY(-2px); | |
| box-shadow: 0 10px 30px rgba(201, 168, 124, 0.3); | |
| } | |
| .btn-secondary { | |
| padding: 1.25rem 2.5rem; | |
| background: transparent; | |
| color: var(--color-white); | |
| font-size: 0.8125rem; | |
| font-weight: 500; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| text-decoration: none; | |
| border: 1px solid rgba(255, 255, 255, 0.3); | |
| cursor: pointer; | |
| transition: all 0.4s var(--transition-smooth); | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 0.75rem; | |
| } | |
| .btn-secondary:hover { | |
| background: var(--color-white); | |
| color: var(--color-primary); | |
| border-color: var(--color-white); | |
| } | |
| .hero-stats { | |
| position: absolute; | |
| bottom: 4rem; | |
| right: 4rem; | |
| display: flex; | |
| gap: 4rem; | |
| z-index: 2; | |
| } | |
| .stat-item { | |
| text-align: right; | |
| } | |
| .stat-number { | |
| font-family: 'Cormorant Garamond', serif; | |
| font-size: 3.5rem; | |
| font-weight: 400; | |
| color: var(--color-white); | |
| line-height: 1; | |
| } | |
| .stat-number span { | |
| color: var(--color-accent); | |
| } | |
| .stat-label { | |
| font-size: 0.75rem; | |
| letter-spacing: 0.15em; | |
| text-transform: uppercase; | |
| color: rgba(255, 255, 255, 0.6); | |
| margin-top: 0.5rem; | |
| } | |
| .hero-scroll { | |
| position: absolute; | |
| bottom: 4rem; | |
| left: 4rem; | |
| z-index: 2; | |
| } | |
| .scroll-indicator { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 1rem; | |
| cursor: pointer; | |
| } | |
| .scroll-text { | |
| font-size: 0.6875rem; | |
| letter-spacing: 0.2em; | |
| text-transform: uppercase; | |
| color: rgba(255, 255, 255, 0.6); | |
| writing-mode: vertical-rl; | |
| text-orientation: mixed; | |
| transform: rotate(180deg); | |
| } | |
| .scroll-line { | |
| width: 1px; | |
| height: 60px; | |
| background: rgba(255, 255, 255, 0.3); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .scroll-line::after { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 50%; | |
| background: var(--color-accent); | |
| animation: scrollBounce 2s infinite; | |
| } | |
| @keyframes scrollBounce { | |
| 0%, 100% { transform: translateY(-100%); } | |
| 50% { transform: translateY(200%); } | |
| } | |
| /* About Section */ | |
| .section { | |
| padding: 8rem 4rem; | |
| position: relative; | |
| } | |
| .section-header { | |
| max-width: 1600px; | |
| margin: 0 auto 5rem; | |
| display: grid; | |
| grid-template-columns: 1fr 2fr; | |
| gap: 4rem; | |
| align-items: start; | |
| } | |
| .section-label { | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| } | |
| .section-label-line { | |
| width: 50px; | |
| height: 1px; | |
| background: var(--color-accent); | |
| } | |
| .section-label-text { | |
| font-size: 0.75rem; | |
| font-weight: 500; | |
| letter-spacing: 0.2em; | |
| text-transform: uppercase; | |
| color: var(--color-accent); | |
| } | |
| .section-title { | |
| font-size: clamp(2.5rem, 4vw, 4rem); | |
| font-weight: 400; | |
| color: var(--color-primary); | |
| line-height: 1.15; | |
| } | |
| .about-content { | |
| max-width: 1600px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: 1fr 1.2fr; | |
| gap: 5rem; | |
| align-items: center; | |
| } | |
| .about-image-wrapper { | |
| position: relative; | |
| } | |
| .about-image-main { | |
| width: 100%; | |
| height: 600px; | |
| object-fit: cover; | |
| border-radius: 4px; | |
| } | |
| .about-image-accent { | |
| position: absolute; | |
| bottom: -40px; | |
| right: -40px; | |
| width: 250px; | |
| height: 180px; | |
| object-fit: cover; | |
| border-radius: 4px; | |
| box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); | |
| } | |
| .about-text { | |
| padding-left: 2rem; | |
| } | |
| .about-lead { | |
| font-size: 1.375rem; | |
| color: var(--color-primary); | |
| line-height: 1.7; | |
| margin-bottom: 2rem; | |
| font-weight: 400; | |
| } | |
| .about-description { | |
| color: var(--color-text-light); | |
| margin-bottom: 2.5rem; | |
| line-height: 1.9; | |
| } | |
| .about-features { | |
| display: grid; | |
| grid-template-columns: repeat(2, 1fr); | |
| gap: 2rem; | |
| margin-bottom: 3rem; | |
| } | |
| .feature-item { | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 1rem; | |
| } | |
| .feature-icon { | |
| width: 48px; | |
| height: 48px; | |
| background: var(--color-cream); | |
| border-radius: 8px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| flex-shrink: 0; | |
| } | |
| .feature-icon svg { | |
| width: 24px; | |
| height: 24px; | |
| stroke: var(--color-accent); | |
| } | |
| .feature-text h4 { | |
| font-size: 1rem; | |
| color: var(--color-primary); | |
| margin-bottom: 0.25rem; | |
| } | |
| .feature-text p { | |
| font-size: 0.875rem; | |
| color: var(--color-text-light); | |
| } | |
| /* Projects Section */ | |
| .projects-section { | |
| background: var(--color-cream); | |
| padding: 8rem 4rem; | |
| } | |
| .projects-header { | |
| max-width: 1600px; | |
| margin: 0 auto 4rem; | |
| text-align: center; | |
| } | |
| .projects-header .section-title { | |
| max-width: 800px; | |
| margin: 0 auto; | |
| } | |
| .projects-grid { | |
| max-width: 1600px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: repeat(3, 1fr); | |
| gap: 2rem; | |
| } | |
| .project-card { | |
| position: relative; | |
| background: var(--color-white); | |
| border-radius: 4px; | |
| overflow: hidden; | |
| box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); | |
| transition: all 0.5s var(--transition-smooth); | |
| cursor: pointer; | |
| } | |
| .project-card:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); | |
| } | |
| .project-image { | |
| position: relative; | |
| height: 320px; | |
| overflow: hidden; | |
| } | |
| .project-image img { | |
| width: 100%; | |
| height: 100%; | |
| object-fit: cover; | |
| transition: transform 0.8s var(--transition-smooth); | |
| } | |
| .project-card:hover .project-image img { | |
| transform: scale(1.1); | |
| } | |
| .project-overlay { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 60%); | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: flex-end; | |
| padding: 2rem; | |
| opacity: 0; | |
| transition: opacity 0.4s ease; | |
| } | |
| .project-card:hover .project-overlay { | |
| opacity: 1; | |
| } | |
| .project-status { | |
| position: absolute; | |
| top: 1.5rem; | |
| left: 1.5rem; | |
| padding: 0.5rem 1rem; | |
| background: var(--color-accent); | |
| color: var(--color-primary); | |
| font-size: 0.6875rem; | |
| font-weight: 600; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| } | |
| .project-content { | |
| padding: 2rem; | |
| } | |
| .project-location { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| font-size: 0.8125rem; | |
| color: var(--color-text-light); | |
| margin-bottom: 0.75rem; | |
| } | |
| .project-title { | |
| font-size: 1.5rem; | |
| color: var(--color-primary); | |
| margin-bottom: 0.75rem; | |
| } | |
| .project-description { | |
| font-size: 0.9375rem; | |
| color: var(--color-text-light); | |
| line-height: 1.7; | |
| } | |
| /* Services Section */ | |
| .services-section { | |
| padding: 8rem 4rem; | |
| background: var(--color-primary); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .services-section::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: | |
| radial-gradient(ellipse at 20% 80%, rgba(201, 168, 124, 0.1) 0%, transparent 50%), | |
| radial-gradient(ellipse at 80% 20%, rgba(201, 168, 124, 0.05) 0%, transparent 50%); | |
| } | |
| .services-header { | |
| max-width: 1600px; | |
| margin: 0 auto 5rem; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .services-header .section-title { | |
| color: var(--color-white); | |
| max-width: 700px; | |
| } | |
| .services-grid { | |
| max-width: 1600px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: repeat(4, 1fr); | |
| gap: 2rem; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .service-card { | |
| padding: 2.5rem; | |
| background: rgba(255, 255, 255, 0.03); | |
| border: 1px solid rgba(255, 255, 255, 0.08); | |
| border-radius: 4px; | |
| transition: all 0.5s var(--transition-smooth); | |
| } | |
| .service-card:hover { | |
| background: rgba(255, 255, 255, 0.06); | |
| border-color: rgba(201, 168, 124, 0.3); | |
| transform: translateY(-5px); | |
| } | |
| .service-icon { | |
| width: 64px; | |
| height: 64px; | |
| background: rgba(201, 168, 124, 0.1); | |
| border-radius: 12px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| margin-bottom: 1.5rem; | |
| } | |
| .service-icon svg { | |
| width: 32px; | |
| height: 32px; | |
| stroke: var(--color-accent); | |
| } | |
| .service-title { | |
| font-size: 1.375rem; | |
| color: var(--color-white); | |
| margin-bottom: 1rem; | |
| } | |
| .service-description { | |
| font-size: 0.9375rem; | |
| color: rgba(255, 255, 255, 0.6); | |
| line-height: 1.8; | |
| } | |
| /* Values Section */ | |
| .values-section { | |
| padding: 8rem 4rem; | |
| background: var(--color-cream); | |
| } | |
| .values-grid { | |
| max-width: 1600px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: 1fr 1.5fr; | |
| gap: 6rem; | |
| align-items: center; | |
| } | |
| .values-image { | |
| position: relative; | |
| } | |
| .values-image-main { | |
| width: 100%; | |
| height: 550px; | |
| object-fit: cover; | |
| border-radius: 4px; | |
| } | |
| .values-badge { | |
| position: absolute; | |
| bottom: -30px; | |
| right: -30px; | |
| width: 180px; | |
| height: 180px; | |
| background: var(--color-primary); | |
| border-radius: 50%; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| text-align: center; | |
| padding: 1.5rem; | |
| } | |
| .badge-number { | |
| font-family: 'Cormorant Garamond', serif; | |
| font-size: 3rem; | |
| font-weight: 600; | |
| color: var(--color-accent); | |
| line-height: 1; | |
| } | |
| .badge-text { | |
| font-size: 0.75rem; | |
| color: rgba(255, 255, 255, 0.7); | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| margin-top: 0.5rem; | |
| } | |
| .values-content { | |
| padding-left: 2rem; | |
| } | |
| .values-list { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 2.5rem; | |
| margin-top: 3rem; | |
| } | |
| .value-item { | |
| display: flex; | |
| gap: 1.5rem; | |
| padding-bottom: 2.5rem; | |
| border-bottom: 1px solid rgba(0, 0, 0, 0.08); | |
| } | |
| .value-item:last-child { | |
| border-bottom: none; | |
| padding-bottom: 0; | |
| } | |
| .value-number { | |
| font-family: 'Cormorant Garamond', serif; | |
| font-size: 2.5rem; | |
| font-weight: 300; | |
| color: var(--color-accent); | |
| line-height: 1; | |
| min-width: 60px; | |
| } | |
| .value-content h4 { | |
| font-size: 1.25rem; | |
| color: var(--color-primary); | |
| margin-bottom: 0.5rem; | |
| } | |
| .value-content p { | |
| font-size: 0.9375rem; | |
| color: var(--color-text-light); | |
| line-height: 1.7; | |
| } | |
| /* Testimonials Section */ | |
| .testimonials-section { | |
| padding: 8rem 4rem; | |
| background: var(--color-white); | |
| } | |
| .testimonials-container { | |
| max-width: 1400px; | |
| margin: 0 auto; | |
| } | |
| .testimonials-header { | |
| text-align: center; | |
| margin-bottom: 5rem; | |
| } | |
| .testimonials-slider { | |
| position: relative; | |
| } | |
| .testimonial-slide { | |
| display: none; | |
| animation: fadeIn 0.6s ease; | |
| } | |
| .testimonial-slide.active { | |
| display: block; | |
| } | |
| @keyframes fadeIn { | |
| from { opacity: 0; transform: translateY(20px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .testimonial-content { | |
| display: grid; | |
| grid-template-columns: 1fr 1.5fr; | |
| gap: 5rem; | |
| align-items: center; | |
| } | |
| .testimonial-image { | |
| position: relative; | |
| } | |
| .testimonial-image img { | |
| width: 100%; | |
| height: 500px; | |
| object-fit: cover; | |
| border-radius: 4px; | |
| } | |
| .testimonial-quote-icon { | |
| position: absolute; | |
| top: -20px; | |
| right: -20px; | |
| width: 80px; | |
| height: 80px; | |
| background: var(--color-accent); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .testimonial-quote-icon svg { | |
| width: 32px; | |
| height: 32px; | |
| fill: var(--color-primary); | |
| } | |
| .testimonial-text { | |
| padding-right: 2rem; | |
| } | |
| .testimonial-quote { | |
| font-family: 'Cormorant Garamond', serif; | |
| font-size: clamp(1.5rem, 2.5vw, 2rem); | |
| font-style: italic; | |
| color: var(--color-primary); | |
| line-height: 1.6; | |
| margin-bottom: 2.5rem; | |
| } | |
| .testimonial-author { | |
| display: flex; | |
| align-items: center; | |
| gap: 1.5rem; | |
| } | |
| .author-avatar { | |
| width: 60px; | |
| height: 60px; | |
| border-radius: 50%; | |
| object-fit: cover; | |
| } | |
| .author-info h5 { | |
| font-size: 1.125rem; | |
| color: var(--color-primary); | |
| margin-bottom: 0.25rem; | |
| } | |
| .author-info span { | |
| font-size: 0.875rem; | |
| color: var(--color-text-light); | |
| } | |
| .testimonial-nav { | |
| display: flex; | |
| justify-content: center; | |
| gap: 1rem; | |
| margin-top: 3rem; | |
| } | |
| .testimonial-dot { | |
| width: 12px; | |
| height: 12px; | |
| border-radius: 50%; | |
| background: rgba(0, 0, 0, 0.1); | |
| border: none; | |
| cursor: pointer; | |
| transition: all 0.3s ease; | |
| } | |
| .testimonial-dot.active { | |
| background: var(--color-accent); | |
| transform: scale(1.2); | |
| } | |
| .testimonial-arrows { | |
| position: absolute; | |
| top: 50%; | |
| transform: translateY(-50%); | |
| width: 100%; | |
| display: flex; | |
| justify-content: space-between; | |
| padding: 0 2rem; | |
| pointer-events: none; | |
| } | |
| .testimonial-arrow { | |
| width: 60px; | |
| height: 60px; | |
| border-radius: 50%; | |
| background: var(--color-white); | |
| border: 1px solid rgba(0, 0, 0, 0.1); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| cursor: pointer; | |
| pointer-events: all; | |
| transition: all 0.3s ease; | |
| } | |
| .testimonial-arrow:hover { | |
| background: var(--color-accent); | |
| border-color: var(--color-accent); | |
| } | |
| .testimonial-arrow:hover svg { | |
| stroke: var(--color-primary); | |
| } | |
| .testimonial-arrow svg { | |
| width: 20px; | |
| height: 20px; | |
| stroke: var(--color-primary); | |
| } | |
| /* CTA Section */ | |
| .cta-section { | |
| padding: 8rem 4rem; | |
| background: var(--color-primary); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .cta-section::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: | |
| radial-gradient(ellipse at 30% 50%, rgba(201, 168, 124, 0.1) 0%, transparent 50%), | |
| radial-gradient(ellipse at 70% 30%, rgba(201, 168, 124, 0.05) 0%, transparent 50%); | |
| } | |
| .cta-container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| text-align: center; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .cta-label { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 1rem; | |
| margin-bottom: 2rem; | |
| } | |
| .cta-label-line { | |
| width: 40px; | |
| height: 1px; | |
| background: var(--color-accent); | |
| } | |
| .cta-label-text { | |
| font-size: 0.75rem; | |
| font-weight: 500; | |
| letter-spacing: 0.2em; | |
| text-transform: uppercase; | |
| color: var(--color-accent); | |
| } | |
| .cta-title { | |
| font-size: clamp(2.5rem, 4vw, 4rem); | |
| color: var(--color-white); | |
| margin-bottom: 1.5rem; | |
| line-height: 1.15; | |
| } | |
| .cta-description { | |
| font-size: 1.125rem; | |
| color: rgba(255, 255, 255, 0.7); | |
| max-width: 600px; | |
| margin: 0 auto 3rem; | |
| line-height: 1.8; | |
| } | |
| .cta-buttons { | |
| display: flex; | |
| justify-content: center; | |
| gap: 1.5rem; | |
| flex-wrap: wrap; | |
| } | |
| /* Footer */ | |
| .footer { | |
| background: var(--color-primary); | |
| padding: 5rem 4rem 2rem; | |
| position: relative; | |
| } | |
| .footer::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 1px; | |
| background: linear-gradient(90deg, transparent, rgba(201, 168, 124, 0.3), transparent); | |
| } | |
| .footer-container { | |
| max-width: 1600px; | |
| margin: 0 auto; | |
| } | |
| .footer-top { | |
| display: grid; | |
| grid-template-columns: 2fr 1fr 1fr 1fr; | |
| gap: 4rem; | |
| padding-bottom: 4rem; | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); | |
| } | |
| .footer-brand { | |
| max-width: 400px; | |
| } | |
| .footer-logo { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.75rem; | |
| margin-bottom: 1.5rem; | |
| } | |
| .footer-logo-icon { | |
| width: 40px; | |
| height: 40px; | |
| background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%); | |
| border-radius: 6px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| transform: rotate(45deg); | |
| } | |
| .footer-logo-icon-inner { | |
| width: 16px; | |
| height: 16px; | |
| background: var(--color-primary); | |
| transform: rotate(-45deg); | |
| } | |
| .footer-logo-text { | |
| font-family: 'Cormorant Garamond', serif; | |
| font-size: 1.25rem; | |
| font-weight: 600; | |
| color: var(--color-white); | |
| letter-spacing: 0.05em; | |
| } | |
| .footer-description { | |
| font-size: 0.9375rem; | |
| color: rgba(255, 255, 255, 0.6); | |
| line-height: 1.8; | |
| margin-bottom: 1.5rem; | |
| } | |
| .footer-social { | |
| display: flex; | |
| gap: 1rem; | |
| } | |
| .social-link { | |
| width: 44px; | |
| height: 44px; | |
| border-radius: 50%; | |
| background: rgba(255, 255, 255, 0.05); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| transition: all 0.3s ease; | |
| } | |
| .social-link:hover { | |
| background: var(--color-accent); | |
| transform: translateY(-3px); | |
| } | |
| .social-link svg { | |
| width: 18px; | |
| height: 18px; | |
| fill: var(--color-white); | |
| transition: fill 0.3s ease; | |
| } | |
| .social-link:hover svg { | |
| fill: var(--color-primary); | |
| } | |
| .footer-column h4 { | |
| font-size: 0.875rem; | |
| font-weight: 600; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| color: var(--color-white); | |
| margin-bottom: 1.5rem; | |
| } | |
| .footer-links { | |
| list-style: none; | |
| } | |
| .footer-link { | |
| margin-bottom: 0.875rem; | |
| } | |
| .footer-link a { | |
| font-size: 0.9375rem; | |
| color: rgba(255, 255, 255, 0.6); | |
| text-decoration: none; | |
| transition: all 0.3s ease; | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .footer-link a:hover { | |
| color: var(--color-accent); | |
| transform: translateX(5px); | |
| } | |
| .footer-contact-item { | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 1rem; | |
| margin-bottom: 1.25rem; | |
| } | |
| .footer-contact-icon { | |
| width: 40px; | |
| height: 40px; | |
| background: rgba(201, 168, 124, 0.1); | |
| border-radius: 8px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| flex-shrink: 0; | |
| } | |
| .footer-contact-icon svg { | |
| width: 18px; | |
| height: 18px; | |
| stroke: var(--color-accent); | |
| } | |
| .footer-contact-text { | |
| font-size: 0.9375rem; | |
| color: rgba(255, 255, 255, 0.7); | |
| line-height: 1.6; | |
| } | |
| .footer-bottom { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| padding-top: 2rem; | |
| } | |
| .footer-copyright { | |
| font-size: 0.875rem; | |
| color: rgba(255, 255, 255, 0.5); | |
| } | |
| .footer-copyright a { | |
| color: var(--color-accent); | |
| text-decoration: none; | |
| } | |
| .footer-legal { | |
| display: flex; | |
| gap: 2rem; | |
| } | |
| .footer-legal a { | |
| font-size: 0.875rem; | |
| color: rgba(255, 255, 255, 0.5); | |
| text-decoration: none; | |
| transition: color 0.3s ease; | |
| } | |
| .footer-legal a:hover { | |
| color: var(--color-accent); | |
| } | |
| /* Mobile Menu */ | |
| .mobile-menu { | |
| position: fixed; | |
| top: 0; | |
| right: -100%; | |
| width: 100%; | |
| max-width: 400px; | |
| height: 100vh; | |
| background: var(--color-primary); | |
| z-index: 999; | |
| padding: 6rem 2rem 2rem; | |
| transition: right 0.4s var(--transition-smooth); | |
| overflow-y: auto; | |
| } | |
| .mobile-menu.active { | |
| right: 0; | |
| } | |
| .mobile-menu-close { | |
| position: absolute; | |
| top: 2rem; | |
| right: 2rem; | |
| width: 40px; | |
| height: 40px; | |
| background: none; | |
| border: none; | |
| cursor: pointer; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .mobile-menu-close span { | |
| position: absolute; | |
| width: 24px; | |
| height: 2px; | |
| background: var(--color-white); | |
| } | |
| .mobile-menu-close span:first-child { | |
| transform: rotate(45deg); | |
| } | |
| .mobile-menu-close span:last-child { | |
| transform: rotate(-45deg); | |
| } | |
| .mobile-nav-links { | |
| list-style: none; | |
| margin-bottom: 3rem; | |
| } | |
| .mobile-nav-link { | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); | |
| } | |
| .mobile-nav-link a { | |
| display: block; | |
| padding: 1.5rem 0; | |
| font-size: 1.25rem; | |
| color: var(--color-white); | |
| text-decoration: none; | |
| transition: color 0.3s ease; | |
| } | |
| .mobile-nav-link a:hover { | |
| color: var(--color-accent); | |
| } | |
| .mobile-contact-info { | |
| padding-top: 2rem; | |
| } | |
| .mobile-contact-info h4 { | |
| font-size: 0.875rem; | |
| font-weight: 600; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| color: var(--color-accent); | |
| margin-bottom: 1.5rem; | |
| } | |
| .mobile-contact-item { | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| margin-bottom: 1rem; | |
| } | |
| .mobile-contact-item svg { | |
| width: 20px; | |
| height: 20px; | |
| stroke: rgba(255, 255, 255, 0.6); | |
| } | |
| .mobile-contact-item span { | |
| font-size: 0.9375rem; | |
| color: rgba(255, 255, 255, 0.7); | |
| } | |
| .menu-overlay { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: rgba(0, 0, 0, 0.5); | |
| z-index: 998; | |
| opacity: 0; | |
| visibility: hidden; | |
| transition: all 0.4s ease; | |
| } | |
| .menu-overlay.active { | |
| opacity: 1; | |
| visibility: visible; | |
| } | |
| /* Responsive */ | |
| @media (max-width: 1400px) { | |
| .services-grid { | |
| grid-template-columns: repeat(2, 1fr); | |
| } | |
| } | |
| @media (max-width: 1200px) { | |
| .hero-stats { | |
| display: none; | |
| } | |
| .about-content, | |
| .values-grid, | |
| .testimonial-content { | |
| grid-template-columns: 1fr; | |
| gap: 3rem; | |
| } | |
| .about-image-accent { | |
| display: none; | |
| } | |
| .values-image { | |
| order: -1; | |
| } | |
| .values-badge { | |
| right: 20px; | |
| bottom: -20px; | |
| } | |
| .values-content { | |
| padding-left: 0; | |
| } | |
| .footer-top { | |
| grid-template-columns: repeat(2, 1fr); | |
| } | |
| } | |
| @media (max-width: 992px) { | |
| .nav-links, | |
| .nav-cta { | |
| display: none; | |
| } | |
| .mobile-menu-btn { | |
| display: flex; | |
| } | |
| .hero { | |
| min-height: 800px; | |
| } | |
| .hero-content { | |
| padding: 0 2rem; | |
| } | |
| .hero-scroll { | |
| display: none; | |
| } | |
| .projects-grid, | |
| .services-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .section, | |
| .projects-section, | |
| .services-section, | |
| .values-section, | |
| .testimonials-section, | |
| .cta-section { | |
| padding: 5rem 2rem; | |
| } | |
| .section-header { | |
| grid-template-columns: 1fr; | |
| gap: 1.5rem; | |
| } | |
| .testimonial-arrows { | |
| display: none; | |
| } | |
| .about-features { | |
| grid-template-columns: 1fr; | |
| } | |
| .values-list { | |
| gap: 1.5rem; | |
| } | |
| .value-item { | |
| padding-bottom: 1.5rem; | |
| } | |
| } | |
| @media (max-width: 576px) { | |
| .navbar { | |
| padding: 1rem 1.5rem; | |
| } | |
| .navbar.scrolled { | |
| padding: 0.75rem 1.5rem; | |
| } | |
| .hero { | |
| min-height: 700px; | |
| } | |
| .hero-cta { | |
| flex-direction: column; | |
| } | |
| .btn-primary, | |
| .btn-secondary { | |
| width: 100%; | |
| justify-content: center; | |
| } | |
| .footer-top { | |
| grid-template-columns: 1fr; | |
| } | |
| .footer-bottom { | |
| flex-direction: column; | |
| gap: 1.5rem; | |
| text-align: center; | |
| } | |
| .footer-legal { | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| } | |
| .values-badge { | |
| width: 140px; | |
| height: 140px; | |
| } | |
| .badge-number { | |
| font-size: 2rem; | |
| } | |
| .testimonial-quote-icon { | |
| width: 60px; | |
| height: 60px; | |
| top: -10px; | |
| right: -10px; | |
| } | |
| .testimonial-quote-icon svg { | |
| width: 24px; | |
| height: 24px; | |
| } | |
| } | |
| /* Animations */ | |
| .fade-up { | |
| opacity: 0; | |
| transform: translateY(30px); | |
| transition: all 0.8s var(--transition-smooth); | |
| } | |
| .fade-up.visible { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .fade-in { | |
| opacity: 0; | |
| transition: opacity 1s ease; | |
| } | |
| .fade-in.visible { | |
| opacity: 1; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: var(--color-cream); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: var(--color-accent); | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: var(--color-secondary); | |
| } | |
| /* Built with anycoder link */ | |
| .built-with { | |
| position: fixed; | |
| bottom: 20px; | |
| right: 20px; | |
| padding: 0.75rem 1.25rem; | |
| background: rgba(10, 22, 40, 0.95); | |
| backdrop-filter: blur(10px); | |
| border-radius: 50px; | |
| font-size: 0.75rem; | |
| font-weight: 500; | |
| letter-spacing: 0.05em; | |
| color: var(--color-white); | |
| text-decoration: none; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| z-index: 999; | |
| transition: all 0.3s ease; | |
| box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); | |
| } | |
| .built-with:hover { | |
| background: var(--color-accent); | |
| color: var(--color-primary); | |
| transform: translateY(-2px); | |
| } | |
| .built-with svg { | |
| width: 16px; | |
| height: 16px; | |
| } | |
| @media (max-width: 768px) { | |
| .built-with { | |
| bottom: 10px; | |
| right: 10px; | |
| padding: 0.5 |