/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-bottom{
    text-align: center;
    justify-content: center !important;
}

:root {
  /* Deep navy blue as primary background */
  --background: oklch(0.15 0.08 240);
  --foreground: oklch(0.98 0.02 60);

  /* Card backgrounds with subtle navy tint */
  --card: oklch(0.18 0.06 240);
  --card-foreground: oklch(0.95 0.02 60);

  /* Vibrant orange as primary accent */
  --primary:  #e46212;
  --primary-foreground: oklch(0.98 0.02 60);

  /* Secondary with muted navy */
  --secondary: oklch(0.25 0.06 240);
  --secondary-foreground: oklch(0.95 0.02 60);

  /* Muted elements */
  --muted: oklch(0.22 0.05 240);
  --muted-foreground: oklch(0.75 0.03 240);

  /* Accent orange variations */
  --accent: oklch(0.65 0.18 45);
  --accent-foreground: oklch(0.98 0.02 60);

  /* Borders and inputs */
  --border: oklch(0.3 0.05 240);
  --input: oklch(0.25 0.06 240);
}

body {
font-family: "Playfair Display", serif;
 background: #000b29;
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

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

@media (max-width: 1500px){
  .container {
    max-width: 1200px;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--foreground);
}

.logo-text p {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: "Playfair Display", serif;
}

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

.btn-primary:hover {
  opacity: 0.9;
}

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

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-lg {
  padding: 0.8rem 2rem;
  font-weight: 500;
  font-size: 0.88rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 1rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-accent {
  display: block;
  color: var(--primary);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
     font-family: "Playfair Display", serif;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: space-around;
}

.stat{
  text-align: center;
}

.stat-value {
 font-size: 1.5rem;
  font-weight: 700;
  color: #fff6eb;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.stat .service-icon{
  margin: auto;
}

.hero .btn-outline{
  border: 1px solid #133144;
  background: rgba(255, 255, 255, 0);
  color: #fff6eb;
}

.hero-image {
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 6rem 0rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color:  #001329;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #133144;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(228, 98, 18, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg{
  stroke: #e46212;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff6eb;
}

.service-description {
  color: #9eb1bf;
  line-height: 1.6;
  font-size: 1rem;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0rem;
  background-color: rgba(0, 36, 59, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.gallery-item {
  cursor: pointer;
}

.gallery-image {
  aspect-ratio: 3 / 2;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.gallery-info p {
  color: var(--muted-foreground);
}

/* Pricing Section */
.pricing {
  padding: 6rem 0rem;
  background-color: var(--background);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-popular {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.pricing-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: "Playfair Display", serif;
}

.price-period {
  color: var(--muted-foreground);
}

.pricing-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature span {
  color: var(--foreground);
}

.pricing-footer {
  text-align: center;
  margin-top: 3rem;
}

.pricing-footer p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  padding: 6rem 0rem;
  background-color: rgba(0, 29, 47, 0.3);
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  transition: background-color 0.2s;
  border-radius: 0.5rem;
}

.faq-question:hover {
  background-color: var(--secondary);
}

.faq-icon {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1rem 1.5rem 1rem;
}

.faq-answer p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.faq-footer {
  text-align: center;
  margin-top: 3rem;
}

.faq-footer p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-title-accent {
  display: block;
  color: var(--primary);
}

.about-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-advantages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.advantage svg {
  color: var(--primary);
  flex-shrink: 0;
}

.advantage span {
  color: var(--foreground);
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;

}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.about-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-value {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Playfair Display", serif;
}

.badge-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 6rem 0rem;
  /* background: rgba(0, 36, 59, 0.3); */
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: oklch(0.65 0.18 45 / 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.contact-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-form-wrapper {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 0.75rem;
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
}

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

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

/* Footer */
.footer {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 4rem 0rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo h3 {
  font-size: 1.25rem;
  color: var(--foreground);
}

.footer-logo p {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.footer-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column ul li a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--foreground);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.footer-contact svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
    .hero-stats{
    display: none;
  }
  .hero-buttons{
    margin-bottom: 0rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-stats{
    display: none;
  }

  .phone-link {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .services-grid,
  .gallery-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
