/* ============================================
   HC Custom Homes - Stylesheet
   Color Scheme: Black, White, Grey
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-grey-100: #f5f5f5;
    --color-grey-200: #e5e5e5;
    --color-grey-300: #d4d4d4;
    --color-grey-400: #a3a3a3;
    --color-grey-500: #737373;
    --color-grey-600: #525252;
    --color-grey-700: #404040;
    --color-grey-800: #262626;
    --color-grey-900: #171717;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-grey-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-grey-500);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
}

.title-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-black);
    margin-bottom: 30px;
}

.title-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--color-grey-800);
    border-color: var(--color-grey-800);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-black);
    border-color: var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

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

.btn-text {
    background: transparent;
    color: var(--color-white);
    border: none;
    border-bottom: 2px solid var(--color-white);
    padding: 10px 5px;
    letter-spacing: 3px;
}

.btn-text:hover {
    color: var(--color-grey-300);
    border-color: var(--color-grey-300);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    width: 50px;
    height: auto;
    background-color: var(--color-white);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition);
}

.header.scrolled .logo-text {
    color: var(--color-black);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--color-grey-800);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition);
}

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

.header-contact {
    display: flex;
    align-items: center;
}

.header-phone {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 1px;
}

.header.scrolled .header-phone {
    color: var(--color-black);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span {
    background-color: var(--color-black);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-grey-900) 0%, var(--color-black) 100%);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
}

.hero-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: auto;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.hero-logo-bg img {
    width: 100%;
    height: auto;
}

.hero-title,
.hero-tagline,
.hero-motto,
.hero-content .btn {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 25px;
    color: var(--color-white);
    padding: 15px 30px;
    border: 2px solid var(--color-white);
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
}

.hero-motto {
    font-family: var(--font-heading);
    font-size: 28px;
    font-style: italic;
    margin-bottom: 40px;
    color: var(--color-grey-200);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
}

.hero-scroll span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background-color: var(--color-white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--color-grey-800) 0%, var(--color-black) 100%);
}

.about-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-black);
    z-index: -1;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-grey-600);
    margin-bottom: 20px;
}

.about-text:last-of-type {
    margin-bottom: 30px;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 120px 0;
    background-color: var(--color-grey-100);
}

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

.service-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-grey-200);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-black);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 15px;
}

.service-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-grey-500);
    margin-bottom: 20px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
}

.service-link:hover {
    color: var(--color-grey-600);
}

/* ============================================
   Why Section
   ============================================ */
.why-section {
    padding: 120px 0;
    background-color: var(--color-black);
    color: var(--color-white);
}

.why-section .section-subtitle {
    color: var(--color-grey-400);
}

.why-section .section-title {
    color: var(--color-white);
}

.why-section .title-divider {
    background-color: var(--color-white);
}

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

.why-item {
    text-align: center;
    padding: 30px 20px;
}

.why-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-grey-700);
    margin-bottom: 20px;
}

.why-item h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-grey-400);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    padding: 120px 0;
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
    text-align: center;
    padding: 20px;
}

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

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

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    color: var(--color-grey-300);
    margin-bottom: 20px;
}

.gallery-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 5px;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    padding: 120px 0;
    background-color: var(--color-grey-100);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--color-grey-300);
}

.process-step {
    text-align: center;
    flex: 1;
    padding: 0 15px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-grey-500);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 120px 0;
    background-color: var(--color-white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 0 40px;
}

.testimonial-card.active {
    display: block;
}

.testimonial-stars {
    color: var(--color-black);
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-grey-700);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--color-grey-500);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: 1px solid var(--color-grey-300);
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    color: var(--color-black);
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-grey-300);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--color-black);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-grey-900) 0%, var(--color-black) 100%);
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--color-grey-300);
    margin-bottom: 40px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 120px 0;
    background-color: var(--color-grey-100);
}

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

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-grey-600);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-black);
}

.contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 5px;
}

.contact-item a,
.contact-item span {
    font-size: 15px;
    color: var(--color-grey-600);
}

.contact-item a:hover {
    color: var(--color-black);
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-grey-300);
    transition: var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background-color: var(--color-black);
    border-color: var(--color-black);
}

.social-link:hover svg {
    fill: var(--color-white);
    stroke: var(--color-white);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-grey-700);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--color-grey-300);
    background-color: var(--color-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-black);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 80px 0 30px;
}

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

.footer-logo {
    width: 80px;
    margin-bottom: 15px;
    background-color: var(--color-white);
    padding: 8px;
    border-radius: 5px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--color-grey-400);
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-grey-500);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    font-size: 14px;
    color: var(--color-grey-400);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--color-white);
}

.footer-contact p {
    font-size: 14px;
    color: var(--color-grey-400);
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--color-grey-400);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid var(--color-grey-800);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-grey-500);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .nav,
    .header-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        padding: 30px;
        box-shadow: var(--shadow-lg);
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav.active .nav-link {
        color: var(--color-black);
        font-size: 16px;
    }

    .hero-title {
        font-size: 48px;
    }

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

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

    .about-content {
        padding-left: 0;
    }

    .about-accent {
        display: none;
    }

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

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

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

    .process-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(33.333% - 30px);
    }
}

@media (max-width: 768px) {
    .hero-logo-bg {
        width: 250px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-motto {
        font-size: 22px;
    }

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

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

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        min-height: 300px;
    }

    .process-step {
        flex: 0 0 100%;
    }

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

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        font-size: 20px;
    }

    .cta-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-logo-bg {
        width: 180px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 3px;
        padding: 10px 15px;
    }

    .hero-motto {
        font-size: 18px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

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

    .about,
    .services,
    .why-section,
    .gallery,
    .process,
    .testimonials,
    .cta-section,
    .contact {
        padding: 80px 0;
    }
}
