:root {
    --primary-color: #005f73;
    --secondary-color: #94d2bd;
    --accent-color: #ee9b00;
    --background-color: #f8f9fa;
    --text-color: #212529;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
}

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

.nav-links a {
    font-weight: 400;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 10px 0;
    top: 100%;
    /* Position below the link */
    left: 0;
}

/* Links inside the dropdown */
.dropdown-content li {
    display: block;
    margin: 0;
    /* Override potential margins */
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    /* Slightly smaller than main nav */
    text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--accent-color);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Dropdown Styling */
@media (max-width: 768px) {
    .dropdown {
        display: block;
        /* Stack vertically on mobile */
        width: 100%;
    }

    .dropdown-content {
        position: relative;
        /* Relative for stacking */
        box-shadow: none;
        background-color: #f9f9f9;
        width: 100%;
        padding: 0;
    }

    .dropdown-content a {
        padding-left: 30px;
        /* Indent sub-items */
    }

    /* Make dropdown visible by default or strictly hover? 
       On touch devices :hover can be tricky. Usually a click is needed.
       For a simple CSS solution often just letting it expand is easier, 
       or styling it always open on mobile. Let's make it show on hover/focus 
       but typically JS is better for mobile toggles. 
       For now, let's ensure it doesn't break layout. 
       We will let it show when the parent is effectively "hovered" or clicked.
    */
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    /* Background handled by ::before for better mobile support */
    position: relative;
    overflow: hidden;
    color: var(--white);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default background if var not set */
    background-image: var(--hero-bg, linear-gradient(rgba(0, 95, 115, 0.3), rgba(0, 95, 115, 0.3)), url('assets/images/hero_modern.jpg'));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    max-width: 350px;
    /* Adjust size as needed */
    margin-bottom: 2rem;
    /* filter removed to use original uploaded logo */
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    /* Rounded pill shape */
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(238, 155, 0, 0.4);
}

.btn:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(238, 155, 0, 0.6);
}

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

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

/* Why Choose Us Section */
.why-us-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 20px;
    background-color: rgba(238, 155, 0, 0.1);
    border-radius: 50%;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #0a9396);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

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

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: block;
    /* Ensure anchor behaves like block */
    text-decoration: none;
    /* Remove default underline */
    color: inherit;
    /* Inherit text color */
}

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

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

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

/* About Preview */
.about-preview {
    background-color: var(--white);
}

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

