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

button {
    cursor: pointer;
}

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

li {
    list-style: none;
}

/* --- Root Variables for Theming --- */
:root {
    /* Main Site Palette */
    --site-bg-primary: #F2E7DA; /* Light beige/cream */
    --site-text-primary: #3D2211; /* Dark brown */
    --site-text-secondary: rgba(61, 34, 17, 0.8); /* Slightly lighter brown for body text */
    --site-link-hover: #5C3D2B; /* Brown for link hover */

    /* Generic Button Styles (used in Header & Hero) */
    --btn-gradient-start-light: #ff930f81;
    --btn-gradient-end-light: #fff95b;
    --btn-gradient-start-hero: #f1e1c2;
    --btn-gradient-end-hero: #fcbc98;
    --btn-text-color: black;
    --btn-transition-transform: transform .3s ease, opacity 0.5s ease;
    --btn-opacity-hover: .8;
    --btn-scale-hover: 1.05;
    --btn-shine-gradient: linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0%, rgb(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.15) 100%);
    --btn-shine-animation-duration: 2.5s;

    /* Features Section Palette */
    --features-card-bg: #FFFFFF;
    --features-card-border: rgba(61, 34, 17, 0.1);
    --features-shadow-light: rgba(0, 0, 0, 0.05);
    --features-shadow-medium: rgba(0, 0, 0, 0.1);

    /* Services Section Palette */
    --primary-accent: #5D5DE4; /* Blue color from .codraka for consistency */
    --tag-bg: rgba(93, 93, 228, 0.1);
    --card-bg: #FFFFFF;
    --card-border: rgba(93, 93, 228, 0.1);
    --card-shadow-base: rgba(0, 0, 0, 0.08);
    --card-shadow-hover: rgba(0, 0, 0, 0.15);
    --icon-circle-bg: rgba(93, 93, 228, 0.1);
    --text-on-accent: #FFFFFF;
    --primary-accent-hover: #4a4aba;


    /* Contact Section Palette */
    --contact-bg-light: #fcf8f3; /* cream/light beige */
    --contact-text-dark: #4b3f33; /* dark brown/taupe */
    --contact-primary-accent: #7b94b0; /* muted blue-grey */
    --contact-secondary-teal: #77b8aa; /* light teal */
    --contact-secondary-peach: #fbc7a9; /* light peach */
    --contact-tertiary-lavender: #a9a3f8; /* light lavender */
    --contact-border-light: #d3cdc7; /* Softer border color */
    --contact-white: #ffffff;
    --contact-accent-hover: #5e7a9e; /* Slightly darker primary accent on hover */
}

/* --- Base HTML & Body Styles --- */
html {
    /* Optional: Smooth scroll for anchors */
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh; /* Ensure body takes full height */
    background-color: var(--site-bg-primary);
    color: var(--site-text-primary);
    font-family: "Inter", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fallback fonts */
    line-height: 1.6;

    /* --- STICKY FOOTER CSS FOR BODY --- */
    display: flex;
    flex-direction: column;
    margin: 0; /* Remove default body margin */
}

/* --- Animations --- */
@keyframes light {
    0% { left: -75%; }
    100% { left: 125%; }
}

/* --- Header --- */
.top-element {
    position: sticky;
    z-index: 1000; /* High z-index to stay on top */
    top: 8px;
    margin-right: 200px; /* Consider using max-width + margin: auto for better responsiveness */
    margin-left: 140px;
}

.container {
    display: flex;
    align-items: center;
    padding: .1rem 2rem;
    flex-wrap: wrap;
    background-color: var(--site-bg-primary);
    border-bottom: .1px solid var(--site-bg-primary); /* Should this be a different color? */
    border-radius: 99999px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow for floating effect */
}

.photo {
    margin-right: 15px;
    margin-top: 8px;
    /* Assume this is an actual image or icon */
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    border: .1px solid rgba(255, 255, 255, 0.815); /* Consider using a var for this */
    padding: 1.2rem 2rem;
    border-radius: 999px;
}

