/* 
 * Main Stylesheet for domain.com
 * Color Palette:
 * - Dark Graphite: #1A1A1A
 * - Electric Turquoise: #00E5C0
 * - Lime Yellow: #FFD740
 * - Pastel White: #FAFAFA
 * - Warm Coral: #FF6F61
 */

/* ===== FONTS ===== */
@font-face {
    font-family: 'Geometria';
    src: url('../fonts/Geometria-Regular.woff2') format('woff2'),
         url('../fonts/Geometria-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometria';
    src: url('../fonts/Geometria-Bold.woff2') format('woff2'),
         url('../fonts/Geometria-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geometria', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #00E5C0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF6F61;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: #00E5C0;
    color: #1A1A1A;
}

.btn-primary:hover {
    background-color: #FF6F61;
    color: #FAFAFA;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-cta {
    background-color: #FFD740;
    color: #1A1A1A;
    font-size: 18px;
    padding: 15px 30px;
}

.btn-cta:hover {
    background-color: #FF6F61;
    color: #FAFAFA;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* ===== HEADER ===== */
.site-header {
    background-color: #1A1A1A;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Geometria', Arial, sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: #00E5C0;
    letter-spacing: 1px;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav li:not(:last-child) {
    margin-right: 20px;
}

.desktop-nav a {
    color: #FAFAFA;
    font-weight: bold;
    padding: 5px 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00E5C0;
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: #00E5C0;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav-trigger {
    display: block;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #00E5C0;
    transition: transform 0.3s ease;
}

.mobile-nav {
    display: block;
    background-color: #1A1A1A;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 99;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: #FAFAFA;
    font-weight: bold;
    font-size: 18px;
    display: block;
    padding: 5px 0;
}

.mobile-nav a:hover {
    color: #00E5C0;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: #1A1A1A;
    color: #FAFAFA;
    padding: 100px 0;
    background-image: url('../img/hero-bg.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(26, 26, 26, 0.7);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFD740;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    color: #1A1A1A;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: #00E5C0;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    font-size: 18px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.about-text p {
    margin-bottom: 20px;
    color: #333;
}

.about-features {
    list-style: none;
    margin-top: 20px;
}

.about-features li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.about-features li i {
    color: #00E5C0;
    position: absolute;
    left: 0;
    top: 3px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background-color: #1A1A1A;
    color: #FAFAFA;
}

.services-section .section-header h2 {
    color: #FAFAFA;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #00E5C0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: #1A1A1A;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFD740;
}

.service-card p {
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '→';
    color: #00E5C0;
    position: absolute;
    left: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #FFD740;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: #1A1A1A;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.benefit-item p {
    color: #555;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 80px 0;
    background-color: #1A1A1A;
    color: #FAFAFA;
}

.contact-section .section-header h2 {
    color: #FAFAFA;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FAFAFA;
    font-family: 'Geometria', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
}

.form-group select option {
    background-color: #1A1A1A;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 14px;
}

.checkbox-group a {
    text-decoration: underline;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    height: 150px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 30px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonial-text::before {
    content: '"';
    font-size: 40px;
    color: #00E5C0;
    position: absolute;
    left: 0;
    top: -10px;
}

.testimonial-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.testimonial-position {
    color: #666;
    font-size: 14px;
}

/* ===== CERTIFICATIONS ===== */
.certifications-section {
    padding: 80px 0;
    background-color: #fff;
}

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.certification-item {
    text-align: center;
    padding: 20px;
}

.certification-item img {
    max-height: 100px;
    margin: 0 auto 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.certification-item:hover img {
    filter: grayscale(0%);
}

.certification-item p {
    font-size: 14px;
    color: #555;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #1A1A1A;
    color: #FAFAFA;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo a {
    font-weight: bold;
    font-size: 24px;
    color: #00E5C0;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo p {
    color: #aaa;
    font-size: 14px;
}

.footer-contact h3,
.footer-links h3 {
    color: #FFD740;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #00E5C0;
    margin-right: 10px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00E5C0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
}

/* ===== POLICY PAGES ===== */
.policy-section {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
    font-size: 32px;
    color: #1A1A1A;
    margin-bottom: 20px;
    text-align: center;
}

.policy-last-updated {
    text-align: right;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.policy-text h2 {
    font-size: 22px;
    color: #1A1A1A;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-text p,
.policy-text ul,
.policy-text ol {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-text ul,
.policy-text ol {
    padding-left: 20px;
}

.policy-text a {
    color: #00E5C0;
    text-decoration: underline;
}

.policy-text a:hover {
    color: #FF6F61;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon i {
    font-size: 70px;
    color: #00E5C0;
}

.thank-you-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.thank-you-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1A1A1A;
    color: #FAFAFA;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
    margin-bottom: 15px;
}

.cookie-link {
    margin-left: 15px;
    text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.about-content,
.service-card,
.benefit-item,
.testimonial-card,
.certification-item {
    animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(5) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(6) {
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===== RESPONSIVE STYLES ===== */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-nav-trigger {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .about-content {
        flex-direction: row;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    body {
        font-size: 18px;
    }
    
    .hero-content h1 {
        font-size: 56px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
}
