/* Variables */
:root {
    /* Color Palette */
    --color-dark: #181824;
    --color-teal: #17BEBB;
    --color-orange: #E4572E;
    --color-yellow: #FFC914;
    --color-gray-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-text: #E9ECEF;
    --color-text-dark: #ADB5BD;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'IBM Plex Sans', sans-serif;
    --font-base: 16px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: var(--spacing-sm);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    color: var(--color-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-yellow);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--spacing-lg) 0;
    scroll-margin-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-teal);
    color: white;
}

.btn-primary:hover {
    background-color: #14a6a3;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-orange);
    color: white;
}

.btn-secondary:hover {
    background-color: #d14627;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-teal);
    color: var(--color-teal);
}

.btn-outline:hover {
    background-color: var(--color-teal);
    color: white;
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(24, 24, 36, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm) 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 150px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-icon .bar {
    height: 2px;
    width: 100%;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.menu li a {
    color: var(--color-text);
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.menu li a:hover,
.menu li a.active {
    color: var(--color-yellow);
}

.menu li a.btn {
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(24, 24, 36, 0.7) 0%, rgba(24, 24, 36, 0.6) 100%),
                url('../img/T51eQ4.jpg') no-repeat center center / cover;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

.hero h1 span {
    color: var(--color-teal);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    animation: fadeInUp 1s ease-out 0.4s both;
    justify-content: center;
}

/* About Section */
.about {
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(23, 190, 187, 0.1) 0%, rgba(228, 87, 46, 0.1) 100%), 
                url('./img/3hpzLp.jpg') no-repeat center center / cover;
    filter: blur(2px) opacity(0.1);
    z-index: -1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.about-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(23, 190, 187, 0.2);
    border-radius: var(--radius-full);
}

.about-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-teal);
}

.about-title {
    color: var(--color-yellow);
    margin-bottom: var(--spacing-sm);
}

/* Services Section */
.services {
    background-color: rgba(255, 255, 255, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.service-card {
    background-color: rgba(24, 24, 36, 0.8);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: var(--spacing-md);
}

.service-title {
    color: var(--color-teal);
    margin-bottom: var(--spacing-sm);
}

.service-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-yellow);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-sm);
}

/* Testimonials Section */
.testimonials {
    position: relative;
    background: linear-gradient(rgba(24, 24, 36, 0.95), rgba(24, 24, 36, 0.95)), url('./img/X1Kik2.jpg') no-repeat center center / cover;
    background-attachment: fixed;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--color-teal);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-right: var(--spacing-sm);
}

.testimonial-name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-position {
    color: var(--color-text-dark);
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact {
    background-color: rgba(255, 255, 255, 0.02);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    color: var(--color-teal);
    margin-bottom: var(--spacing-sm);
}

.contact-form {
    background-color: rgba(24, 24, 36, 0.8);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #bd4d4d;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 2px rgba(23, 190, 187, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.form-check-input {
    margin-right: var(--spacing-xs);
    margin-top: 0.3rem;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.form-error {
    color: var(--color-orange);
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
}

/* Footer */
.site-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    width: 120px;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: var(--color-text-dark);
    font-size: 0.9rem;
}

.footer-contact h3,
.footer-links h3 {
    color: var(--color-teal);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.contact-list li,
.links-list li {
    margin-bottom: var(--spacing-xs);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
}

.contact-list li svg {
    margin-right: var(--spacing-xs);
    min-width: 16px;
    color: var(--color-teal);
}

.links-list li a {
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.links-list li a:hover {
    color: var(--color-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(24, 24, 36, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: var(--spacing-md);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner.hide {
    opacity: 0;
    transform: translateY(100%);
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.policy-content h1 {
    color: var(--color-teal);
    margin-bottom: var(--spacing-md);
}

.policy-content h2 {
    font-size: 1.75rem;
    color: var(--color-yellow);
    text-align: left;
    margin-top: var(--spacing-md);
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: var(--spacing-md);
}

.policy-content ul,
.policy-content ol {
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.policy-content ul {
    list-style-type: disc;
}

.policy-content ol {
    list-style-type: decimal;
}

.policy-content li {
    margin-bottom: var(--spacing-xs);
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s infinite;
}

.thanks-title {
    color: var(--color-teal);
    margin-bottom: var(--spacing-sm);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --font-base: 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(24, 24, 36, 0.95);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle:checked ~ .menu {
        max-height: 300px;
        padding: var(--spacing-sm) 0;
    }
    
    .menu li {
        width: 100%;
    }
    
    .menu li a {
        display: block;
        text-align: center;
        padding: var(--spacing-sm);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --font-base: 14px;
    }
    
    section {
        padding: var(--spacing-md) 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .thanks-icon {
        width: 60px;
        height: 60px;
    }
} 

/* Benefits Section */
.benefits {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.benefits .about-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.benefits .about-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefits .about-image {
    height: 150px !important;
}

@media screen and (max-width: 992px) {
    .benefits .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .benefits .about-grid {
        grid-template-columns: 1fr;
    }
} 