/* ===================================
   SOLAR TROVE - GRADIENT MODERN DESIGN
   Design Style: gradient_modern
   =================================== */

/* === CSS RESET & NORMALIZE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333333;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFFFFF 100%);
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 16px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #333333;
  line-height: 1.7;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* === HEADER === */
header {
  background: linear-gradient(135deg, rgba(255, 243, 224, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(216, 67, 21, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* === NAVIGATION === */
.main-nav {
  display: none;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D84315 0%, #F57C00 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D84315;
}

.main-nav a:hover::before {
  width: 80%;
}

@media (min-width: 769px) {
  .main-nav {
    display: flex;
  }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(216, 67, 21, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FFF3E0 0%, #FFFFFF 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.3);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
  color: #FFFFFF;
  transform: translateX(10px);
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
  color: #FFFFFF;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(216, 67, 21, 0.3);
  background: linear-gradient(135deg, #F57C00 0%, #D84315 100%);
}

.btn-secondary {
  background: transparent;
  color: #D84315;
  border: 2px solid #D84315;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(216, 67, 21, 0.3);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  justify-content: center;
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(135deg, #D84315 0%, #F57C00 50%, #FFF3E0 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: #FFF3E0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.page-hero {
  padding: 80px 20px;
}

.page-hero h1 {
  font-size: 48px;
}

/* === SECTIONS === */
.mission-statement {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.1);
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

/* === CARD LAYOUTS === */
.services-grid,
.benefits-grid,
.principles-grid,
.categories-grid,
.stories-grid,
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.service-card,
.benefit,
.principle,
.category-card,
.story-card,
.contact-card,
.service-detail-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 243, 224, 0.5) 100%);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 25px rgba(216, 67, 21, 0.1);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.service-card::before,
.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #D84315 0%, #F57C00 100%);
  border-radius: 16px 16px 0 0;
}

.service-card:hover,
.benefit:hover,
.principle:hover,
.category-card:hover,
.story-card:hover,
.contact-card:hover,
.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(216, 67, 21, 0.2);
}

.service-card h3,
.benefit h3,
.principle h3,
.category-card h3,
.story-card h3,
.contact-card h3,
.service-detail-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
}

.service-features {
  margin: 20px 0;
  padding-left: 0;
}

.service-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  list-style: none;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F57C00;
  font-weight: 700;
  font-size: 18px;
}

.story-location {
  color: #F57C00;
  font-weight: 600;
  margin-top: 12px;
}

/* === TESTIMONIALS === */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 24px;
  border-left: 5px solid #F57C00;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 16px;
}

.customer-name {
  font-weight: 700;
  color: #D84315;
  font-size: 14px;
}

/* === LOCATION & CONTACT === */
.location-details,
.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: space-around;
}

.address,
.hours,
.contact-quick,
.address-info,
.directions-info {
  flex: 1 1 250px;
  background: rgba(255, 255, 255, 0.8);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hours-table {
  margin-top: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(216, 67, 21, 0.1);
}

.hours-row span:first-child {
  font-weight: 600;
  color: #333333;
}

.hours-row span:last-child {
  color: #F57C00;
  font-weight: 600;
}

.hours-note {
  margin-top: 16px;
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

/* === CONTACT FORM === */
.form-container {
  max-width: 700px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.1);
}

.form-note {
  margin-bottom: 32px;
  padding: 16px;
  background: rgba(255, 243, 224, 0.5);
  border-radius: 8px;
  border-left: 4px solid #F57C00;
}

.field-group {
  margin-bottom: 24px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333333;
}

.field-placeholder {
  background: rgba(255, 243, 224, 0.3);
  border: 2px solid rgba(216, 67, 21, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  color: #666666;
  transition: all 0.3s ease;
}

.field-placeholder:hover {
  border-color: #F57C00;
  background: rgba(255, 243, 224, 0.5);
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-brand,
.footer-nav,
.footer-contact,
.footer-legal {
  flex: 1 1 200px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: #FFF3E0;
  font-size: 14px;
  font-style: italic;
}

footer h4 {
  color: #FFF3E0;
  background: none;
  -webkit-text-fill-color: #FFF3E0;
  font-size: 18px;
  margin-bottom: 16px;
}

footer a {
  display: block;
  color: #CCCCCC;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #F57C00;
  transform: translateX(5px);
}

footer p {
  color: #CCCCCC;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
  color: #FFFFFF;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF3E0 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h3 {
  margin-top: 0;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #F57C00;
}

.cookie-category h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #CCCCCC;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch.active::after {
  left: 27px;
}

.modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* === LEGAL CONTENT === */
.legal-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.1);
}

.legal-content h1 {
  margin-top: 0;
}

.last-updated,
.subtitle {
  color: #666666;
  font-size: 14px;
  margin-bottom: 32px;
  display: block;
}

.legal-content h2 {
  margin-top: 40px;
  font-size: 24px;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 20px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  padding-left: 8px;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  background: linear-gradient(135deg, #D84315 0%, #F57C00 100%);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}

.confirmation-message,
.next-steps,
.contact-summary {
  text-align: center;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.action-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 243, 224, 0.5) 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 6px 25px rgba(216, 67, 21, 0.1);
  text-align: center;
}

/* === CTA SECTIONS === */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, rgba(216, 67, 21, 0.1) 0%, rgba(245, 124, 0, 0.1) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}

.why-choose-us,
.philosophy,
.approach,
.booking-info,
.photography-services {
  text-align: center;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .service-card,
  .benefit,
  .principle,
  .category-card,
  .story-card,
  .contact-card,
  .service-detail-card,
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .form-container {
    padding: 24px;
  }
  
  .location-details {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .service-card,
  .action-card {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.testimonial-card,
.story-card {
  animation: fadeIn 0.6s ease-out;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* === ACCESSIBILITY === */
:focus {
  outline: 3px solid #F57C00;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #F57C00;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}