@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
 --primary-color: #3b82f6; /* Calming Blue */
 --primary-dark: #2563eb;
 --secondary-color: #e0f2fe; /* Light sky blue */
 --text-dark: #1f2937;
 --text-light: #6b7280;
 --bg-light: #f9fafb;
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Base Reset & Typography */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
 scroll-padding-top: 100px;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-dark);
 letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}
a:hover {
 color: var(--primary-dark);
}

.container {
 width: 100%;
 max-width: 1280px;
 margin: 0 auto;
 padding: 0 40px;
}

/* Lots of Air - Section Styling */
.section {
 padding: 12vh 0;
 overflow: hidden;
}

.section-light {
 background-color: var(--bg-light);
}

.section-header {
 max-width: 720px;
 margin: 0 auto 60px;
 text-align: center;
}

.section-label {
 display: inline-block;
 font-size: 0.9rem;
 font-weight: 600;
 color: var(--primary-color);
 margin-bottom: 24px;
 text-transform: uppercase;
 letter-spacing: 0.05em;
}

.section-header p {
 font-size: 1.125rem;
 margin-top: 16px;
}

/* Header & Navigation - Lots of Air */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.8);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 padding: 24px 0;
 transition: var(--transition);
 border-bottom: 1px solid transparent;
}

.header.scrolled {
 background: rgba(255, 255, 255, 0.98);
 border-bottom: 1px solid var(--border-color);
 padding: 16px 0;
 box-shadow: var(--shadow-sm);
}

.nav {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
 letter-spacing: -0.05em;
}

.nav-links {
 display: flex;
 list-style: none;
 gap: 48px; /* Wide gaps */
}

.nav-links a {
 font-weight: 500;
 color: var(--text-light);
 font-size: 1rem;
 padding: 8px;
 position: relative;
}

.nav-links a:hover,
.nav-links a.active {
 color: var(--text-dark);
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 28px;
 height: 3px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: all 0.4s ease;
 border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) {
 transform: translateY(9px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
 opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
 transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 16px 32px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: none;
 text-decoration: none;
 text-align: center;
}

.btn-primary {
 background: var(--primary-color);
 color: white;
 box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
 background: var(--primary-dark);
 transform: translateY(-3px);
 box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
 background: var(--bg-white);
 color: var(--text-dark);
 border: 1px solid var(--border-color);
 box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
 background: var(--bg-light);
 transform: translateY(-3px);
 box-shadow: var(--shadow-md);
}

/* Hero Section - Lots of Air */
.hero {
 min-height: 80vh;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 100px 0;
 background: var(--bg-white);
}

.hero-content {
 max-width: 800px;
 animation: fadeIn 1s ease-out;
}

.hero h1 {
 margin-bottom: 48px;
}

/* Services Cards - Lots of Air */
.services-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 60px; /* Massive gap */
}

.service-card {
 background: var(--bg-white);
 padding: 40px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-lg);
 transition: var(--transition);
 text-align: center;
}

.service-card:hover {
 transform: translateY(-10px);
 box-shadow: var(--shadow-lg);
 border-color: transparent;
}

.service-card-icon {
 margin-bottom: 24px;
 color: var(--primary-color);
}

.service-card-icon svg {
 width: 48px;
 height: 48px;
}

.service-card h3 {
 margin-bottom: 16px;
}

/* About Section - Lots of Air */
.about-section-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: center;
 gap: 100px;
}

.about-image-wrapper {
 display: flex;
 justify-content: center;
 align-items: center;
}

.about-image {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 width: 100%;
 max-width: 450px;
 height: auto;
 object-fit: cover;
}

.about-content h2 {
 margin-bottom: 24px;
}

.about-content p {
 margin-bottom: 24px;
 font-size: 1.1rem;
}

.about-content ul {
 list-style-type: none;
 padding: 0;
 margin-top: 24px;
}

.about-content li {
 position: relative;
 padding-left: 30px;
 margin-bottom: 12px;
}

.about-content li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 1px;
 color: var(--primary-color);
 font-weight: bold;
}

/* Testimonial Section - Lots of Air */
.testimonial-section {
 text-align: center;
}

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

.testimonial-quote {
 font-size: clamp(1.5rem, 4vw, 2.25rem);
 font-weight: 400;
 color: var(--text-dark);
 line-height: 1.5;
 margin-bottom: 32px;
}

.testimonial-author {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 16px;
}

.testimonial-author-img {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 object-fit: cover;
}

.testimonial-author-info span {
 display: block;
}

.testimonial-author-name {
 font-weight: 600;
 color: var(--text-dark);
}

.testimonial-author-role {
 font-size: 0.9rem;
}

/* Contact Section - Lots of Air */
.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 100px;
 align-items: flex-start;
}

.contact-info p {
 font-size: 1.1rem;
 margin-bottom: 32px;
}

.contact-details-item {
 display: flex;
 align-items: flex-start;
 gap: 20px;
 margin-bottom: 24px;
}

.contact-details-item-icon {
 color: var(--primary-color);
 flex-shrink: 0;
 margin-top: 5px;
}

.contact-details-item-icon svg {
 width: 24px;
 height: 24px;
}

.contact-details-item-content span {
 display: block;
 font-weight: 600;
 color: var(--text-dark);
}

.contact-details-item-content a {
 color: var(--text-light);
}
.contact-details-item-content a:hover {
 color: var(--primary-color);
}

.contact-form .form-group {
 margin-bottom: 32px; /* Huge spacing */
}

