/* ===== VARIABLES ===== */
:root {
    --primary: #3A7BD5;
    --secondary: #FF7F50;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --text: #333;
    --gray: #888;
  }
  
  /* ===== RESET & BASE ===== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* ===== NAVBAR ===== */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo svg {
    height: 40px;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 2rem;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: var(--secondary);
  }
  
  /* ===== PROMO BANNER ===== */
  .promo-banner {
    background: linear-gradient(to right, #FF7F50, #e74c3c);
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
  }
  
  .blink {
    animation: blink 1.5s infinite;
    font-weight: bold;
  }
  
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    display: flex;
    padding: 5%;
    align-items: center;
    background: var(--light);
    min-height: 80vh;
    gap: 2rem;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
  }
  
  .hero-image {
    flex: 1;
    text-align: center;
  }
  
  .hero-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  /* ===== PRICING ===== */
  .price-container {
    margin: 2rem 0;
  }
  
  .price-tag {
    display: flex;
    align-items: center;
    margin: 0.8rem 0;
    flex-wrap: wrap;
  }
  
  .highlight {
    background: rgba(255, 127, 80, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    margin: 1.5rem 0;
  }
  
  .original-price {
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 10px;
  }
  
  .new-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
  }
  
  .final-price {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: bold;
    margin-right: 10px;
  }
  
  .promo-text {
    font-size: 0.9rem;
    margin-right: 10px;
    color: var(--gray);
  }
  
  .discount-badge, .promo-badge {
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  
  .discount-badge {
    background: var(--primary);
  }
  
  .promo-badge {
    background: #e74c3c;
  }
  
  .limited-text {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
  }
  
  /* ===== CTA BUTTON ===== */
  .cta-button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .cta-button:hover {
    background: #e66a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
  }
  
  /* ===== SERVICES ===== */
  .services {
    padding: 5rem 5%;
    background: white;
  }
  
  .services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .service-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
  }
  
  .service-card ul {
    list-style-position: inside;
  }
  
  .service-card li {
    margin-bottom: 0.8rem;
    color: var(--text);
  }
  
  /* ===== TESTIMONIALS ===== */
  .testimonials {
    padding: 5rem 5%;
    background: var(--light);
    text-align: center;
  }
  
  .testimonials h2 {
    margin-bottom: 3rem;
    color: var(--primary);
  }
  
  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .testimonial-card p:first-child {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text);
  }
  
  .testimonial-card p:last-child {
    font-weight: bold;
    color: var(--secondary);
  }
  
  /* ===== FOOTER ===== */
  footer {
    text-align: center;
    padding: 3rem 5%;
    background: var(--dark);
    color: white;
  }
  
  footer h2 {
    margin-bottom: 1.5rem;
  }
  
  .contact-info {
    margin: 1.5rem 0;
  }
  
  .contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  footer a {
    color: var(--secondary);
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  .copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text {
      margin-bottom: 2rem;
    }
  
    .price-tag {
      justify-content: center;
    }
  
    nav ul {
      display: none;
    }
  }