.nav-item {
    font-family: "Inter";
    font-size: .9em;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: gray;
    transform: scale(1.05);
}

.nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: gray;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
    cursor: pointer;
    transform: scale(1.05);
}

.btn {
    margin-left: auto;
    padding: 1.5em 2rem;
    border: none;
    border-radius: .9rem;
    margin-right: 2rem;
    color: var(--btn-text-color);
    font-size: .8em;
    font-weight: 600;
    letter-spacing: 1.3px;
    background: linear-gradient(45deg, var(--btn-gradient-start-light), var(--btn-gradient-end-light));
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    transition: var(--btn-transition-transform);
    opacity: 1;
    z-index: 0;
    font-family: "Inter";
}

.btn:hover {
    transform: scale(var(--btn-scale-hover));
    opacity: var(--btn-opacity-hover);
}

.btn::before {
    content: "";
    position: absolute;
    left: -75%;
    top: 0%;
    width: 50%;
    height: 100%;
    background: var(--btn-shine-gradient);
    animation: light var(--btn-shine-animation-duration) linear infinite;
    transform: skewX(-25deg);
    filter: blur(3px);
}

/* --- Hero Section --- */
.hero-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter";
    flex-wrap: wrap;
    position: relative;
    background-color: var(--site-bg-primary); /* Uses main site background */
    color: var(--site-text-primary); /* Uses main site text color */
    overflow: hidden; /* Hide overflowing background patterns */
}

/* Unique fixed background for Hero only, if desired, otherwise remove */
.hero-container .fixed-background-image {
    position: absolute; /* Changed to absolute for hero section only */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Cover hero section */
    background-image: url('./s.svg'); /* Your SVG image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none; /* Ensure it doesn't block content */
}

.hero-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 600px;
    margin-bottom: 15rem;
    margin-right: 3rem;
    z-index: 2; /* Above the background image */
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 5.6vw;
    margin-bottom: .2em;
}

.hero-text h4 {
    font-size: .9em;
    opacity: .6;
}

.hero-img {
    width: 36vw;
    height: 36vw;
    border-radius: 50%;
    margin-bottom: 12vw;
    z-index: 2; /* Above the background image */
}

.hero-btn {
    margin-right: 15rem;
    margin-top: 3.9rem;
    padding: 2em 2.5em;
    background: linear-gradient(45deg, var(--btn-gradient-start-hero), var(--btn-gradient-end-hero));
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    transition: var(--btn-transition-transform);
    opacity: 1;
    z-index: 2; /* Above the background image */
    font-family: "Inter";
    border: none; /* Add this if missing */
    border-radius: .9rem; /* Add this if missing */
    color: var(--btn-text-color); /* Inherit from general button styles */
}

.hero-btn:hover {
    transform: scale(var(--btn-scale-hover));
    opacity: var(--btn-opacity-hover);
}

.hero-btn::before {
    content: "";
    position: absolute;
    left: -75%;
    top: 0%;
    width: 50%;
    height: 100%;
    background: var(--btn-shine-gradient);
    animation: light var(--btn-shine-animation-duration) linear infinite;
    transform: skewX(-25deg);
    filter: blur(3px);
}

/* --- Features Section --- */
.features-section {
    background-color: var(--site-bg-primary);
    padding: 64px 20px; /* py-16, added horizontal padding */
    max-width: 1200px; /* Constrain content width */
    margin: 0 auto; /* Center the content */
}

@media (min-width: 768px) {
    .features-section {
        padding: 96px 20px; /* md:py-24 */
    }
}

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

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 64px;
    }
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif; /* Make sure Montserrat is linked or replace */
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--site-text-primary);
    margin-bottom: 16px;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: var(--site-text-secondary);
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--features-card-bg);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px var(--features-shadow-medium), 0 4px 6px -2px var(--features-shadow-light);
    border: 1px solid var(--features-card-border);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px var(--features-shadow-medium), 0 10px 10px -5px var(--features-shadow-light);
    transform: translateY(-8px);
}

