/* 
* Vagiji Sudona Styles
* Colors:
* - Deep raspberry: #D72638 (main accent: buttons, links, checkboxes)
* - Blueberry velvet: #2D3142 (text, logo)
* - Olive green: #90BE6D (headings, decorative elements)
* - Ice background: #F6F6F6 (main site background)
* - Warm cream: #FFF3E2 (background for service blocks and form)
*/

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2D3142;
    background-color: #F6F6F6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2D3142;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: #90BE6D;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 80px;
    height: 3px;
    background-color: #D72638;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #D72638;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #90BE6D;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

/* Header */
.site-header {
    background-color: #FFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    max-width: 180px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    color: #2D3142;
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #D72638;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: #D72638;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #90BE6D;
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2D3142;
    margin: 2px 0;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF3E2, #F6F6F6);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(144, 190, 109, 0.2);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(215, 38, 56, 0.1);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2D3142;
    animation: fadeInDown 1s ease;
}

.hero .slogan {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #90BE6D;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: #D72638;
    color: white;
    background-image: linear-gradient(45deg, #D72638, #E83A4B);
    box-shadow: 0 4px 15px rgba(215, 38, 56, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(215, 38, 56, 0.4);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #D72638;
    border: 2px solid #D72638;
}

.btn-secondary:hover {
    background-color: #D72638;
    color: white;
}

/* About Section */
.about {
    background-color: #FFF;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* Services Section */
.services {
    background-color: #FFF3E2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #FFF;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #90BE6D;
    margin-bottom: 0.5rem;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #D72638;
    margin-bottom: 1.5rem;
}

.service-card ul {
    text-align: left;
    margin-bottom: 1.5rem;
    list-style-position: inside;
}

.service-card ul li {
    margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery {
    background-color: #FFF;
}

.gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1rem;
    padding: 1rem;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin-right: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: calc(33.333% - 2rem);
    position: relative;
}

.gallery-item:last-child {
    margin-right: 0;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-content {
    padding: 1.5rem;
    background-color: #FFF;
}

.gallery-content h3 {
    color: #90BE6D;
    margin-bottom: 0.5rem;
}

/* Animation Block */
.animation-block {
    background-color: #F6F6F6;
    position: relative;
    overflow: hidden;
}

.animation-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.animation-step {
    flex: 0 0 300px;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    position: relative;
    background-color: #FFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.step-1::before {
    background-color: #D72638;
    animation: pulse 2s infinite;
}

.step-2::before {
    background-color: #90BE6D;
    animation: pulse 2s infinite 0.5s;
}

.step-3::before {
    background-color: #2D3142;
    animation: pulse 2s infinite 1s;
}

.animation-step h3 {
    color: #90BE6D;
    margin-bottom: 0.5rem;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #FFF3E2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #FFF;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1rem;
    background-color: #F0F0F0;
}

.testimonial-card h3 {
    color: #2D3142;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: #90BE6D;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
}

/* FAQ Section */
.faq {
    background-color: #FFF;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: #F6F6F6;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #D72638;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Form Section */
.order-form {
    background-color: #FFF3E2;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
    border-color: #90BE6D;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
    accent-color: #D72638;
}

.checkbox-group label {
    font-weight: normal;
}

button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background-color: #2D3142;
    color: #FFF;
    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: #FFF;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background-color: #D72638;
}

.footer-col p,
.footer-col address {
    font-style: normal;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D72638;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D3142;
    color: #FFF;
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 1rem 0 0;
    flex: 1;
}

.cookie-content a {
    color: #90BE6D;
}

.cookie-content .btn {
    margin: 0.5rem 0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 8rem 0;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you h1 {
    color: #90BE6D;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    margin-top: 2rem;
}

/* Policy Pages */
.policy {
    padding: 5rem 0;
}

.policy h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    margin-top: 2rem;
    color: #2D3142;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-date {
    margin-top: 3rem;
    font-style: italic;
    color: #777;
    text-align: right;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .slogan {
        font-size: 1.3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .gallery-item {
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFF;
        padding: 5rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 1rem 0;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .slogan {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
    }
    
    .services-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
} 