:root {
    --primary: #2C7A7B;
    --primary-dark: #234E52;
    --primary-light: #E6FFFA;
    --secondary: #2D3748;
    --accent: #ED8936;
    --light: #F7FAFC;
    --white: #FFFFFF;
    --dark: #1A202C;
    --gray: #718096;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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);
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: var(--secondary);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.btn {
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

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

/* Navbar Customization */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    padding: 25px 0;
    margin-left: 25px;
    font-weight: 500;
    color: var(--secondary);
    transition: 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Hero Section */
.hero-header {
    background: linear-gradient(rgba(44, 122, 123, 0.7), rgba(44, 122, 123, 0.4)), url('../img/hero.jpg') center center no-repeat;
    background-size: cover;
    padding: 120px 0;
    color: var(--white);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Icon Boxes */
.icon-box {
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    height: 100%;
}

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

.icon-box .icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 30px;
}

/* Step Cards */
.step-card {
    text-align: center;
    position: relative;
}

.step-card .step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 8px solid var(--primary-light);
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-control {
    border-radius: 10px;
    padding: 12px 20px;
    border: 1px solid #E2E8F0;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.15);
    border-color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Custom Utilities */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }

/* Micro-animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

/* Fix distorted icons */
.btn-lg-square {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px;
    min-height: 64px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.rounded-circle {
    border-radius: 50% !important;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

