*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --palette1: #FF5698;
  --palette2: #000000;
  --palette3: #020202;
  --palette4: #020202;
  --palette5: #4E4E4E;
  --palette6: #808080;
  --palette7: #FDEDEC;
  --palette8: #FDF6EE;
  --palette9: #ffffff;
  --body-font: 'Urbanist', sans-serif;
  --heading-font: 'Prompt', sans-serif;
  --nav-font: 'Poppins', sans-serif;
  --content-width: 1240px;
  --content-edge-padding: 20px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body-font); font-size: 16px; line-height: 1.6; color: var(--palette3); background: var(--palette8); }

a { color: var(--palette1); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--palette2); }

img { max-width: 100%; height: auto; }
.container { max-width: var(--content-width); margin: 0 auto; padding: 0 var(--content-edge-padding); }
.container-full { max-width: 100%; padding: 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }

h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); color: var(--palette3); line-height: 1; }
h1 { font-size: 65px; font-weight: 700; }
h2 { font-size: 50px; font-weight: 700; }
h3 { font-size: 30px; font-weight: 700; line-height: 1.3; }
h4 { font-size: 22px; font-weight: 500; line-height: 1.3; }
h5 { font-size: 18px; font-weight: 400; line-height: 1.5; }
h6 { font-size: 14px; font-weight: 400; line-height: 1.5; }

@media (max-width: 1024px) { h2 { font-size: 34px; } h1 { font-size: 45px; } }
@media (max-width: 767px) { h2 { font-size: 28px; } h1 { font-size: 32px; } }

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }

/* Header */
.site-header { background: var(--palette9); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 90px; padding: 0 20px; max-width: var(--content-width); margin: 0 auto; }
.site-logo img { max-width: 200px; display: block; }
@media (max-width: 767px) { .site-logo img { max-width: 150px; } }

.main-nav { display: flex; align-items: center; }
.main-nav ul { list-style: none; display: flex; gap: 0; margin: 0; padding: 0; }
.main-nav ul li { position: relative; }
.main-nav ul li a { display: block; padding: 0 0.9em; font-family: var(--nav-font); font-size: 16px; line-height: 1.6; color: var(--palette2); text-decoration: none; position: relative; }
.main-nav ul li a::after { content: ''; position: absolute; bottom: -2px; left: 0.9em; width: calc(100% - 1.8em); height: 2px; background: var(--palette1); transform: scaleX(0); transition: transform 0.3s; }
.main-nav ul li a:hover::after, .main-nav ul li a.active::after { transform: scaleX(1); }
.main-nav ul li a:hover { color: var(--palette1); }
.main-nav ul li a.active { color: var(--palette1); }

/* Mobile Toggle */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0; color: var(--palette1); }
.mobile-toggle svg { width: 30px; height: 30px; }

/* Mobile Nav Drawer */
.mobile-drawer { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--palette2); z-index: 200; transform: translateX(100%); transition: transform 0.4s; overflow-y: auto; }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header { display: flex; justify-content: flex-end; padding: 20px; }
.mobile-close { background: none; border: none; color: var(--palette9); font-size: 28px; cursor: pointer; padding: 10px; }
.mobile-drawer ul { list-style: none; padding: 0 20px 40px; }
.mobile-drawer ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-drawer ul li a { display: block; padding: 1em 0; color: var(--palette8); font-size: 16px; font-family: var(--body-font); text-decoration: none; }
.mobile-drawer ul li a:hover { color: var(--palette1); }
.mobile-drawer ul li a.active { color: var(--palette1); }

/* Buttons */
.btn { display: inline-block; padding: 18px 50px; font-size: 16px; font-weight: 700; text-transform: capitalize; border-radius: 6px; cursor: pointer; transition: all 0.3s; text-decoration: none; line-height: 1; }
.btn-primary { background: var(--palette1); color: var(--palette9); border: none; }
.btn-primary:hover { background: var(--palette2); color: var(--palette9); }

