* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(107, 142, 159, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(107, 142, 159, 0.6);
    }
}

@keyframes paintDrip {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
    10% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.3;
        transform: translateY(100vh) scale(1.2);
    }
}

@keyframes paintSplash {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.5) rotate(180deg);
    }
    100% {
        opacity: 0.2;
        transform: scale(2) rotate(360deg);
    }
}

@keyframes paintDrop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0);
    }
    20% {
        opacity: 0.9;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0.4;
        transform: translateY(200px) scale(1.3);
    }
}

:root {
    --primary: #6B8E9F;
    --primary-dark: #4A6B7A;
    --secondary: #E8D5C4;
    --accent: #D4A574;
    --text: #2C3E50;
    --text-light: #7F8C8D;
    --bg: #F8F6F3;
    --white: #FFFFFF;
    --shadow: rgba(107, 142, 159, 0.1);
    --shadow-hover: rgba(107, 142, 159, 0.2);
    --border: #E5E5E5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    animation: fadeIn 0.8s ease-in;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(107, 142, 159, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(212, 165, 116, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 50% 70%, rgba(232, 213, 196, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 25% 80%, rgba(107, 142, 159, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 75% 60%, rgba(212, 165, 116, 0.1) 0%, transparent 40%);
    animation: paintSplash 20s ease-in-out infinite;
}

.paint-drip {
    position: fixed;
    pointer-events: none;
    z-index: 2;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.paint-drip-1 {
    width: 80px;
    height: 120px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    left: 10%;
    top: -100px;
    animation: paintDrip 15s ease-in infinite;
    opacity: 0.3;
}

.paint-drip-2 {
    width: 60px;
    height: 100px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(212, 165, 116, 0.8) 100%);
    left: 75%;
    top: -80px;
    animation: paintDrip 18s ease-in infinite 3s;
    opacity: 0.25;
}

.paint-drip-3 {
    width: 100px;
    height: 150px;
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(232, 213, 196, 0.7) 100%);
    left: 45%;
    top: -120px;
    animation: paintDrip 20s ease-in infinite 6s;
    opacity: 0.2;
}

.paint-drip-4 {
    width: 70px;
    height: 110px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    left: 25%;
    top: -90px;
    animation: paintDrip 16s ease-in infinite 9s;
    opacity: 0.3;
}

.paint-drip-5 {
    width: 90px;
    height: 130px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
    left: 65%;
    top: -110px;
    animation: paintDrip 17s ease-in infinite 12s;
    opacity: 0.25;
}

.paint-drip-6 {
    width: 55px;
    height: 90px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--accent) 100%);
    left: 35%;
    top: -70px;
    animation: paintDrip 19s ease-in infinite 5s;
    opacity: 0.2;
}

.paint-splash {
    position: fixed;
    pointer-events: none;
    z-index: 2;
    border-radius: 50%;
    filter: blur(2px);
}

.paint-splash-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(107, 142, 159, 0.2) 0%, transparent 70%);
    top: 20%;
    left: 5%;
    animation: paintSplash 25s ease-in-out infinite;
    opacity: 0.3;
}

.paint-splash-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.25) 0%, transparent 70%);
    top: 60%;
    right: 8%;
    animation: paintSplash 30s ease-in-out infinite 8s;
    opacity: 0.25;
}

.paint-splash-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(232, 213, 196, 0.2) 0%, transparent 70%);
    bottom: 15%;
    left: 30%;
    animation: paintSplash 28s ease-in-out infinite 15s;
    opacity: 0.2;
}

.paint-drop {
    position: fixed;
    pointer-events: none;
    z-index: 2;
    width: 8px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    border-radius: 50%;
}

.paint-drop-1 {
    left: 20%;
    top: -50px;
    animation: paintDrop 12s linear infinite;
    opacity: 0.4;
}

.paint-drop-2 {
    left: 50%;
    top: -50px;
    animation: paintDrop 14s linear infinite 4s;
    opacity: 0.3;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}

.paint-drop-3 {
    left: 80%;
    top: -50px;
    animation: paintDrop 13s linear infinite 7s;
    opacity: 0.35;
    background: linear-gradient(180deg, var(--secondary) 0%, transparent 100%);
}

.paint-drop-4 {
    left: 40%;
    top: -50px;
    animation: paintDrop 15s linear infinite 2s;
    opacity: 0.3;
}

.paint-drop-5 {
    left: 70%;
    top: -50px;
    animation: paintDrop 11s linear infinite 9s;
    opacity: 0.4;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInLeft 0.6s ease-out;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.logo:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.logo:hover::after {
    width: 100%;
}

.nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav a {
    font-weight: 500;
    color: var(--text);
    padding: 0.5rem 0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav a:hover {
    transform: translateY(-2px);
}

.nav a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 142, 159, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.hero p {
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(107, 142, 159, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(107, 142, 159, 0.5);
    color: var(--white);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    animation: scaleIn 1s ease-out 0.5s both;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out both;
    position: relative;
    opacity: 0;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-hover);
    z-index: 10;
}

.card img {
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.card p {
    margin-bottom: 1rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out both;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }
.gallery-item:nth-child(7) { animation-delay: 0.4s; }
.gallery-item:nth-child(8) { animation-delay: 0.45s; }
.gallery-item:nth-child(9) { animation-delay: 0.5s; }
.gallery-item:nth-child(10) { animation-delay: 0.55s; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 142, 159, 0.4), rgba(212, 165, 116, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '👁';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 142, 159, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(107, 142, 159, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.error-message {
    color: #E74C3C;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #E74C3C;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out both;
    opacity: 0;
    position: relative;
}

.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonial:nth-child(3) { animation-delay: 0.3s; }

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

.testimonial:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px var(--shadow-hover);
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out both;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 142, 159, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.pricing-card:hover::before {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.05);
    animation: pulse 3s ease-in-out infinite;
}

.pricing-card.featured::after {
    content: '⭐';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    animation: float 2s ease-in-out infinite;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured p {
    color: var(--white);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    animation: glow 2s ease-in-out infinite;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.pricing-features li:last-child {
    border-bottom: none;
}

footer {
    position: relative;
    z-index: 10;
    background: var(--text);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--secondary);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
}

.breadcrumb {
    padding: 1.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.content-page {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page ul,
.content-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-page li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.thankyou-page {
    text-align: center;
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-page h1 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.thankyou-page p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger {
        display: flex;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}
