/* ================================
   Global Styles
================================= */
:root {
  --primary: #004080;
  --secondary: #f4f4f4;
  --accent: #00bcd4;
  --dark: #222;
  --light: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: var(--secondary);
  color: var(--dark);
  line-height: 1.6;
}


/* ================================
   Layout Sections
================================= */

header,
section,
footer {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
/* Card Flip Logic */

.perspective {
  perspective: 1000px;
}

.transform-style-preserve-3d {
  transform-style: preserve-3d;
}

.backface-hidden {
  backface-visibility: hidden;
}

.rotate-y-180 {
  transform: rotateY(180deg);
}


.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

button {
    background-color: #1da1f2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

button:hover {
    background-color: #1a91da;
}



.faq-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: left;
    cursor: pointer;
}

.faq-item input {
    display: none;
}

.faq-item label {
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.faq-item label::before {
    content: '▼';
    color: #1e90ff;
    position: absolute;
    left: 0;
    transition: transform 0.3s;
}

.faq-item input:checked + label::before {
    transform: rotate(180deg);
}


.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0a2a66;
  padding: 40px;
}

.contact-form {
  background: #005be0;
  padding: 30px 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form span {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 4px;
  display: inline-block;
}

.input-icon {
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 2px solid white;
  padding: 6px 0;
}

.input-icon i {
  margin-right: 10px;
  color: white;
}

.input-icon input,
.input-icon textarea {
  flex: 1;
  background: none;
  border: none;
  color: white;
  outline: none;
  font-size: 14px;
  padding: 4px 0;
}

.submit-btn {
  width: 100%;
  background: black;
  color: white;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #222;
}

.quote-section {
  background: #fdfdfd;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.quote-wrapper {
  display: flex;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  flex-wrap: wrap;
}

.quote-info {
  flex: 1;
  padding: 60px 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-info h1 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 20px;
}

.quote-info h1 span {
  color: #2563eb; /* Blue highlight */
  display: block;
  font-weight: bold;
}

.quote-info p {
  color: #555;
  font-size: 14px;
  margin-bottom: 40px;
}

.quote-info .links a {
  color: #555;
  font-size: 13px;
  margin-right: 15px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.quote-info .links a:hover {
  color: #2563eb;
  border-color: #2563eb;
}

.logo {
  width: 30px;
  margin-bottom: 30px;
}

.quote-form {
  flex: 1;
  padding: 60px 40px;
  background: #f9fafb;
}

.quote-form form {
  display: flex;
  flex-direction: column;
}

.quote-form label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: 16px;
  color: #333;
}

.quote-form input {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  background: white;
  transition: border 0.3s;
}

.quote-form input:focus {
  border-color: #2563eb;
  outline: none;
}

.quote-form button {
  margin-top: 30px;
  padding: 14px;
  background: #2563eb;
  color: white;
  border: none;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.quote-form button:hover {
  background: #1d4ed8;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}


.thank-you-card {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  animation: fadeIn 0.6s ease;
}
.thank-you-card h1 {
  font-size: 24px;
  color: #222;
  margin-bottom: 10px;
}
.thank-you-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}
.thank-you-card svg {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}
.btn-home {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-home:hover {
  background-color: #0056b3;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .quote-wrapper {
    flex-direction: column;
  }

  .quote-info,
  .quote-form {
    padding: 40px 20px;
  }

  .quote-info h1 {
    font-size: 1.8rem;
  }
}