/* Hero Section */
.hero-section { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 160px 0 40px; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--palette2); opacity: 0.65; }
.hero-section .hero-content { position: relative; z-index: 1; }
.hero-section h1 { color: var(--palette9); font-size: 80px; letter-spacing: -2px; line-height: 1; }
@media (max-width: 1024px) { .hero-section { padding: 140px 0 40px; } .hero-section h1 { font-size: 60px; } }
@media (max-width: 767px) { .hero-section { padding: 120px 0 30px; } .hero-section h1 { font-size: 34px; } }

/* Row Layout (Kadence style sections) */
.section { padding: 60px 0; }
.section-bg-white { background: var(--palette9); }
.section-bg-pink { background: var(--palette7); }
.section-bg-cream { background: var(--palette8); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .services-grid { grid-template-columns: 1fr; } }

.service-box { background: var(--palette7); padding: 30px 20px; text-align: center; transition: all 0.3s; cursor: default; }
.service-box:hover { background: var(--palette1); }
.service-box h3 { font-size: 18px; line-height: 24px; color: var(--palette2); transition: color 0.3s; margin: 0; }
@media (max-width: 767px) { .service-box h3 { font-size: 16px; } }
.service-box:hover h3 { color: var(--palette9); }

/* Info Boxes */
.service-box p { font-size: 15px; color: var(--palette2); margin-top: 10px; transition: color 0.3s; }
.service-box:hover p { color: var(--palette9); }

/* Expertise Section */
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: flex-start; }
@media (max-width: 1024px) { .expertise-grid { grid-template-columns: 1fr; gap: 24px; } }
.expertise-title { font-size: 60px; line-height: 1.1; color: var(--palette3); max-width: 480px; }
@media (max-width: 1024px) { .expertise-title { font-size: 36px; } }
@media (max-width: 767px) { .expertise-title { font-size: 34px; } }

.icon-list { list-style: none; padding: 0; margin: 0; }
.icon-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; font-size: 18px; color: var(--palette3); }
@media (max-width: 767px) { .icon-list li { font-size: 15px; } }
.icon-list li .icon { flex-shrink: 0; width: 24px; height: 24px; margin-top: 2px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card { background: var(--palette7); padding: 30px 20px; }
.testimonial-card h3 { font-size: 20px; line-height: 26px; color: var(--palette3); margin-bottom: 12px; }
.testimonial-card p { font-size: 16px; line-height: 1.6; color: var(--palette5); margin-bottom: 16px; }
.testimonial-card .client-name { font-family: var(--body-font); font-size: 18px; font-weight: 600; color: var(--palette3); display: block; }
.testimonial-card .client-role { font-size: 14px; color: var(--palette6); }

/* FAQ Accordion */
.faq-wrap { max-width: 860px; margin: 0 auto; background: var(--palette8); padding: 40px 0 0; }
.faq-accordion { border-top: 4px solid var(--palette9); max-width: none; }

.accordion-item { border-bottom: 1px solid #eeeeee; }
.accordion-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px; background: var(--palette9); border: none; cursor: pointer; text-align: left; font-weight: 600; font-size: 14px; line-height: 1; color: var(--palette3); font-family: var(--body-font); margin-top: 16px; transition: border-color 0.3s; }
.accordion-header:hover { border-left: 2px solid var(--palette3); border-right: 2px solid var(--palette3); }
.accordion-header.active { border-left: 2px solid var(--palette3); border-right: 1px solid #eeeeee; border-bottom: 1px solid transparent; }
.accordion-icon { font-size: 14px; transition: transform 0.3s; }
.accordion-header.active .accordion-icon { transform: rotate(180deg); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--palette9); padding: 0 16px; }
.accordion-body.open { max-height: 500px; }
.accordion-body-inner { padding: 0 0 16px; }
.accordion-body p { font-size: 14px; line-height: 1.3; color: var(--palette3); }

/* Team CTA Section */
.team-section { background: var(--palette7); position: relative; }
.team-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/waves_02.png') 100% 50% no-repeat; background-size: auto; opacity: 0.03; pointer-events: none; }
.team-content { text-align: center; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.team-content h2 { font-size: 70px; letter-spacing: -3px; line-height: 1.2; margin-bottom: 10px; }
.team-content p { font-size: 16px; line-height: 1.6; color: var(--palette3); padding: 0 100px; margin-bottom: 30px; }
.team-content .btn { margin-top: 30px; }
@media (max-width: 1024px) { .team-content h2 { font-size: 40px; } .team-content p { padding: 0; } }
@media (max-width: 767px) { .team-content h2 { font-size: 34px; } }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 60px 0; }
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; margin-bottom: 5px; color: var(--palette3); font-family: var(--body-font); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 3px; font-family: var(--body-font); font-size: 16px; color: var(--palette3); background: var(--palette9); transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--palette1); }
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info h4 { font-size: 22px; margin-bottom: 14px; }
.contact-info h4.small { font-size: 16px; margin-top: 30px; margin-bottom: 10px; }
.contact-info .divider { height: 1px; background: #e4e4e4; width: 100px; margin: 10px 0 20px; }
.contact-info .info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; font-size: 16px; color: var(--palette3); font-family: var(--body-font); font-weight: 500; line-height: 1; }
.contact-info .info-item .icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--palette1); }
.contact-info a { color: var(--palette2); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; text-decoration-color: transparent; }
.contact-info a:hover { color: var(--palette1); text-decoration-color: var(--palette1); }

