/* ==========================================
   GITZ GREEN ENERGY - LANDING PAGE
   Nature-Inspired Premium UI
   ========================================== */

/* === VARIABLES === */
:root {
    /* Nature Colors */
    --emerald-green: #059669;
    --leaf-green: #10B981;
    --forest-green: #047857;
    --mint-light: #F0FDF4;

    --solar-orange: #F97316;
    --sunlight-yellow: #F59E0B;

    --electric-blue: #0066FF;
    --sky-blue: #38BDF8;

    --charcoal: #1F2937;
    --slate: #475569;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;

    /* Gradients */
    --gradient-nature: linear-gradient(135deg, #059669 0%, #10B981 100%);
    --gradient-solar: linear-gradient(135deg, #F97316 0%, #F59E0B 100%);
    --gradient-electric: linear-gradient(135deg, #0066FF 0%, #38BDF8 100%);
    --gradient-dark: linear-gradient(135deg, #1F2937 0%, #374151 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(5, 150, 105, 0.08);
    --shadow-md: 0 8px 24px rgba(5, 150, 105, 0.12);
    --shadow-lg: 0 16px 48px rgba(5, 150, 105, 0.15);
    --shadow-xl: 0 24px 64px rgba(5, 150, 105, 0.2);
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
}

.highlight {
    background: var(--gradient-nature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--charcoal);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn-nav):hover,
.nav-menu a.active {
    color: var(--emerald-green);
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-nature);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-nature) !important;
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.nature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 30%, #FEF3C7 70%, #FEF3E2 100%);
    animation: colorShift 20s ease infinite;
}

@keyframes colorShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.floating-leaves {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-nature);
    opacity: 0.15;
    border-radius: 0 100% 0 100%;
    animation: floatLeaf 25s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 20%;
    animation-delay: 8s;
}

.leaf-3 {
    bottom: 25%;
    left: 40%;
    animation-delay: 16s;
}

@keyframes floatLeaf {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(50px, -80px) rotate(120deg);
    }

    66% {
        transform: translate(-40px, 60px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-nature);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.8s ease-out, pulse 3s ease-in-out 1s infinite;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 30px 0 20px;
    color: var(--charcoal);
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.nature-gradient {
    background: var(--gradient-nature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--slate);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    animation: slideUp 0.8s ease-out 0.6s backwards;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--emerald-green);
}

.stat-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--slate);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideUp 0.8s ease-out 0.8s backwards;
}

.btn-hero {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-hero.primary {
    background: var(--gradient-nature);
    color: white;
}

.btn-hero.secondary {
    background: white;
    color: #25D366;
    border: 2px solid #25D366;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-visual {
    animation: slideLeft 0.8s ease-out 0.4s backwards;
}

.visual-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
}

.visual-wrapper:hover {
    transform: scale(1.05);
}

.visual-wrapper img {
    width: 100%;
    height: auto;
}

.energy-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--emerald-green);
    box-shadow: var(--shadow-lg);
    animation: bounce 2s ease infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate);
    font-weight: 600;
    animation: bounce 2s ease infinite;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

/* === SERVICE SECTIONS === */
.service-section {
    padding: 100px 0;
    position: relative;
}

.solar-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFBEB 100%);
}

.biogas-section {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
}

.ev-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse>* {
    direction: ltr;
}

.service-image {
    animation: slideUp 0.8s ease-out;
}

.image-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
}

.image-card:hover {
    transform: scale(1.05) rotate(-2deg);
}

.image-card img {
    width: 100%;
    height: auto;
}

.image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-lg);
}

.image-badge.orange {
    background: var(--gradient-solar);
}

.image-badge.green {
    background: var(--gradient-nature);
}

.image-badge.blue {
    background: var(--gradient-electric);
}

.service-text {
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--emerald-green);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-text h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.highlight-orange {
    background: var(--gradient-solar);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-green {
    background: var(--gradient-nature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-blue {
    background: var(--gradient-electric);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.15rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--emerald-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--charcoal);
}

.benefit-item p {
    color: var(--slate);
    font-size: 0.95rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-service.orange {
    background: var(--gradient-solar);
}

.btn-service.green {
    background: var(--gradient-nature);
}

.btn-service.blue {
    background: var(--gradient-electric);
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* === WHY SECTION === */
.why-section {
    padding: 100px 0;
    background: var(--white);
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out;
}

.label {
    display: inline-block;
    background: rgba(5, 150, 105, 0.1);
    color: var(--emerald-green);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.section-head p {
    font-size: 1.15rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.why-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-card:nth-child(4) {
    animation-delay: 0.4s;
}

.why-card:nth-child(5) {
    animation-delay: 0.5s;
}

.why-card:nth-child(6) {
    animation-delay: 0.6s;
}

.why-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.why-icon.green {
    background: var(--gradient-nature);
}

.why-icon.orange {
    background: var(--gradient-solar);
}

.why-icon.blue {
    background: var(--gradient-electric);
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.why-card p {
    color: var(--slate);
}

/* === IMPACT SECTION === */
.impact-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.impact-stat {
    text-align: center;
    animation: scaleIn 0.6s ease-out backwards;
}

.impact-stat:nth-child(1) {
    animation-delay: 0.1s;
}

.impact-stat:nth-child(2) {
    animation-delay: 0.2s;
}

.impact-stat:nth-child(3) {
    animation-delay: 0.3s;
}

.impact-stat:nth-child(4) {
    animation-delay: 0.4s;
}

.impact-stat i {
    font-size: 3rem;
    color: var(--leaf-green);
    margin-bottom: 15px;
}

.impact-stat h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.impact-stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* === ABOUT SUMMARY SECTION === */
.about-summary-section {
    padding: 100px 0;
    background: var(--mint-light);
}

.about-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    animation: scaleIn 0.8s ease-out;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(5, 150, 105, 0.2));
}

.about-text {
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.about-text>p {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-highlights {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.about-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--charcoal);
}

.about-highlights i {
    color: var(--emerald-green);
    font-size: 1.2rem;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-info>p {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail {
    display: flex;
    gap: 20px;
    align-items: start;
}

.detail i {
    width: 50px;
    height: 50px;
    background: var(--gradient-nature);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--charcoal);
}

.detail a {
    color: var(--emerald-green);
    text-decoration: none;
    font-weight: 600;
}

.detail p {
    color: var(--slate);
}

.contact-form {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--emerald-green);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-nature);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* === FOOTER === */
.footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: var(--emerald-green);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--leaf-green);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--emerald-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === WHATSAPP === */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s ease infinite;
}

.whatsapp:hover {
    transform: scale(1.15);
}

/* === ANIMATIONS === */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {

    .hero-content,
    .service-content,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .service-text h2,
    .section-head h2 {
        font-size: 2rem;
    }

    .why-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: white;
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        transition: right 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-highlights {
        flex-direction: column;
    }
}