.about-text h3 {
    color: var(--accent-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-content p {
    margin: 5px 0;
}

.legal-links {
    margin: 10px 0;
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.credits {
    font-size: 0.8rem;
    opacity: 0.7;
    /* Smaller font size */
    text-align: right;
}

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

.credits a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* Responsive */


/* Contact Form */
.contact-form-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(238, 155, 0, 0.2);
}

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

/* Product Page Enhancements */
.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.benefit-item {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h4 {
    margin-bottom: 0.5rem;
}

/* New Contact Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.btn-full {
    width: 100%;
    padding: 15px;
    font-weight: 600;
}

/* Global Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Breakpoints */
/* Robust Mobile/Tablet Fix:
   - Supports scaling/landscape tablets up to 1680px (covers "More Space" on iPad Pro)
   - Supports ALL primary touch devices (hover: none)
   - Supports devices with coarse pointers (fingers)
*/
@media (max-width: 1680px),
(hover: none),
(pointer: coarse) {
    .hero::before {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .container {
        padding: 0 30px;
    }



    .hero {
        /* background-attachment: scroll;  REMOVED - now default */
        height: auto;
        min-height: 50vh;
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

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

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

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

    /* Mobile Menu Styling */
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        /* Full height minus header */
        overflow-y: auto;
        /* Enable scrolling if menu is long */
    }

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

    .nav-links li {
        margin: 1.5rem 0;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.2rem;
        /* Larger touch targets */
        display: block;
        padding: 0.5rem;
    }

    /* Mobile Dropdown handling */
    .dropdown {
        display: block;
        width: 100%;
    }

    .dropdown:hover .dropdown-content {
        /* On mobile, we might want to just show it always or handle differently. 
           For now, let's keep it hover/focus based but ensure layout is good. */
        display: block;
        position: relative;
        top: 0;
        box-shadow: none;
        background-color: #f8f9fa;
        /* Slightly different bg for distinction */
    }

    .dropdown-content {
        display: none;
        /* Hidden by default until hover/click */
        position: relative;
        width: 100%;
        background-color: #f8f9fa;
        box-shadow: none;
        padding: 0;
        top: 0;
    }

    .dropdown.active .dropdown-content,
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 15px 0;
        font-size: 1rem;
        padding-left: 0;
        /* Centered like parents */
    }

    /* Stack Grids */
    .about-grid,
    .features-grid,
    .services-grid,
    .footer-grid,
    .benefits-grid,
    .contact-wrapper,
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Typography Adjustments */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    /* Section Spacing */
    .section {
        padding: 50px 0;
    }

    .hero {
        padding: 4rem 0;
        min-height: auto;
        /* Allow content to dictate height on small screens if needed */
    }

    /* Contact Form on Mobile */
    .contact-container {
        padding: 1.5rem;
    }
}

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

    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .logo img {
        height: 40px;
        /* Slightly smaller logo */
    }

    .btn {
        width: 100%;
        /* Full width buttons on very small screens */
        padding: 12px 20px;
    }
}


/* Desktop Only Utilities */
@media (min-width: 769px) {
    .order-1-desktop {
        order: 1;
    }

    .order-2-desktop {
        order: 2;
    }
}

/* Desktop Parallax Effect (Only for large screens) */
@media (min-width: 1025px) {
    .hero::before {
        background-attachment: fixed;
    }
}

/* Modern Contact Form Styles */
.modern-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.modern-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: var(--text-color);
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(238, 155, 0, 0.15);
}

.modern-form .form-textarea {
    min-height: 250px;
    resize: vertical;
    line-height: 1.6;
}

.modern-form .select-wrapper {
    position: relative;
}

.modern-form .select-wrapper::after {
    content: '▼';
    font-size: 0.8rem;
    color: var(--primary-color);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.modern-form select {
    appearance: none;
    cursor: pointer;
}

/* Privacy Checkbox */
.privacy-group {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    font-weight: 400 !important;
    color: #666 !important;
    line-height: 1.5;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input~.checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--accent-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-text a:hover {
    color: var(--accent-color);
}

/* Button override for form */
.modern-form .btn-full {
    background: linear-gradient(135deg, var(--accent-color), #ffba08);
    border: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(238, 155, 0, 0.3);
}

.modern-form .btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(238, 155, 0, 0.4);
}

/* Visual Replication Styles (Split Layout) */

/* Section Background */
.section {
    background-color: #f9f9f9;
}

/* 1. Contact Info Side (Left) */
.contact-info-side {
    /* Standard block layout */
}

.icon-circle {
    background: var(--accent-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* 2. Contact Form Card (Right) */
.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

/* Form Rows (Split 50/50 for Name/Surname) */
.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

/* Underlined Inputs */
.form-group-line {
    margin-bottom: 2rem;
}

.form-group-line label {
    display: block;
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.form-group-line input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #eee;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: var(--font-main);
    background: transparent;
    border-radius: 0;
    transition: border-color 0.3s;
}

.form-group-line input:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

/* Select Row */
.form-group-select-row {
    margin-bottom: 2.5rem;
}

.form-group-select-row label {
    display: block;
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.form-group-select-row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    cursor: pointer;
    color: #333;
}

/* Textarea */
.form-group-textarea {
    margin-bottom: 2rem;
}

.form-group-textarea label {
    display: block;
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.form-group-textarea textarea {
    width: 100%;
    min-height: 180px;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    font-family: var(--font-main);
    font-size: 1rem;
    resize: vertical;
    background-color: #fafafa;
}

.form-group-textarea textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: white;
}

/* Simple Checkbox */
/* Simple Checkbox */
.checkbox-container-simple {
    display: flex;
    align-items: center;
    /* Center alignment */
    gap: 12px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.checkbox-container-simple input {
    margin: 0;
    /* Remove margin */
    accent-color: var(--accent-color);
    width: 18px;
    /* Fixed width */
    height: 18px;
    /* Fixed height */
    flex-shrink: 0;
    /* Prevent shrinking */
    cursor: pointer;
}

.privacy-text-simple a {
    color: #333;
    text-decoration: underline;
    font-weight: 500;
}

/* Pill Button */
.btn-pill-yellow {
    background: linear-gradient(135deg, #ffba08 0%, #faa307 100%);
    /* Gradient for more pop */
    color: white;
    border: none;
    padding: 18px 60px;
    /* Larger padding */
    border-radius: 50px;
    font-size: 1.4rem;
    /* Larger text */
    font-weight: 800;
    /* Bolder text */
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 186, 8, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.btn-pill-yellow:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 186, 8, 0.5);
    background: linear-gradient(135deg, #faa307 0%, #f48c06 100%);
}


/* Responsive Adjustments */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

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

    .contact-form-card {
        padding: 2rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-group-select-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group-select-row select {
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}