:root { 
  --primary: #1a1a1a; 
  --accent: #ff6b35; 
  --bg: #f8f9fa; 
  --text: #2d3748; 
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
* { box-sizing:border-box; }
body { 
  margin:0; 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
  color:var(--text); 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  line-height:1.6; 
  font-weight: 400;
  font-size: 16px;
}

/* Global image rules */
img {
  max-width: 100%;   
  height: auto;      
  display: block;    
  border-radius: 12px; 
  box-shadow: var(--shadow);
}

.hero { 
  padding: 80px 20px 60px; 
  text-align: center; 
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%), url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
  color: white;
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.6) 100%);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero h1 { 
  margin: 0 0 20px; 
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px !important;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 32px !important;
}

/* Hero image - hide default since we're using background */
.hero img {
  display: none;
}

.btn { 
  display: inline-block; 
  margin-top: 20px; 
  padding: 16px 32px; 
  background: linear-gradient(135deg, var(--accent) 0%, #e55a2b 100%);
  color: #fff; 
  text-decoration: none; 
  border-radius: 50px; 
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background: linear-gradient(135deg, #e55a2b 0%, var(--accent) 100%);
}
.section { 
  max-width: 1200px; 
  margin: 60px auto; 
  padding: 0 20px; 
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.section h2 { 
  margin: 0 0 40px; 
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  letter-spacing: -0.01em;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, #e55a2b 100%);
  border-radius: 2px;
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.service-grid div {
  background: var(--card-bg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-grid div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, #e55a2b 100%);
}

.service-grid div:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-grid h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--primary);
  margin: 20px 0 16px;
  font-weight: 600;
  line-height: 1.3;
}

.service-grid p {
  color: var(--text);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
}

.service-grid img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.service-grid div:hover img {
  transform: scale(1.05);
}

/* Benefits section */
.benefits-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.benefit-item {
  background: var(--card-bg);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
}

.benefit-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
}

.benefit-item h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.benefit-item p {
  color: var(--text);
  line-height: 1.6;
  opacity: 0.9;
}

/* Service pricing */
.price {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin-top: 16px !important;
  color: var(--primary);
}

/* Testimonial section */
.testimonial-section {
  background: var(--primary);
  color: white;
  text-align: center;
}

.testimonial-section h2 {
  color: white;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  margin: 0 0 24px;
  line-height: 1.6;
  quotes: """ """ "'" "'";
}

.testimonial blockquote::before {
  content: open-quote;
}

.testimonial blockquote::after {
  content: close-quote;
}

.testimonial cite {
  font-size: clamp(1rem, 2vw, 1.1rem);
  opacity: 0.9;
  font-weight: 500;
}

/* Gallery sections */
.gallery-section {
  margin: 48px 0;
}

.gallery-section h3 {
  font-size: clamp(1.5rem, 3.5vw, 1.8rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.gallery-subtitle {
  text-align: center;
  color: var(--text);
  margin-bottom: 36px;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-subtitle a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* Portfolio Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.results-grid figure {
  margin: 0;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.results-grid figure::before {
  content: '✨';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.results-grid figure:hover::before {
  opacity: 1;
}

.results-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.results-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.results-grid figure:hover img {
  transform: scale(1.05);
}

.results-grid figcaption {
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  background: linear-gradient(135deg, var(--card-bg) 0%, #f8fafc 100%);
  line-height: 1.4;
}

/* Social Proof Section */
.social-proof {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #e55a2b 100%);
  border-radius: 16px;
  color: white;
}

.social-proof h4 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  margin-bottom: 20px;
  color: white;
  font-weight: 600;
}

.social-proof p {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  margin-bottom: 28px;
  opacity: 0.95;
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-btn {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: var(--accent);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile responsiveness for comparisons */
@media (max-width: 768px) {
  .comparison-pair {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .before-shot::before {
    content: '👆 BEFORE';
  }
  
  .after-shot::before {
    content: 'AFTER 👇';
  }
}

/* Profile image */
.profile {
  max-width: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 4px solid var(--accent);
  box-shadow: var(--shadow-lg);
}

/* Service area images */
#service-area img {
  width: 100%;
  max-width: 600px;
  margin: 24px auto;
  border-radius: 16px;
  display: block;
}

/* Map container */
.map-container {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--accent);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Service areas */
.service-areas {
  margin-top: 48px;
}

.service-areas h3 {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 1.8rem);
  color: var(--primary);
  margin-bottom: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.area-item {
  background: linear-gradient(135deg, var(--card-bg) 0%, #f8fafc 100%);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.area-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.area-item strong {
  color: var(--primary);
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.area-item p {
  color: var(--text);
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

/* Service details */
.service-details {
  margin-top: 32px;
  padding: 24px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.service-details p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(0.95rem, 2vw, 1rem);
  line-height: 1.6;
}

.service-details p:last-child {
  margin-bottom: 0;
}

.service-details strong {
  color: var(--primary);
  font-weight: 600;
}

/* Location benefits */
.location-benefits {
  margin-top: 48px;
  background: linear-gradient(135deg, #f8fafc 0%, var(--card-bg) 100%);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.location-benefits h4 {
  color: var(--primary);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.location-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.location-benefits li {
  padding: 12px 0;
  font-size: 1.1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.location-benefits li:last-child {
  border-bottom: none;
}

.location-benefits strong {
  color: var(--primary);
}

/* Process steps */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-steps p {
  margin: 0 0 20px;
  padding: 16px 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.process-steps p:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.process-steps strong {
  color: var(--primary);
  font-weight: 600;
}

/* Quick info cards */
.quick-info {
  margin-top: 40px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.info-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, #f8fafc 100%);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border-color: var(--accent);
}

.info-card h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.big-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  margin: 16px 0 8px;
  letter-spacing: -0.02em;
}

.btn-small {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 12px 0;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-small:hover {
  background: #d04727;
  transform: scale(1.05);
}

.small-text {
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  color: var(--text);
  opacity: 0.8;
  margin: 8px 0 0;
}

.booking-card {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff5f3 0%, var(--card-bg) 100%);
}

.hours-card {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f0f7ff 0%, var(--card-bg) 100%);
}

.photos-card {
  border-color: #E4405F;
  background: linear-gradient(135deg, #fdf2f8 0%, var(--card-bg) 100%);
}

/* Instagram styling */
.instagram-logo {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.instagram-logo svg {
  transition: transform 0.3s ease;
}

.instagram-logo:hover svg {
  transform: scale(1.1);
}

.instagram-btn {
  background: linear-gradient(45deg, #E4405F, #833AB4, #C13584);
  color: white;
}

.instagram-btn:hover {
  background: linear-gradient(45deg, #C13584, #833AB4, #E4405F);
  transform: scale(1.05);
}

#about {
  text-align: center;
}

#about p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.8;
}
.footer { 
  text-align: center; 
  padding: 60px 20px 40px; 
  background: var(--primary);
  color: white;
  margin-top: 60px;
}

.footer h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 24px;
}

.footer p {
  font-size: 1.1rem;
  margin: 12px 0;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff8660;
}

@media (min-width:768px){ 
  .hero h1 { font-size: 4rem; }
  .section { margin: 80px auto; }
  .results-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
}