.feature-card .icon-wrapper {
    color: var(--site-text-primary);
    margin-bottom: 16px;
    text-align: center;
}

.feature-card .icon-wrapper svg {
    width: 48px;
    height: 48px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif; /* Make sure Montserrat is linked or replace */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--site-text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.feature-card p {
    font-size: 1rem;
    color: var(--site-text-secondary);
    text-align: center;
    opacity: 0.85;
    flex-grow: 1;
}

.feature-card .learn-more-link-wrapper {
    margin-top: 24px;
    text-align: center;
}

.feature-card .learn-more-link {
    color: var(--site-text-primary);
    opacity: 0.9;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.feature-card .learn-more-link:hover {
    color: var(--site-link-hover);
}

.feature-card .learn-more-link svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
}

.final-cta-wrapper {
    text-align: center;
    margin-top: 64px;
}

.final-cta-wrapper p {
    font-size: 1.25rem;
    color: var(--site-text-secondary);
    margin-bottom: 24px;
    opacity: 0.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    color: var(--site-bg-primary); /* Changed to site-bg-primary for contrast */
    background-color: var(--site-text-primary); /* Changed to site-text-primary for contrast */
    box-shadow: 0 4px 6px -1px var(--features-shadow-medium), 0 2px 4px -1px var(--features-shadow-light);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--site-link-hover);
    color: #FFFFFF;
}

.cta-button svg {
    margin-left: 12px;
    width: 20px;
    height: 20px;
}

/* --- Services Section V2 Styling: Floating Card / Layered Design --- */

/* Reset/Re-apply for Section */
.services-section-v2 {
    position: relative;
    width: 100%;
    padding: 100px 0; /* More vertical padding for breathing room */
    background-color: var(--site-bg-primary); /* Use your defined site primary background */
    color: var(--site-text-primary);
    overflow: hidden; /* Important for containing elements and subtle effects */
}

.services-container-v2 {
    max-width: 1100px; /* Slightly narrower for a more focused layout */
    margin: 0 auto;
    padding: 0 25px; /* Consistent horizontal padding */
    position: relative;
    z-index: 2; /* Ensures content is above any background effects */
}

/* Header Styling (adapted to your classes) */
.services-section-v2 .section-top-header {
    text-align: center;
    margin-bottom: 70px; /* More space below header */
}

.services-section-v2 .contact-tag { /* Renamed from original 'contact-tag' to 'section-tag' in my unique CSS */
    display: inline-block;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-accent); /* Accent color for the tag */
    background-color: var(--tag-bg); /* Light background for the tag */
    padding: 8px 18px;
    border-radius: 50px; /* Pill shape */
    margin-bottom: 15px;
}

.services-section-v2 .main-section-title {
    font-size: 3.5em; /* Slightly adjusted size, more prominent */
    font-weight: 800; /* Bolder for impact */
    color: var(--site-text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-section-v2 .section-description-v2 {
    font-size: 1.15em; /* Slightly larger description text */
    color: var(--site-text-secondary);
    max-width: 750px; /* Wider description for readability */
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* --- Services Horizontal Scroll Wrapper (Retaining your horizontal scroll) --- */
.services-scroll-wrapper {
    position: relative;
    margin-top: 40px;
    overflow-x: auto; /* Enables horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
    padding-bottom: 30px; /* Increased space for scrollbar to feel less cramped */

    /* Custom scrollbar styles to match new theme */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--primary-accent) transparent; /* Firefox scrollbar thumb and track */
}

/* Custom scrollbar styles for Webkit browsers */
.services-scroll-wrapper::-webkit-scrollbar {
    height: 10px; /* Slightly taller scrollbar */
}
.services-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--card-border); /* Light track, more visible than blending fully */
    border-radius: 10px;
}
.services-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary-accent); /* Accent colored thumb */
    border-radius: 10px;
    border: 3px solid var(--card-border); /* Padding around thumb matches track */
}


