:root {
  --primary: #1a73e8;
  --secondary: #ffffff;
  --accent: #e8f0fe;
  --background: #ffffff;
  --text: #172b4d;
  --text-dark: #172b4d;
  --muted: #5b7fd1;
  --surface: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: var(--text);
  background: var(--background);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  background: rgba(26, 115, 232, 0.85);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.header .logo {
  color: #ffffff;
}

.phone-btn {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.phone-btn:hover {
  background: rgba(255,255,255,0.1);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-menu .menu-close {
  display: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 30px;
}

.nav-menu.open {
  right: 0;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #1a73e8, #185abc);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  color: var(--secondary);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TEXT */
.hero-text {
  max-width: 550px;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 700;
}

.hero-text h3 {
  margin: 20px 0;
  font-weight: 600;
}

.hero-text p {
  margin-bottom: 25px;
  opacity: 0.9;
}

/* BUTTON */
.cta {
  padding: 15px 25px;
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.cta:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: var(--secondary);
}

/* FEATURES */
.features {
  margin-top: 30px;
  display: flex;
  gap: 25px;
}

.features span {
  font-size: 14px;
}

/* IMAGE */
.hero-img img {
  width: 500px;
}

/* SHAPE */
.shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  right: -150px;
  bottom: -150px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-img img {
    width: 350px;
    margin-top: 30px;
  }

  .features {
    justify-content: center;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
      background: rgba(26, 115, 232, 0.95);
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      padding: 30px;
      justify-content: flex-start;
      box-shadow: -10px 0 30px rgba(26, 115, 232, 0.35);
    align-self: flex-end;
  }

  .nav-menu a {
    display: block;
    margin: 16px 0;
    font-size: 18px;
  }

  .nav-menu.open {
    right: 0;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media(max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .phone-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    width: 100%;
    max-width: 320px;
  }

  .nav {
    justify-content: space-between;
  }

  .hero-img img {
    width: 250px;
  }
}

/* WELCOME SECTION */
.welcome {
  padding: 80px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

/* FLEX LAYOUT */
.welcome-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.welcome-img img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  object-fit: cover;
}

/* TEXT */
.welcome-text {
  max-width: 600px;
  color: var(--text);
}

.welcome-text h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
}

.welcome-text h1 {
  font-size: 48px;
  color: var(--text);
  margin-bottom: 20px;
}

.welcome-text p {
  color: #5f6c7b;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* BUTTON */
.call-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.call-btn:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* BACKGROUND SHAPE */
.welcome::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background: rgba(142, 45, 226, 0.08);
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .welcome-content {
    flex-direction: column;
    text-align: center;
  }

  .welcome-text h1 {
    font-size: 36px;
  }

  .welcome-img img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .welcome {
    padding: 50px 0;
  }

  .welcome-text h1 {
    font-size: 28px;
  }

  .welcome-text h4 {
    font-size: 18px;
  }

  .welcome-text p {
    font-size: 14px;
  }
}

/* ASSISTANCE SECTION */
.assistance {
  padding: 80px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

/* FLEX */
.assistance-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.assistance-img img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  object-fit: cover;
}

/* TEXT */
.assistance-text {
  max-width: 600px;
  color: var(--text);
}

.assistance-text h2 {
  font-size: 44px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 700;
}

.assistance-text p {
  color: #5f6c7b;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-call {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 28px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-call:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* BACKGROUND SHAPE */
.assistance::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 450px;
  height: 450px;
  background: rgba(142, 45, 226, 0.08);
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .assistance-content {
    flex-direction: column;
    text-align: center;
  }

  .assistance-text h2 {
    font-size: 32px;
  }

  .assistance-img img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .assistance {
    padding: 50px 0;
  }

  .assistance-text h2 {
    font-size: 26px;
  }

  .assistance-text p {
    font-size: 14px;
  }
}

/* SERVICES SECTION */
.services {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a73e8, #185abc);
  color: var(--secondary);
}

.services small {
  letter-spacing: 2px;
  font-weight: bold;
}

.services h2 {
  font-size: 42px;
  margin: 10px 0;
}

.services p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.6;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: var(--surface);
  color: var(--text-dark);
  width: 300px;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 20px;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card ul {
  text-align: left;
  padding-left: 18px;
}

.card ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .services h2 {
    font-size: 32px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }
}

/* CTA SECTION */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a73e8, #185abc);
  color: var(--secondary);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text {
  max-width: 620px;
}

.cta-text small {
  display: block;
  color: var(--secondary);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 700;
}

.cta-text h2 {
  font-size: 44px;
  margin-bottom: 20px;
  line-height: 1.05;
}

.cta-text p {
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

.cta-section .cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 14px 34px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-section .cta:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.cta-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-image img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-text h2 {
    font-size: 32px;
  }
}

/* QUOTE SECTION */
.quote-section {
  background: var(--background);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative curved shape */
.quote-section::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  width: 500px;
  height: 500px;
  background: rgba(26, 115, 232, 0.08);
  border-radius: 50%;
}

.quote-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.quote-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.quote-image img {
  max-width: 450px;
  width: 100%;
}

/* Form */
.quote-form {
  flex: 1;
  color: var(--text);
  max-width: 400px;
  min-width: 300px;
}

.quote-form small {
  letter-spacing: 2px;
  font-size: 12px;
}

.quote-form h2 {
  font-size: 36px;
  margin: 10px 0 30px;
}

.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 14px;
  border: none;
  outline: none;
  background: #e5e7eb;
  color: #333;
  font-size: 14px;
  border-radius: 4px;
}

.quote-form textarea {
  resize: none;
}

.quote-form button {
  width: 120px;
  padding: 12px;
  border: none;
  background: var(--primary);
  color: var(--secondary);
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.quote-form button:hover {
  background: var(--muted);
}

/* Responsive */
@media (max-width: 992px) {
  .quote-container {
    flex-direction: column;
    text-align: center;
  }

  .quote-form {
    max-width: 100%;
  }

  .quote-form button {
    margin: auto;
  }

  .quote-form h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .quote-section {
    padding: 50px 20px;
  }

  .quote-form h2 {
    font-size: 24px;
  }

  .quote-image img {
    max-width: 250px;
  }
}

/* FOOTER STYLE */
.footer {
  background: var(--primary);
  color: var(--secondary);
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 8%;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 20px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-d {
  font-size: 80px;
  font-weight: bold;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo h3 {
  margin-top: 10px;
  color: var(--secondary);
}

/* Contact */
.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: var(--secondary);
}

/* Links */
.links {
  list-style: none;
  padding: 0;
}

.links li {
  margin-bottom: 12px;
}

.links a {
  text-decoration: none;
  color: var(--secondary);
  transition: 0.3s;
}

.links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* Payments */
.payments {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payments img {
  width: 50px;
  height: auto;
  background: #fff;
  border-radius: 6px;
  padding: 5px;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 8%;
  border-top: 1px solid var(--muted);
  font-size: 14px;
  gap: 10px;
}

.footer-bottom a {
  color: var(--secondary);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .logo {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px;
  }

  .footer-col {
    min-width: 100%;
  }

  .logo-d {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px;
  }

  .footer-col h4 {
    font-size: 16px;
  }

  .logo-d {
    font-size: 48px;
  }

  .payments img {
    width: 40px;
  }
}
