/* marteadiac - Audio & Video Equipment */
/* Split-Screen Modern Layout */

:root {
  --primary: #1a2b4a;
  --secondary: #c9a227;
  --accent: #3d5a80;
  --light: #f8f9fa;
  --dark: #0d1520;
  --text: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --border: #dee2e6;
  --success: #28a745;
  --gradient-dark: linear-gradient(135deg, #1a2b4a 0%, #0d1520 100%);
  --gradient-accent: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p { margin-bottom: 1rem; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.btn-dark:hover {
  background: var(--dark);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* Split Screen Sections */
.split-section {
  display: flex;
  min-height: 100vh;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-left,
.split-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.split-left {
  background: var(--light);
}

.split-right {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.split-right h2,
.split-right h3 {
  color: var(--white);
}

.split-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.split-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.split-content h1 {
  margin-bottom: 1.5rem;
}

.split-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Hero Section */
.hero {
  padding-top: 80px;
}

.hero .split-left {
  background: var(--white);
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.15);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--secondary);
}

/* Services Grid */
.services-section {
  padding: 6rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-card {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--dark);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.service-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Equipment Showcase */
.equipment-section {
  padding: 0;
}

.equipment-grid {
  display: flex;
  flex-wrap: wrap;
}

.equipment-item {
  flex: 1 1 50%;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.equipment-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.equipment-item:hover .equipment-item-bg {
  transform: scale(1.05);
}

.equipment-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 21, 32, 0.9) 0%, transparent 60%);
}

.equipment-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  color: var(--white);
}

.equipment-item-content h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.equipment-item-content p {
  opacity: 0.85;
  margin-bottom: 1rem;
}

.equipment-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.25rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--light);
}

.about-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

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

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
  background: var(--primary);
  color: var(--white);
}

.testimonials-section .section-header h2 {
  color: var(--white);
}

.testimonials-section .section-header p {
  color: rgba(255,255,255,0.7);
}

.testimonials-grid {
  display: flex;
  gap: 2rem;
}

.testimonial-card {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-info h4 {
  color: var(--white);
  font-size: 1rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* Contact Form */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: flex;
  gap: 4rem;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--secondary);
}

.contact-detail-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9375rem;
}

.contact-form-wrap {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

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

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient-accent);
  text-align: center;
}

.cta-section h2 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col:first-child {
  flex: 2;
  min-width: 280px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 0.4rem 0;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  margin-left: 1.5rem;
}

.footer-legal a:hover {
  color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}

.cookie-content a {
  color: var(--secondary);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.875rem;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--dark);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta .btn {
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
}

/* Page Headers */
.page-header {
  padding: 10rem 0 4rem;
  background: var(--gradient-dark);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* Content Pages */
.content-section {
  padding: 5rem 0;
}

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  margin: 2.5rem 0 1rem;
}

.content-section h3 {
  margin: 2rem 0 0.75rem;
}

.content-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-section li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background: var(--light);
}

.thanks-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
}

.thanks-card h1 {
  margin-bottom: 1rem;
}

.thanks-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Services Page */
.services-full {
  padding: 5rem 0;
}

.service-full-card {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.service-full-card:nth-child(even) {
  flex-direction: row-reverse;
}

.service-full-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-full-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  background: var(--light);
}

.service-full-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-full-content h3 {
  margin-bottom: 1rem;
}

.service-full-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-full-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.service-full-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-feature-tag {
  padding: 0.375rem 0.875rem;
  background: var(--light);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text);
}

/* Responsive */
@media (max-width: 992px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .split-left,
  .split-right {
    min-height: auto;
    padding: 4rem 2rem;
  }

  .about-grid,
  .contact-grid {
    flex-direction: column;
  }

  .equipment-item {
    flex: 1 1 100%;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .service-full-card,
  .service-full-card:nth-child(even) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .footer-grid {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
  }
}