.services-cards-horizontal {
    display: flex;
    gap: 30px; /* Space between cards */
    padding: 10px 0; /* Vertical padding for shadow clipping */
    min-width: fit-content; /* Ensure content takes up minimum width */
    justify-content: center; /* Center cards if total width is less than container */
}

/* --- Service Card V2 Styling: Floating Effect --- */
.service-card-v2 {
    flex-shrink: 0; /* Prevent cards from shrinking */
    width: 330px; /* Slightly wider cards for a more substantial feel */
    background-color: var(--card-bg); /* Pure white for a crisp, floating look */
    border: 1px solid var(--card-border); /* Very subtle border */
    border-radius: 16px; /* More rounded corners */
    padding: 45px 35px; /* Generous padding */
    text-align: left; /* Align text left within cards for uniqueness */
    box-shadow: 0 10px 30px var(--card-shadow-base); /* Deeper, softer shadow for floating */
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the start (left) */
    justify-content: space-between;
    min-height: 380px; /* Consistent card height */
    position: relative;
    z-index: 1; /* Default stacking order */
}

.service-card-v2:hover {
    box-shadow: 0 18px 45px var(--card-shadow-hover); /* Enhanced shadow on hover */
    transform: translateY(-12px) scale(1.01); /* Lift further and slight scale for emphasis */
    z-index: 2; /* Bring hovered card to front */
}

.card-icon-wrapper-v2 {
    margin-bottom: 30px;
    color: var(--primary-accent); /* Icon color from primary accent */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px; /* Slightly smaller icon circle */
    height: 70px;
    border-radius: 50%;
    background-color: var(--icon-circle-bg); /* Light background for icon circle */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08); /* Subtle shadow for icon circle */
}

