/* 
domain Website Styles
Color Palette:
- Electric Teal #00FFC6
- Charcoal #2E2F38
- Vivid Mustard #FFB400
- Snow White #F5F7FA
- Crimson Accent #FF2058
*/

/* Base Styles */
:root {
    --teal: #00FFC6;
    --charcoal: #2E2F38;
    --mustard: #FFB400;
    --white: #F5F7FA;
    --crimson: #FF2058;
    --grey: #8C8D96;
    --dark-charcoal: #1E1F26;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

body.accepted .cookie-banner {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--teal);
    margin: 1rem auto 0;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--teal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-fluid {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.accent-text {
    color: var(--teal);
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--charcoal);
}

.btn-primary:hover {
    background-color: var(--mustard);
    transform: translateY(-3px);
    color: var(--charcoal);
}

.btn-accent {
    background-color: var(--crimson);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--mustard);
    transform: translateY(-3px);
    color: var(--charcoal);
}

.btn-outline {
    border: 2px solid var(--teal);
    color: var(--charcoal);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--teal);
    color: var(--charcoal);
    transform: translateY(-3px);
}

/* Header */
.site-header {
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--charcoal);
}

.logo svg {
    margin-right: 0.5rem;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav li.active a::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--charcoal);
    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 7rem;
    background-image: url('./img/TAZJgo.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 47, 56, 0.7);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    margin-bottom: 1rem;
    display: block;
}

.stat-item h4 {
    color: var(--teal);
    margin-bottom: 0.5rem;
}

/* Approach Section */
.approach-section {
    background-color: var(--dark-charcoal);
    color: var(--white);
}

.approach-section h2::after {
    background-color: var(--mustard);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-card {
    background-color: var(--charcoal);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.approach-icon {
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    color: var(--mustard);
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.service-image {
    margin: 0 auto 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 500px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--charcoal);
    color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--crimson);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid var(--teal);
}

.service-card.featured::before {
    background-color: var(--teal);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--teal);
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
}

.service-price {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.service-price span {
    color: var(--teal);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Process Timeline Section */
.process-section {
    background-color: var(--dark-charcoal);
    color: var(--white);
}

.process-section h2::after {
    background-color: var(--mustard);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50px / 2);
    width: 4px;
    height: 100%;
    background-color: var(--teal);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--dark-charcoal);
}

.timeline-icon svg {
    width: 30px;
    height: 30px;
}

.timeline-icon .step {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--white);
    font-size: 1.25rem;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--charcoal);
    border-radius: 10px;
    position: relative;
}

.timeline-content h3 {
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-image {
    margin: 0 auto 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 500px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--grey);
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-charcoal);
    color: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--charcoal);
    padding: 3rem;
    border-radius: 10px;
}

.form-container h2 {
    color: var(--white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: rgb(0, 0, 0)1a1;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--teal);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--mustard);
}

.contact-form button {
    margin-top: 1rem;
    width: 100%;
}

/* Map Section */
.map-section {
    background-color: var(--white);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-info h3 {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.map-info address {
    font-style: normal;
    margin-bottom: 2rem;
}

.map-info address p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.map-info address svg {
    flex-shrink: 0;
}

.business-hours {
    margin-bottom: 2rem;
}

.business-hours h4 {
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.business-hours p {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--teal);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--teal);
    opacity: 1;
}

.footer-col address p {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--charcoal);
    color: var(--white);
    padding: 1rem 0;
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: var(--teal);
    text-decoration: underline;
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 0 5rem;
}

.policy-content h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.policy-summary {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.back-link {
    margin-top: 3rem;
    display: inline-block;
}

.back-link a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    font-weight: 500;
}

.back-link a:hover {
    color: var(--teal);
}

/* Thank You Page */
.thank-you-section {
    text-align: center;
    padding: 10rem 0 5rem;
    background-color: var(--white);
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.thank-you-content .back-link {
    margin-top: 2rem;
}

/* Responsive Design */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-section {
        background: var(--white);
        padding: 7rem 0 4rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image {
        flex: none;
        width: 100%;
    }
    
    .about-grid,
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .main-nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active ul {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .cookie-banner .container {
        flex-direction: column;
    }
    
    .cookie-banner button {
        width: 100%;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .approach-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-icon {
        align-self: flex-start;
        margin-left: 3px;
    }
} 