@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c5364;
    --secondary: #0f2027;
    --accent: #e8b86d;
    --light: #f5f5f5;
    --dark: #1a1a2e;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --gradient: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: #d4a35a;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    font-size: 13px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background-color: #2c5364;
}

header.scrolled {
    position: fixed;
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.8rem;
    color: var(--accent);
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

nav ul {
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--accent);
}

.hero {
    min-height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--accent);
    padding: 15px 20px;
    border-radius: var(--radius);
    text-align: center;
}

.hero-badge span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.hero-badge small {
    font-size: 11px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

section {
    padding: 60px 0;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 13px;
}

.about-preview {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent);
    padding: 15px;
    border-radius: var(--radius);
    text-align: center;
}

.experience-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
}

.experience-badge small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 13px;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.about-list i {
    color: var(--accent);
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.service-content h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.service-content p {
    color: var(--text-light);
    font-size: 12px;
}

.cta {
    background: var(--gradient);
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
}

.products {
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-image {
    height: 180px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image i {
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--dark);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price .btn {
    padding: 8px 16px;
    font-size: 11px;
}

.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 20px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: var(--text-light);
}

.stars {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 12px;
}

footer {
    background: var(--secondary);
    padding: 30px 0 15px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    margin-bottom: 12px;
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}

.policy-links a:hover {
    color: var(--accent);
}

.page-hero {
    background: var(--gradient);
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb span {
    color: var(--accent);
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: var(--gradient);
    padding: 35px;
    border-radius: var(--radius);
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-info > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    font-size: 13px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon i {
    color: var(--accent);
    font-size: 1.1rem;
}

.contact-item-text h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.contact-item-text p {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.working-hours h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.working-hours p {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    margin-bottom: 5px;
}

.contact-form-wrap {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 13px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 83, 100, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--text-light);
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    padding: 0 0 60px;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

.about-hero-section {
    padding: 60px 0;
    background: var(--white);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-hero-content h2 {
    margin-bottom: 15px;
}

.about-hero-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
}

.about-hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.values-section {
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-light);
    font-size: 12px;
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.team-card h3 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.team-card span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
}

.team-card p {
    color: var(--text-light);
    font-size: 12px;
    margin-top: 10px;
}

.service-hero {
    background: var(--white);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-hero-content h2 {
    margin-bottom: 15px;
}

.service-hero-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
}

.service-features {
    background: var(--light);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-feature-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.service-feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.service-feature-card p {
    color: var(--text-light);
    font-size: 12px;
}

.process-section {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.process-step h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-light);
    font-size: 12px;
}

.pricing-section {
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
}

.pricing-header {
    background: var(--gradient);
    padding: 25px 20px;
    text-align: center;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.pricing-header .price {
    color: var(--white);
    font-size: 2rem;
}

.pricing-header .price span {
    font-size: 0.9rem;
    font-weight: 400;
}

.pricing-body {
    padding: 25px 20px;
}

.pricing-body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-light);
}

.pricing-body ul li i {
    color: var(--accent);
}

.pricing-body .btn {
    width: 100%;
    margin-top: 15px;
}

.policy-section {
    padding: 60px 0;
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin: 25px 0 12px;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 12px 0 12px 20px;
}

.policy-content ul li {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.policy-date {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 20px;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--light);
}

.error-content i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 15px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--gradient);
}

.thankyou-content {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 500px;
}

.thankyou-content i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.thankyou-content h1 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 13px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 11px;
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid,
    .service-hero-grid,
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .values-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    
    .nav-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        padding: 80px 30px 30px;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 14px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .service-features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        justify-content: center;
    }
    
    .contact-info {
        padding: 25px;
    }
    
    .contact-form-wrap {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    
    .btn {
        padding: 8px 18px;
        font-size: 11px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge {
        position: static;
        margin-top: 15px;
    }
    
    .values-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .experience-badge {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }
    
    .about-image {
        text-align: center;
    }
}

@media (max-width: 360px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.1rem; }
    
    .logo span {
        font-size: 1rem;
    }
    
    nav {
        width: 100%;
    }
}
