/* Main CSS for domain.com */

:root {
    /* Color palette */
    --color-primary: #263238;     /* graphite */
    --color-accent: #FF9800;      /* orange-gold */
    --color-background: #FAFAFA;  /* almost white */
    --color-text-primary: #212121; /* dark gray */
    --color-text-secondary: #757575; /* secondary text */
    
    /* Layout */
    --max-width: 1140px;
    --padding-mobile: 20px;
    --padding-desktop: 40px;
    
    /* Fonts */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-mobile);
}

.btn {
    display: inline-block;
    background-color: white;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--color-accent);
    color: white;
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background-color: white;
    color: var(--color-accent);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--padding-mobile);
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
}

.logo span {
    color: var(--color-accent);
}

.menu {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 24px;
    cursor: pointer;
}

.menu ul {
    list-style: none;
    display: flex;
}

.menu li {
    margin-left: 20px;
}

/* Hero Section */
.hero {
    background-color: var(--color-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* About Section */
.about {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text {
    margin-bottom: 30px;
    text-align: left;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 0 0 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 20px;
}

.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-card h3 {
    color: var(--color-primary);
    margin: 0 20px 10px;
    padding: 0 10px;
}

.service-card p {
    padding: 0 25px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-accent);
    margin: 20px 0;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.testimonial-card {
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-primary);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* Form Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 16px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-col p, .footer-col address {
    margin-bottom: 10px;
    font-style: normal;
}

.footer-col a[href^="mailto:"], 
.footer-col a[href^="tel:"] {
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 var(--padding-mobile);
}

.policy-container h1 {
    margin-bottom: 30px;
}

.policy-container h2 {
    margin: 30px 0 15px;
}

.policy-container p {
    margin-bottom: 20px;
}

.policy-container ul, .policy-container ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

/* Thank You Page */
.thank-you-content {
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    padding: 30px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

/* Media Queries */
@media (max-width: 767px) {
    header .btn {
        display: none;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--padding-desktop);
    }
    
    .header-container {
        padding: 20px var(--padding-desktop);
    }
    
    .menu {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .about-content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
    }
    
    .about-text {
        flex: 1;
        margin-bottom: 0;
    }
    
    .about-image {
        flex-basis: 350px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
} 