@font-face {
    font-family: 'Corpta';
    src: url('https://69xu4xdbr5iffvvn.public.blob.vercel-storage.com/corpta-demo/corpta-demo-webfont.woff2') format('woff2'),
    url('https://69xu4xdbr5iffvvn.public.blob.vercel-storage.com/corpta-demo/corpta-demo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #000;
    --bg-card: #111;
    --bg-card-hover: #1a1a1a;
    --text-main: #fff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
}

html, body {
    height: 100%;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-navbar {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-navbar {
        padding: 1.5rem 2.5rem 0;
    }
}

.nav-left-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(23, 23, 23, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem 0.75rem 1rem;
    will-change: backdrop-filter;
}

.brand-logo-img {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
    mix-blend-mode: screen; /* Drops black backgrounds on dark themes */
    image-rendering: -webkit-optimize-contrast;
}

.brand-text {
    color: #fff;
    font-size: 0.975rem;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.nav-center-pill {
    display: none;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(23, 23, 23, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.5rem 0.75rem;
    will-change: backdrop-filter;
}

@media (min-width: 768px) {
    .nav-center-pill {
        display: flex;
    }
}

.nav-link {
    color: rgba(212, 212, 212, 1);
    text-decoration: none;
    font-size: 0.975rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-right-btn {
    background-color: #fff;
    color: #000;
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.nav-right-btn:hover {
    background-color: #e5e5e5;
}

.hero-content-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 10;
    pointer-events: none; /* Let clicks pass through to video/body if needed, except nav */
}

.hero-title {
    position: absolute;
    color: #fff;
    font-family: 'Corpta', sans-serif;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.95;
    font-size: 14vw;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 13vw;
    }
}

.word-1 {
    left: 1rem;
    top: 18%;
}

.word-2 {
    right: 1rem;
    top: 38%;
}

.word-3 {
    left: 18%;
    top: 58%;
}

@media (min-width: 768px) {
    .word-1 { left: 2.5rem; }
    .word-2 { right: 2.5rem; }
    .word-3 { left: 28%; }
}

.hero-description {
    position: absolute;
    left: 1.5rem;
    top: 46%;
    max-width: 240px;
    font-size: 15px;
    line-height: 1.375;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .hero-description {
        left: 2.5rem;
    }
}

.stat-block {
    position: absolute;
    will-change: transform;
}

.stat-top-right {
    right: 1.5rem;
    top: 14%;
}

.stat-bottom-left {
    left: 1.5rem;
    bottom: 5rem;
}

.stat-bottom-right {
    right: 1.5rem;
    bottom: 4rem;
}

@media (min-width: 768px) {
    .stat-top-right { right: 6rem; }
    .stat-bottom-left { left: 5rem; bottom: 6rem; }
    .stat-bottom-right { right: 5rem; bottom: 5rem; }
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.stat-number {
    font-family: 'Corpta', sans-serif;
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #fff;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-divider {
    display: none;
    height: 1px;
    width: 6rem;
    background-color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .stat-divider {
        display: block;
    }
}

.rotate-pos {
    transform: rotate(20deg);
}

.rotate-neg {
    transform: rotate(-20deg);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    text-align: right;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12rem;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 5;
}


/* ==========================================================================
   MAIN CONTENT STYLES
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#about {
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(80,80,80,0.25), rgba(20,20,20,0.25), rgba(50,50,50,0.25));
    background-size: 200% 200%;
    animation: bentoGradient 15s ease infinite;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

#about .container {
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background-color: var(--bg-dark);
}

.bg-dark {
    background-color: #0a0a0a;
}

.section-title {
    font-family: 'Corpta', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

p {
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
}

.values-box {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.values-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.styled-list {
    list-style: none;
}

.styled-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.6;
}

.styled-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.styled-list li strong {
    color: #fff;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bento-span-2 {
        grid-column: span 2;
    }
    .bento-row-span-2 {
        grid-row: span 2;
    }
}

@keyframes bentoGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-card {
    background: linear-gradient(135deg, rgba(20,20,20,0.6), rgba(40,40,40,0.4), rgba(15,15,15,0.6));
    background-size: 200% 200%;
    animation: bentoGradient 15s ease infinite;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    transform: translateZ(0);

}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.service-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li::before {
    content: "→";
    color: #fff;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #0a0a0a, #000);
    border-top: 1px solid var(--border-color);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 2rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #e5e5e5;
    transform: translateY(-2px);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-about p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #fff;
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.trust-badges {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-badges span {
    color: #fff;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/*Instagram Svg*/
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  padding: 10px 18px;
  background: #000000;
  color: white;
  border-radius: 8px;
  margin-top: -1rem;
}

.instagram-link:hover {
  background: #000000;
}

.instagram-link svg {
  display: block;
}

/* ==========================================================================
   ENQUIRY MODAL
   ========================================================================== */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 2rem auto;
  padding: 2.5rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: modalDrop 0.3s ease-out;
}

@keyframes modalDrop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  color: var(--text-muted);
  float: right;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
  border: none;
  background: none;
  outline: none;
}

.close-btn:hover,
.close-btn:focus {
  color: #fff;
}

.modal-content h2 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group label span {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #0f0f0f;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.textarea-group {
  margin-bottom: 1.5rem;
}

.textarea-group label {
  margin-bottom: 0.5rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
  background-color: #e5e5e5;
  transform: translateY(-2px);
}

.btn-submit:disabled {
  background-color: #333;
  color: #666;
  cursor: not-allowed;
}

.btn-submit:not(:disabled) {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Responsive styles for modal */
@media (max-width: 600px) {
  .modal-content {
    margin: 1rem auto;
    padding: 1.5rem;
  }

  .modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}