/* ========================================
   NitroGlide Photography - Elegant Classic CSS
   Design Style: Timeless elegance with refined elements
   ======================================== */

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

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

body {
  font-family: 'Georgia', 'Garamond', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #fafaf8;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 14px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

a {
  color: #2C5F8D;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E8A842;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 12px;
  color: #4a4a4a;
}

blockquote {
  border-left: 4px solid #E8A842;
  padding: 20px 24px;
  margin: 32px 0;
  background-color: #f5f5f0;
  font-style: italic;
  color: #3a3a3a;
  font-size: 18px;
}

strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e6e0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  color: #3a3a3a;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  font-family: 'Garamond', serif;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #2C5F8D;
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1e4366;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #3a3a3a;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #E8A842;
}

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

.mobile-nav a {
  font-size: 20px;
  color: #3a3a3a;
  padding: 12px 0;
  border-bottom: 1px solid #e8e6e0;
  font-family: 'Garamond', serif;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8A842;
  padding-left: 10px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 16px;
  font-family: 'Garamond', serif;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  margin: 8px 8px 8px 0;
}

.btn-primary {
  background-color: #2C5F8D;
  color: white;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background-color: #1e4366;
  border-color: #1e4366;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 95, 141, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

.btn-secondary:hover {
  background-color: #2C5F8D;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 95, 141, 0.2);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f5f5f0 0%, #fafaf8 100%);
  padding: 80px 20px;
  border-bottom: 2px solid #e8e6e0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-badge {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4366 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: #f0f0f0;
  font-size: 18px;
}

/* CARD LAYOUTS */
.benefits-grid,
.services-grid,
.packages-grid,
.team-grid,
.highlights-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-item,
.service-card,
.package-card,
.team-member,
.highlight,
.method-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e8e6e0;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit-item:hover,
.service-card:hover,
.package-card:hover,
.team-member:hover,
.highlight:hover,
.method-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #E8A842;
}

.benefit-item img,
.method-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.benefit-item h3,
.service-card h3,
.package-card h3,
.team-member h3,
.highlight h3,
.method-card h3 {
  margin-bottom: 12px;
  color: #1a1a1a;
}

.benefit-item p,
.service-card p,
.highlight p,
.method-card p {
  color: #5a5a5a;
  font-size: 15px;
}

.service-card .price,
.package-card .price,
.addon-item .price {
  font-size: 28px;
  color: #E8A842;
  font-weight: 600;
  margin: 16px 0;
  font-family: 'Garamond', serif;
}

.package-card ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

.package-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #4a4a4a;
}

.package-card ul li:last-child {
  border-bottom: none;
}

/* TESTIMONIALS */
.testimonials,
.testimonials-portfolio,
.testimonials-thankyou {
  background-color: #f5f5f0;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px 28px;
  border-radius: 4px;
  border-left: 4px solid #E8A842;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card p {
  font-style: italic;
  color: #3a3a3a;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-card .author {
  font-style: normal;
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

/* SECTIONS */
.value-proposition,
.services-overview,
.services-intro,
.story,
.philosophy,
.team,
.credentials,
.local-roots,
.portfolio-intro,
.portfolio-highlights,
.pricing-intro,
.add-ons-pricing,
.payment-terms,
.contact-intro,
.contact-methods,
.office-info,
.response-expectations,
.while-waiting,
.confirmation-message,
.next-steps {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.section-intro {
  font-size: 18px;
  color: #5a5a5a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.value-proposition h2,
.services-overview h2,
.testimonials h2,
.portfolio-intro h2,
.pricing-intro h2,
.contact-intro h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-proposition p,
.services-intro p,
.portfolio-intro p,
.pricing-intro p,
.contact-intro p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 17px;
}

/* SERVICE DETAILED */
.service-detailed {
  padding: 50px 20px;
  margin-bottom: 40px;
}

.service-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #e8e6e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-content .tagline {
  font-size: 18px;
  color: #6a6a6a;
  font-style: italic;
  margin-bottom: 16px;
}

.service-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C5F8D;
}

.service-content .ideal-for {
  background-color: #f5f5f0;
  padding: 16px;
  border-left: 3px solid #E8A842;
  margin-top: 24px;
}

/* ADD-ONS */
.add-ons {
  padding: 60px 20px;
  background-color: #fafaf8;
  margin-bottom: 40px;
}

.addons-grid,
.addons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.addon-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 230px;
  background-color: #ffffff;
  padding: 28px 24px;
  border-radius: 4px;
  border: 1px solid #e8e6e0;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.addon-item:hover {
  border-color: #E8A842;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.addon-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.addon-item p:not(.price) {
  font-size: 14px;
  color: #6a6a6a;
}

