* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #eb6c1e;
    --primary-gold: #d5ab33;
    --accent-gold-dark: #b49032;
    --accent-cream: #fbfaf6;
    --dark-bg: #323537;
    --darker-bg: #1a1c1e;
    --card-bg: #2a2c2e;
    --text-light: #fbfaf6;
    --text-gray: #d0d0d0;
    --text-dark-gray: #a0a0a0;
    --border-color: #4a4c4e;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #323537 0%, #2a2c2e 25%, #3d3027 50%, #2a2c2e 75%, #323537 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/*@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}*/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(235, 108, 30, 0.3),
        0 0 40px rgba(235, 108, 30, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(235, 108, 30, 0.5),
        0 0 60px rgba(235, 108, 30, 0.3),
        0 0 80px rgba(213, 171, 51, 0.2);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background: rgba(50, 53, 55, 0.9);
    backdrop-filter: blur(20px);
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(235, 108, 30, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(235, 108, 30, 0.3));
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text-light);
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

nav a:hover {
    color: var(--text-light);
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: white !important;
    border-radius: 6px;
    font-weight: 600;
}

/* Hero */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    margin-top: 90px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(to right, rgba(235, 108, 30, 0.08) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(235, 108, 30, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.6;
    animation: gridPulse 4s ease-in-out infinite;
}

/*@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}*/

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(235, 108, 30, 0.15);
    border: 1px solid rgba(235, 108, 30, 0.4);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease, pulse 3s ease infinite;
    box-shadow: 0 0 20px rgba(235, 108, 30, 0.3);
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold), var(--accent-gold-dark));
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(235, 108, 30, 0.4);
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: glow 2s ease-in-out infinite;
}

.btn-primary::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-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(235, 108, 30, 0.6),
    0 0 30px rgba(213, 171, 51, 0.4);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(235, 108, 30, 0.3), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::after {
    left: 100%;
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    background: rgba(235, 108, 30, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(235, 108, 30, 0.3);
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-label {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 16px;
}

.feature-list {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(235, 108, 30, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-dark-gray);
    margin: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
    height: 600px;
    border: 1px solid rgba(235, 108, 30, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-image-wrapper:hover {
    transform: scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(235, 108, 30, 0.4),
    0 0 40px rgba(235, 108, 30, 0.2);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(42, 44, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(235, 108, 30, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-gold), var(--accent-gold-dark));
    background-size: 200% auto;
    transform: scaleX(0);
    transition: transform 0.5s;
    animation: shimmer 3s linear infinite;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(235, 108, 30, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px) scale(1.02);
    background: rgba(42, 44, 46, 0.9);
    box-shadow: 0 20px 60px rgba(235, 108, 30, 0.4),
    0 0 40px rgba(235, 108, 30, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark-gray);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Process Section */
.process {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -40px;
    top: 30px;
    font-size: 24px;
    color: rgba(235, 108, 30, 0.3);
}

.process-step:last-child::after {
    display: none;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(235, 108, 30, 0.15);
    border: 2px solid rgba(235, 108, 30, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.process-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s;
    z-index: -1;
}

.process-step:hover .process-icon {
    border-color: var(--primary-orange);
    transform: scale(1.15) rotate(10deg);
    background: rgba(235, 108, 30, 0.3);
    box-shadow: 0 10px 30px rgba(235, 108, 30, 0.5);
}

.process-step:hover .process-icon::before {
    opacity: 1;
}

.process-step:nth-child(1) .process-icon { animation-delay: 0s; }
.process-step:nth-child(2) .process-icon { animation-delay: 0.5s; }
.process-step:nth-child(3) .process-icon { animation-delay: 1s; }
.process-step:nth-child(4) .process-icon { animation-delay: 1.5s; }

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Instagram Section */
.instagram-wrapper {
    background: rgba(35, 37, 39, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 108, 30, 0.2);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.instagram-post {
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(235, 108, 30, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s;
    cursor: pointer;
}

.instagram-post:hover {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    background: rgba(235, 108, 30, 0.1);
}

.instagram-cta {
    margin-top: 40px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: gap 0.3s;
}

.instagram-link:hover {
    gap: 15px;
}

/* Contact Section */
.contact {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-card {
    background: rgba(35, 37, 39, 0.3);
    border: 1px solid rgba(235, 108, 30, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(235, 108, 30, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--primary-orange);
}

.contact-details label {
    display: block;
    font-size: 13px;
    color: var(--text-dark-gray);
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details span {
    font-size: 16px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(235, 108, 30, 0.1);
    border: 1px solid rgba(235, 108, 30, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    opacity: 0;
    transition: opacity 0.4s;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    border-color: var(--primary-orange);
    background: rgba(235, 108, 30, 0.3);
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(235, 108, 30, 0.4);
}

.social-link:hover::before {
    opacity: 0.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(35, 37, 39, 0.3);
    border: 1px solid rgba(235, 108, 30, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(35, 37, 39, 0.5);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.form-submit::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;
}

.form-submit:hover::before {
    width: 400px;
    height: 400px;
}

.form-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(235, 108, 30, 0.5),
    0 0 30px rgba(213, 171, 51, 0.3);
}

.form-submit:active {
    transform: translateY(-1px) scale(0.98);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(235, 108, 30, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(235, 108, 30, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark-gray);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

/* Animated Background Elements */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-gold), transparent);
    top: 50%;
    right: 10%;
    animation-duration: 30s;
    animation-delay: 5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold-dark), transparent);
    bottom: 20%;
    left: 30%;
    animation-duration: 20s;
    animation-delay: 10s;
}

.blob-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-gold), transparent);
    bottom: 10%;
    right: 20%;
    animation-duration: 28s;
    animation-delay: 3s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }
    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 48px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .services-grid,
    .process-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
