/* Akash Web Studio - Global Design System & Styles */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  /* Colors */
  --primary-color: #0B1F3A; /* Navy */
  --accent-color: #0D9488; /* Teal */
  --accent-light: #14B8A6;
  --white: #FFFFFF;
  --bg-light: #F1F5F9;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --radius-card: 12px;
  --radius-btn: 6px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

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

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

/* Section Shared */
.section {
  padding: 80px 0;
}

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

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--accent-color);
}

.logo-img {
  max-height: 65px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
}

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

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-color);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #e2e8f0;
  animation: fadeUp 1s ease 0.2s backwards;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeUp 1s ease 0.4s backwards;
}

.hero-btns .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

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

/* Stats Row */
.stats {
  background-color: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stat-item p {
  font-weight: 600;
  color: var(--text-muted);
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-light);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

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

.service-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-link {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  gap: 10px;
}

/* Values / Trust Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  border: 1px solid #e2e8f0;
}

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

.value-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  background: var(--bg-light);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  display: inline-block;
}

/* Portfolio Section */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  color: var(--text-muted);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  background: var(--white);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-light);
  color: var(--accent-color);
  font-size: 0.85rem;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-content h3 {
  margin-bottom: 10px;
}

.portfolio-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 0 20px;
}

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

.footer-about p {
  color: #94a3b8;
  margin: 20px 0;
  max-width: 400px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer-contact p {
  color: #94a3b8;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
  background: var(--primary-color);
  color: var(--white);
  padding: 50px;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-info p {
  color: #94a3b8;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent-light);
}

.form-container {
  padding: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-btn);
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 25px;
  background: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--accent-color);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.error {
  border-left-color: #ef4444;
}

/* Homepage Enhancements */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  color: var(--text-dark);
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-badge i {
  color: var(--accent-color);
  font-size: 2rem;
}

.hero-badge h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.hero-badge p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trusted-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0;
}

.trusted-title {
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.logo-grid h3 {
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}

.process-step {
  background: white;
  padding: 30px;
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step p {
  font-size: 0.95rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-card);
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: rgba(13, 148, 136, 0.1);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.testimonial-author h4 {
  margin: 0;
  color: var(--text-dark);
}

.testimonial-author p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent-color);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), #1a365d);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-primary {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.cta-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.cta-outline {
  border-color: white;
  color: white;
  background: rgba(255,255,255,0.1);
}

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

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  
  /* New Homepage Sections */
  .hero-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero[style] {
    text-align: center !important;
    padding-top: 120px !important;
  }
  .hero-btns[style] {
    justify-content: center !important;
  }
  .hero-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: 0.4s;
    z-index: 9999;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active { left: 0; }
  .hamburger { display: block; z-index: 10000; }
  .hero h1 { font-size: 2.5rem; }
  .hero h1[style] { font-size: 2.5rem !important; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; }
  .logo-grid { gap: 20px; }
  .testimonial-author { flex-direction: column; text-align: center; }
  .quote-icon { opacity: 0.05; }
}