/* PORTFOLIO PROJECTS */
.portfolio-projects {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.project {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 4px;
  border-left: 5px solid #2C5F8D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.project h3 {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.project p {
  color: #4a4a4a;
  margin-bottom: 12px;
}

.project-details {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8e6e0;
}

/* PRINCIPLES & CREDENTIALS */
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.principle {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 28px;
  background-color: #f5f5f0;
  border-radius: 4px;
  border-left: 3px solid #E8A842;
  margin-bottom: 20px;
  position: relative;
}

.principle h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.credentials-list {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 32px auto;
}

.credentials-list li {
  padding: 16px;
  background-color: #ffffff;
  margin-bottom: 12px;
  border-left: 3px solid #2C5F8D;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* CTA SECTIONS */
.cta-banner,
.cta-section,
.homepage-return {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4366 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2,
.cta-section h2,
.homepage-return h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p,
.homepage-return p {
  color: #f0f0f0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background-color: #E8A842;
  border-color: #E8A842;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #d49533;
  border-color: #d49533;
}

.cta-banner .btn-secondary,
.cta-section .btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.cta-banner .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background-color: white;
  color: #2C5F8D;
}

.contact-hours,
.contact-info {
  font-size: 14px;
  color: #e0e0e0;
  margin-top: 16px;
}

/* CONTACT PAGE */
.form-display {
  max-width: 700px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #e8e6e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #3a3a3a;
  font-weight: 600;
  font-size: 15px;
}

.field-placeholder {
  width: 100%;
  height: 45px;
  background-color: #f5f5f0;
  border: 1px solid #e8e6e0;
  border-radius: 2px;
}

.field-placeholder.large {
  height: 120px;
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

.privacy-note {
  font-size: 13px;
  color: #6a6a6a;
  margin-top: 16px;
  font-style: italic;
}

.office-details {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #e8e6e0;
}

.office-details h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2C5F8D;
}

.office-details .note {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 16px;
}

.response-expectations ol {
  max-width: 700px;
  margin: 32px auto;
  padding-left: 24px;
}

.response-expectations ol li {
  padding: 12px 0;
  color: #4a4a4a;
  font-size: 16px;
}

.timeline {
  text-align: center;
  font-weight: 600;
  color: #2C5F8D;
  margin-top: 24px;
}

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

.thank-you-content,
.thank-you-box {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 60px 40px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e6e0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

.thank-you-content h1,
.thank-you-box h1 {
  margin-bottom: 16px;
  color: #1a1a1a;
}

.lead {
  font-size: 20px;
  color: #2C5F8D;
  margin-bottom: 24px;
  font-weight: 600;
}

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

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #e8e6e0;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.action-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #E8A842;
}

.action-card h3 {
  margin-bottom: 12px;
  color: #2C5F8D;
}

.action-card p {
  margin-bottom: 20px;
  font-size: 15px;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2C5F8D;
  border-bottom: 2px solid #e8e6e0;
  padding-bottom: 12px;
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 14px;
  color: #3a3a3a;
}

.legal-content ul,
.legal-content ol {
  margin-top: 16px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* FOOTER */
footer {
  background-color: #1a1a1a;
  color: #d0d0d0;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 3px solid #E8A842;
}

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

.footer-col {
  flex: 1 1 280px;
  min-width: 250px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #E8A842;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}

.footer-col p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col a {
  color: #c0c0c0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #E8A842;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: #b0b0b0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  color: #888888;
  font-size: 13px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #E8A842;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
}

#cookie-consent-banner.show {
  display: block;
}

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: #3a3a3a;
  font-size: 14px;
}

.cookie-banner-text strong {
  color: #1a1a1a;
}

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

.cookie-banner-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
  margin: 0;
}

#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
  color: #1a1a1a;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #f5f5f0;
  border-radius: 4px;
  border-left: 3px solid #2C5F8D;
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category p {
  font-size: 14px;
  color: #5a5a5a;
}

.cookie-category label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  margin-left: 12px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.cookie-category input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Cards */
  .benefit-item,
  .service-card,
  .package-card,
  .team-member,
  .highlight,
  .method-card,
  .addon-item,
  .principle,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner-buttons .btn {
    width: 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Service Content */
  .service-content {
    padding: 24px;
  }
  
  /* Form Display */
  .form-display {
    padding: 24px;
  }
  
  /* Thank You */
  .thank-you-content,
  .thank-you-box {
    padding: 40px 24px;
  }
  
  /* Legal Content */
  .legal-content {
    padding: 24px 20px;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .service-card .price,
  .package-card .price,
  .addon-item .price {
    font-size: 24px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
}

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

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

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

.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease-out;
}

/* ACCESSIBILITY */
.btn:focus,
a:focus,
input:focus,
button:focus {
  outline: 2px solid #E8A842;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  .btn {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}