:root {
    --bg: #faf9f7;
    --primary: #5a3a22;
    --secondary: #a67c52;
    --text: #1f1f1f;
    --muted: #6b6b6b;
    --card: #ffffff;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    
}

/* Whatsapp floating button */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: white;
    font-size: 1.4rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */

header {
    padding: 1rem 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--bg);
    box-shadow: 0 4px 4px rgba(220, 220, 220, 0.7);
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand p {
    margin: 0;
    font-size: 0.95rem;
}

.brand img {
    height: 70px;
    width: auto;
}

.brand .banner {
    display: none;
}

nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

nav a:hover {
    color: var(--secondary);
}

/* Hero */

.hero {
    padding: 5rem 6% 4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-text {
    color: var(--muted);
    max-width: 520px;
    font-size: 1.05rem;
}

.trust {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 1rem;
}

.cta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.cta-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}

/* Buttons */

.btn {
    padding: 0.9rem 1.7rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn.primary {
    background: linear-gradient(135deg, #5a3a22, #7a5234);
    color: #fff;
    box-shadow: 0 10px 20px rgba(90, 58, 34, 0.25);
    transition-duration: 0.2s;
}

.btn.primary:hover {
    transform: translateY(-1px);
}

/* Hero Card */

.hero-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    text-align: center;
}

.hero-card img {
    max-width: 100%;
    height: auto;
}

/* Quote Section */

.quote {
    padding: 5rem 6%;
    background: #fff;
    text-align: center;
}

.quote h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 2.3rem;
}

.quote-sub {
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.quote-form {
    max-width: 520px;
    margin: auto;
    text-align: left;
}

/* Personal */

.personal-line {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.field {
    margin-bottom: 1.2rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: var(--muted);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.field textarea {
    min-height: 90px;
    resize: vertical;
}

.btn.full {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    margin-top: 0.8rem;
}

.form-success {
    display: none;
    text-align: center;
    animation: fadeUp 0.4s ease both;
}

.form-success h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}
/* Services */

#services {
    padding: 5rem 6%;
    background: var(--bg);
    text-align: center;
}

#services h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.services-sub {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: fadeUp 0.6s ease both;
}

.service-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
}

.service-card.highlight {
    border: 2px solid var(--secondary);
}

/* Pricing */

.pricing {
    padding: 5rem 6%;
    background: #f6f3ef;
    text-align: center;
}

.pricing h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.price-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.price-card.highlight {
    border: 2px solid var(--secondary);
}

.price-desc {
    color: var(--muted);
}

.price-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
}

.pricing-foot {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

/* About Me */

#aboutme {
    padding: 4rem 6%;
    background: var(--bg);
    text-align: center;
}

#aboutme-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: fadeUp 0.6s ease both;
}

#aboutme h3 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

#aboutme p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}
/* Featured Project */
#featured-project {
    padding: 5rem 6%;
    background: #fff;
    text-align: center;
}

#featured-project h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
}

#featured-project .project-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.project-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-images img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-images img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.project-details {
    text-align: left;
}

.project-details h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.project-details p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-details a.btn {
    margin-top: 1rem;
}


/* Featured Project */
#featured-project {
    padding: 5rem 6%;
    background: #fff;
    text-align: center;
}

#featured-project h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
}

.project-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

/* Carousel */
.device-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

/* MacBook Frame */
.device-macbook {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 2rem 1.5rem 1rem;
    background: #f0f0f0;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-top: 15px solid #ccc;
}

.device-macbook img {
    width: 100%;
    border-radius: 12px;
}

/* iPhone Frame */
.device-iphone {
    position: relative;
    width: 240px;
    padding: 1.2rem 0.8rem;
    background: #000;
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.device-iphone img {
    width: 100%;
    border-radius: 24px;
}

/* Controls */
.carousel-prev,
.carousel-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 0.5rem 1rem;
    margin-top: -20px;
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255,255,255,1);
}

.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }

/* Dots */
.carousel-dots {
    text-align: center;
    margin-top: 1rem;
}

.carousel-dots .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.carousel-dots .dot.active {
    background-color: var(--primary);
}

/* Project Details */
.project-details {
    max-width: 700px;
    margin: auto;
    text-align: left;
}

.project-details h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.project-details p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .project-details { text-align: center; }
    .device-macbook { max-width: 90%; }
    .device-iphone { width: 180px; }
}


/* Features */

section.features {
    padding: 4rem 6%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    background:#f6f3ef;;
}

.feature {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature h3 {
    margin-top: 0;
    color: var(--primary);
}

/* Footer */

footer.footer {
    background: #f1ede8;
    padding: 3rem 6%;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
}

.footer-socials a img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-socials a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.footer-copy {
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        gap: 1rem;
    }

    .footer-socials a img {
        width: 24px;
        height: 24px;
    }
}


/* Animations */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.feature,
.price-card,
.quote-form {
    animation: fadeUp 0.6s ease both;
}

.feature:nth-child(2),
.price-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature:nth-child(3),
.price-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Mobile */

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta {
        justify-content: center;
    }

    nav {
        display: none;
    }

    .brand .logo {
        display: none;
    }

    .brand .banner {
        display: block;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .project-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .project-details {
        text-align: center;
    }
    html{
        overflow-x:hidden;
    }
    body{
        overflow-x:hidden!important;
    }
}