.card-icon-wrapper-v2 svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.service-card-v2 h3 {
    font-family: 'Inter', sans-serif; /* Recommended font, adjust if different in your body */
    font-size: 2em; /* Prominent title */
    font-weight: 700;
    color: var(--site-text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-v2 p {
    font-size: 1.05em;
    color: var(--site-text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes button to the bottom */
}

.btn-learn-more-v2 {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px; /* More padding for a substantial button */
    border-radius: 999px;
    background-color: var(--primary-accent); /* Accent button */
    color: var(--text-on-accent); /* White text on accent */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(93, 156, 236, 0.3); /* Shadow for the accent button */
}

.btn-learn-more-v2:hover {
    background-color: var(--primary-accent-hover); /* Darker accent on hover */
    transform: translateY(-3px); /* Lift slightly more */
    box-shadow: 0 8px 20px rgba(93, 156, 236, 0.45);
}

.btn-learn-more-v2 svg {
    margin-left: 10px; /* More space for icon */
    width: 18px;
    height: 18px;
}

/* --- Media Queries for Services Section V2 (Adjusted) --- */

/* For smaller desktops/large tablets: keep horizontal scroll, but adjust padding */
@media (max-width: 1200px) {
    .services-container-v2 {
        max-width: 100%; /* Allow container to fill width, padding will handle spacing */
        padding: 0 20px; /* Slight adjustment */
    }
}

/* Tablets and larger phones: switch to vertical stack */
@media (max-width: 1024px) {
    .services-scroll-wrapper {
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-bottom: 0; /* Remove scrollbar space */
    }

    .services-cards-horizontal {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center cards */
        gap: 30px; /* Vertical gap */
        padding: 0; /* Remove horizontal padding */
    }

    .service-card-v2 {
        width: 100%; /* Take full width of container */
        max-width: 450px; /* Max width for readability */
        margin-left: auto;
        margin-right: auto;
        min-height: unset; /* Allow height to adjust to content */
        padding: 35px 25px;
        box-shadow: 0 8px 25px var(--card-shadow-base); /* Slightly reduced shadow */
    }

    .service-card-v2:hover {
        transform: translateY(-5px) scale(1.00); /* Less aggressive lift on hover */
        box-shadow: 0 12px 30px var(--card-shadow-hover);
    }

    .services-section-v2 .main-section-title {
        font-size: 2.8em;
    }
    .services-section-v2 .section-description-v2 {
        font-size: 1em;
    }
    .card-icon-wrapper-v2 {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .card-icon-wrapper-v2 svg {
        width: 30px;
        height: 30px;
    }
    .service-card-v2 h3 {
        font-size: 1.8em;
    }
    .service-card-v2 p {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
}

/* Smaller phones */
@media (max-width: 480px) {
    .services-section-v2 {
        padding: 60px 0;
    }
    .services-container-v2 {
        padding: 0 15px;
    }
    .services-section-v2 .main-section-title {
        font-size: 2.2em;
    }
    .services-section-v2 .contact-tag {
        font-size: 0.8em;
        padding: 6px 14px;
    }
    .service-card-v2 {
        padding: 30px 20px;
    }
    .btn-learn-more-v2 {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}














/* --- Contact Section --- */
.contact-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: var(--contact-bg-light);
    color: var(--contact-text-dark);
    box-sizing: border-box;
}

.section-top-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
}

.main-section-title {
    font-size: 4.5em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--contact-text-dark);
    margin-top: 10px;
    line-height: 1;
}

.contact-tag {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--contact-primary-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-left: 25px;
    display: inline-block;
}

.contact-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--contact-primary-accent);
    border-radius: 2px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.contact-info-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding: 20px 0;
}

.contact-info-text h3 {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
    font-weight: normal;
    color: var(--contact-text-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-details p {
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--contact-text-dark);
}

.contact-details i {
    font-size: 1.4em;
    color: var(--contact-primary-accent);
}

.contact-details a {
    color: var(--contact-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--contact-primary-accent);
}

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

.social-links a {
    font-size: 2.2em;
    color: var(--contact-text-dark);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--contact-primary-accent);
}

.contact-form-area {
    flex: 1;
    min-width: 300px;
    padding: 20px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    background-color: var(--contact-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 0 auto;
}

.contact-form label {
    text-align: left;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--contact-text-dark);
    font-size: 0.95em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--contact-border-light);
    border-radius: 6px;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    color: var(--contact-text-dark);
    background-color: var(--contact-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--contact-primary-accent);
    outline: none;
    box-shadow: 0 0 8px rgba(123, 148, 176, 0.3);
}

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

.contact-form button {
    background-color: var(--contact-primary-accent);
    color: var(--contact-white);
    padding: 16px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: var(--contact-accent-hover);
    transform: translateY(-2px);
}

.contact-illustration {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* --- Contact Media Queries --- */
@media (max-width: 1024px) {
    .section-top-header {
        margin-bottom: 40px;
    }

    .main-section-title {
        font-size: 3.5em;
    }

    .contact-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .contact-info-text,
    .contact-form-area,
    .contact-illustration {
        width: 100%;
        max-width: 600px;
        text-align: center;
        padding: 0;
    }

    .contact-info-text h3 {
        font-size: 1.1em;
        margin: 0 auto 30px auto;
    }

    .contact-details {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form button {
        align-self: center;
    }

    .contact-illustration {
        order: 4;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 50px 15px;
    }

    .main-section-title {
        font-size: 2.8em;
    }

    .contact-info-text h3 {
        font-size: 1em;
    }

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

    .contact-form button {
        padding: 14px 25px;
        font-size: 1em;
    }
}




.codraka {
    color: rgba(93, 93, 228, 0.747); /* Blue color for .codraka */
    font-weight: bold; /* Added bold for emphasis */
}









































