/* 
 * Main Stylesheet for domain.com
 * Author: Claude Developer
 */

/* CSS Variables */
:root {
    --primary: #003F5C;    /* Midnight Teal */
    --secondary: #FFB400;  /* Solar Amber */
    --accent: #D72638;     /* Crimson Flame */
    --highlight: #B4F8C8;  /* Arctic Mint */
    --background: #F9F4EC; /* Soft Sand */
    --text: #1C1C1C;       /* Onyx Black */
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: all 0.3s ease;
    
    --container-width: 1200px;
    --container-padding: 20px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

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

a:hover {
    color: var(--secondary);
}

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary);
    color: var(--text);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Header Styles */
.site-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-transform: lowercase;
    letter-spacing: -1px;
}

.main-nav .nav-items {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.main-nav .menu-toggle {
    display: none;
}

.main-nav a {
    font-weight: 500;
}

.main-nav a.active {
    color: var(--secondary);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Section Dividers */
.section-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.section-divider.bottom {
    bottom: -1px;
}

.section-divider.top {
    top: -1px;
    transform: rotate(180deg);
}

.section-divider svg {
    width: 100%;
    height: 100%;
}

/* Cookie Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 1000;
    padding: 15px;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    padding: 14px 28px;
    font-size: 18px;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    background-color: var(--background);
    padding-bottom: 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-us {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 25px;
    transition: var(--transition);
}

.benefit-item:hover {
    background-color: var(--highlight);
    border-radius: var(--radius-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 30px;
}

.benefit-item:hover .benefit-icon {
    background-color: var(--secondary);
}

.benefit-item h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

/* Process Section */
.process {
    background-color: var(--primary);
    color: white;
}

.process .section-header h2 {
    color: white;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Line connecting steps removed as requested */

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 18%;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 30px;
    background-color: var(--background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: -30px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author strong {
    color: var(--primary);
}

/* Order Form Section */
.order-form {
    background-color: var(--background);
    padding-bottom: 100px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    background-color: white;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input {
    margin-top: 5px;
    margin-right: 10px;
}

.form-buttons {
    text-align: center;
    margin-top: 30px;
}

.form-buttons .btn {
    padding: 14px 40px;
}

/* FAQ Section */
.faq {
    background-color: white;
    padding-bottom: 100px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: var(--primary);
    color: white;
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
}

.faq-answer {
    padding: 20px;
    background-color: var(--background);
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-contact h4, .footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--secondary);
}

.footer-contact ul, .footer-links ul {
    list-style: none;
}

.footer-contact ul li, .footer-links ul li {
    margin-bottom: 10px;
}

.footer-contact a, .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover, .footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Error message */
.error-message {
    background-color: var(--accent);
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
}