.contact-form .form-label {
 display: block;
 font-weight: 500;
 color: var(--text-dark);
 margin-bottom: 12px;
 font-size: 0.9rem;
}

.contact-form .form-control {
 width: 100%;
 padding: 16px;
 font-size: 1rem;
 font-family: var(--font-main);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
 background: var(--bg-white);
 color: var(--text-dark);
}

.contact-form .form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.contact-form textarea.form-control {
 min-height: 150px;
 resize: vertical;
}

/* Footer - Lots of Air */
.footer {
 background: var(--text-dark);
 color: #a0aec0;
 padding: 100px 0 40px;
 margin-top: 10vh;
}

.footer-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 60px; /* Spread out */
 margin-bottom: 80px;
}

.footer-brand .footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 24px;
 display: block;
}

.footer-heading {
 font-size: 0.9rem;
 font-weight: 600;
 color: white;
 margin-bottom: 24px;
 text-transform: uppercase;
 letter-spacing: 0.05em;
}

.footer-links {
 list-style: none;
}

.footer-links li {
 margin-bottom: 16px;
}

.footer-links a {
 color: #a0aec0;
}

.footer-links a:hover {
 color: white;
}

.footer-contact-item {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 margin-bottom: 16px;
 font-size: 0.9rem;
}

.footer-contact-item svg {
 width: 18px;
 height: 18px;
 flex-shrink: 0;
 margin-top: 4px;
 color: var(--primary-color);
}

.footer-bottom {
 border-top: 1px solid #4a5568;
 padding-top: 40px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
}

.footer-copyright {
 color: #718096;
}

.footer-social {
 display: flex;
 gap: 16px;
}

.footer-social a {
 color: #a0aec0;
}
.footer-social a:hover {
 color: white;
}
.footer-social svg {
 width: 20px;
 height: 20px;
}

/* Page Specific styles */
.text-page-container {
 padding-top: 120px;
 padding-bottom: 120px;
}
.text-page-content {
 max-width: 800px;
 margin: 0 auto;
}
.text-page-content h1 {
 margin-bottom: 40px;
}
.text-page-content h2 {
 margin-top: 40px;
 margin-bottom: 20px;
}
.text-page-content p, .text-page-content ul {
 margin-bottom: 20px;
}
.text-page-content ul {
 padding-left: 20px;
}

.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 margin-top: 60px;
 border: 1px solid var(--border-color);
}
.map-container iframe {
 width: 100%;
 height: 100%;
 border: none;
}

/* Team Section for About page */
.team-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 60px;
}
.team-member {
 text-align: center;
}
.team-member-img {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 24px;
 box-shadow: var(--shadow-lg);
}
.team-member-name {
 font-size: 1.25rem;
 font-weight: 600;
 color: var(--text-dark);
 margin-bottom: 4px;
}
.team-member-title {
 color: var(--primary-color);
 font-weight: 500;
}

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 20px;
 left: 20px;
 right: 20px;
 max-width: 500px;
 background: var(--text-dark);
 color: var(--bg-light);
 padding: 24px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 z-index: 2000;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 animation: slideUp 0.5s ease-out;
}
#cookie-banner p {
 margin: 0;
 font-size: 0.9rem;
 line-height: 1.5;
}
#cookie-banner a {
 color: var(--primary-color);
 text-decoration: underline;
}
#cookie-banner-actions {
 display: flex;
 gap: 12px;
 flex-shrink: 0;
}
#cookie-banner-actions button {
 padding: 10px 20px;
 border-radius: var(--radius-md);
 cursor: pointer;
 border: none;
 font-weight: 600;
}
#accept-cookies {
 background-color: var(--primary-color);
 color: white;
}
#decline-cookies {
 background-color: #4a5568;
 color: white;
}

/* Animations */
@keyframes fadeIn {
 from { opacity: 0; transform: translateY(20px); }
 to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
 from { opacity: 0; transform: translateY(30px); }
 to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
 opacity: 1;
 transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
 .services-grid, .team-grid {
 grid-template-columns: repeat(2, 1fr);
 }
 .about-section-content {
 gap: 60px;
 }
}

@media (max-width: 768px) {
 body {
 font-size: 15px;
 }
 .container {
 padding: 0 20px;
 }
 .section {
 padding: 15vh 0;
 }
 .header {
 padding: 16px 0;
 }
 .nav-toggle {
 display: block;
 }
 .nav-links {
 position: fixed;
 top: 0;
 right: 0;
 width: 100%;
 height: 100%;
 background: var(--bg-white);
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 40px; /* Huge touch targets */
 transform: translateX(100%);
 transition: transform 0.4s ease-in-out;
 }
 .nav-links.active {
 transform: translateX(0);
 }
 .nav-links a {
 font-size: 1.5rem;
 }
 .services-grid, .team-grid {
 grid-template-columns: 1fr;
 gap: 40px;
 }
 .about-section-content, .contact-grid {
 grid-template-columns: 1fr;
 text-align: center;
 }
 .about-image-wrapper {
 order: -1;
 margin-bottom: 40px;
 }
 .footer-grid {
 grid-template-columns: 1fr 1fr;
 text-align: left;
 }
 #cookie-banner {
 flex-direction: column;
 text-align: center;
 }
}

@media (max-width: 576px) {
 .footer-grid {
 grid-template-columns: 1fr;
 gap: 40px;
 }
 .footer-bottom {
 flex-direction: column;
 gap: 20px;
 }
}