/* Footer */
.site-footer { background: var(--palette4); }
.footer-top { background: var(--palette9); border-top: 1px solid #d8d8d8; padding: 20px 0; }
.footer-top .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: center; }
@media (max-width: 1024px) { .footer-top .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .footer-top .container { grid-template-columns: 1fr; } }

.footer-widget h4 { font-size: 14px; color: var(--palette7); margin-bottom: 10px; font-family: var(--body-font); }
.footer-widget p { font-size: 14px; color: var(--palette9); line-height: 1.6; }
.footer-widget a { color: var(--palette9); }
.footer-widget a:hover { color: var(--palette1); }
.footer-widget ul { list-style: none; padding: 0; }
.footer-widget ul li { margin-bottom: 5px; }
.footer-widget ul li a { color: var(--palette9); font-size: 14px; text-decoration: none; }
.footer-widget ul li a:hover { color: var(--palette1); }

.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: #606060; margin: 0; }
.footer-bottom a { color: #606060; }
.footer-bottom a:hover { color: var(--palette1); }

.footer-social { display: flex; gap: 0.6em; flex-wrap: wrap; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--palette2); border-radius: 100px; color: var(--palette2); transition: all 0.3s; }
.footer-social a:hover { color: var(--palette1); border-color: var(--palette1); }
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }

/* Slider */
.slider { position: relative; overflow: hidden; padding: 0 !important; }
.slider-container { position: relative; max-width: 100%; margin: 0 auto; }
.slider-slides { display: flex; transition: transform 0.5s ease; }
.slider-slide { min-width: 100%; position: relative; max-height: 600px; overflow: hidden; }
.slider-slide img { width: 100%; height: 100%; display: block; object-fit: cover; max-height: 600px; }
.slider-controls { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; border: none; transition: background 0.3s; }
.slider-dot.active { background: var(--palette9); }

@media (max-width: 1024px) { .slider-slide, .slider-slide img { max-height: 400px; } }
@media (max-width: 767px) { .slider-slide, .slider-slide img { max-height: 300px; } }

/* Page title section */
.page-title-section { background: var(--palette8); padding: 40px 0; }
.page-title-section h1 { margin: 0; color: var(--palette3); }

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-10 { margin-top: 10px; }
.mb-10 { margin-bottom: 10px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.px-100 { padding-left: 100px; padding-right: 100px; }
@media (max-width: 1024px) { .px-100 { padding-left: 0; padding-right: 0; } }

/* SVG Icons */
.icon-arrow-right-circle, .icon-check, .icon-map-pin, .icon-envelope, .icon-phone { display: inline-block; width: 1em; height: 1em; vertical-align: middle; stroke: currentColor; fill: none; stroke-width: 2; }
