/* 
* DeepNude CC - Main Stylesheet 
* Website: deepnudecc.best
* Design: Modernist Diamond Theme with Blue Accents
*/

/* Base Styles & Reset */
:root {
  --primary: #00B4DB;
  --primary-dark: #0083B0;
  --accent: #00DADB; 
  --dark: #202124;
  --darker: #16181D;
  --light: #F5F5F7;
  --light-gray: #E0E0E0;
  --mid-gray: #9E9E9E;
  --text: #333333;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #FAFAFA;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 80px 0;
}

.dark-section {
  background-color: var(--darker);
  color: var(--light);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: white;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.btn:hover:before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  color: white;
  background: var(--primary);
}

/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-text {
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--dark);
  font-weight: 600;
  position: relative;
}

.nav-links a:not(.btn):after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover:after {
  width: 100%;
}

.nav-links a.btn {
  padding: 8px 16px;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60,20 L100,60 L60,100 L20,60 Z' stroke='%2300B4DB' stroke-width='1' fill='none' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

/* Features Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 180, 219, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dark-section .card {
  background-color: var(--dark);
  border-color: rgba(0, 180, 219, 0.2);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Process Steps */
.process-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 0;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gradient);
  transform: translateX(-50%);
  z-index: 0;
}

.process-step {
  display: flex;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.process-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.process-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: calc(50% - 50px);
  transition: transform 0.3s ease;
}

.process-step:nth-child(odd) .process-content {
  margin-right: 50px;
}

.process-step:nth-child(even) .process-content {
  margin-left: 50px;
}

.process-content:hover {
  transform: translateY(-5px);
}

.process-title {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

/* Testimonials */
.testimonial {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark-section .testimonial {
  background-color: var(--dark);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -20px;
}

.author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 15px;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
  padding: 0 25px 20px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item:hover .faq-question {
  background-color: rgba(0, 180, 219, 0.05);
}

/* CTA Section */
.cta-section {
  position: relative;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  width: 150%;
  height: 100%;
  top: 0;
  left: -25%;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: 0;
  animation: ctaBgScroll 60s linear infinite;
}

@keyframes ctaBgScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(100px); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--darker);
  color: var(--light-gray);
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-logo span {
  margin-left: 10px;
}

.footer-heading {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-gray);
}

.footer-links a:hover {
  color: white;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: var(--mid-gray);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .process-line {
    left: 30px;
  }
  
  .process-step,
  .process-step:nth-child(odd) {
    flex-direction: row;
  }
  
  .process-number {
    left: 30px;
  }
  
  .process-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-about {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}
