/* CSS Variables for Design System */
:root {
    --primary: #1A2530;
    /* Deep Navy / Charcoal */
    --accent: #D4AF37;
    /* Luxurious Gold */
    --accent-hover: #B5952F;
    --text-dark: #222222;
    --text-light: #F8F9FA;
    --bg-light: #F4F6F8;
    /* Soft grayish white */
    --bg-dark: #121212;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(194, 168, 120, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    color: white;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    background-color: var(--accent);
    color: white;
}

.navbar.scrolled .nav-btn {
    background: var(--primary);
    color: white;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1001;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url("assets/hero-new.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding: 0 10%;
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 8px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-out 0.5s both;
    max-width: 420px;
    margin-left: auto;
}

.hero-form-container h3 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.hero-form select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.hero-form select option {
    color: #1A1A1A;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 31, 36, 0.9) 0%, rgba(26, 31, 36, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* About Section */
.about {
    padding: 5rem 10%;
    background-color: var(--bg-light);
}

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

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
}

.about-image-container {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-extended {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.founder-profile {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.founder-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.certifications ul {
    list-style: none;
    padding: 0;
}

.certifications ul li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.certifications ul li i {
    color: var(--accent);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.about-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    z-index: 1;
    border-radius: 4px;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 10%;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 54, 63, 0.8);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-info {
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--accent);
    font-weight: 500;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

/* Gallery Section */
.gallery {
    padding: 5rem 10%;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: 5rem 10%;
    background-color: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-card h4 {
    color: var(--primary);
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.testimonial-card span {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.stars {
    color: #FFD700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

/* How it works */
.how-it-works {
    padding: 5rem 10%;
    background-color: var(--bg-light);
}

/* Slider Styles */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    scrollbar-width: none;
    /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.slide-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    /* Show 3 cards at a time on desktop */
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
    overflow: hidden;
    transition: transform 0.3s;
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-badge {
    background: rgba(212, 175, 55, 0.1);
    /* Light Gold */
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.slide-img-container {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.slide-img-container img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.slide-content h4 {
    margin-top: 0;
    font-size: 1.1rem;
    color: var(--primary);
    line-height: 1.4;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1a2530;
    margin: auto;
    padding: 3rem;
    border: 1px solid var(--accent);
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out forwards;
}

.modal-content h2 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.modal-content p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close-modal:hover,
.close-modal:focus {
    color: white;
    text-decoration: none;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--accent);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent);
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 992px) {
    .slide-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .slide-card {
        flex: 0 0 100%;
    }
}

/* Estimator Section */
.estimator {
    padding: 5rem 10%;
    background-color: var(--primary);
    color: white;
}

.estimator .section-header p {
    color: white;
}

.highlight-header {
    display: inline-block;
    color: var(--accent) !important;
    font-size: 3rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.5rem;
}

.estimator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.estimator-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.estimator-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--accent);
}

.estimator-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.estimator-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.estimator-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.estimator-card p {
    margin-bottom: 1.5rem;
    opacity: 0.85;
    font-size: 1.05rem;
}

.estimator-card .price-hint {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    opacity: 1;
}

/* Latest Articles */
.latest-articles {
    padding: 5rem 10%;
    background-color: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.article-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.article-content p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 10%;
    background: url("assets/hero-new.jpg") center/cover fixed;
    position: relative;
    color: white;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 36, 0.92);
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    color: white;
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details strong {
    color: var(--accent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.success-message {
    display: none;
    color: #4CAF50;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Footer */
footer {
    padding: 4rem 10% 1rem;
    background-color: #1a1f24;
    color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a .fa-facebook-f {
    color: #1877F2;
}

.social-icons a .fa-instagram {
    color: #E1306C;
}

.social-icons a .fa-youtube {
    color: #FF0000;
}

.social-icons a .fa-telegram {
    color: #0088cc;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-map {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger .bar {
    background-color: var(--primary);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .hero-container {
        gap: 2rem;
        padding: 0 5%;
    }
}

@media (max-width: 992px) {

    .about-grid,
    .about-extended,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-profile {
        flex-direction: column;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 100px;
        text-align: center;
    }

    .hero-form-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 4rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: white;
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar {
        background-color: white !important;
    }

    .nav-btn {
        display: none;
    }

    .about,
    .portfolio,
    .testimonials,
    .how-it-works,
    .estimator,
    .contact {
        padding: 5rem 5%;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .stats {
        gap: 2rem;
        justify-content: center;
    }

    .about-text {
        text-align: center;
    }

    .about-shape {
        top: -15px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .hero-form-container {
        padding: 1.5rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .estimator-card h3 {
        font-size: 1.5rem;
    }
}