/* ============================================
   ULTRA MODERN PORTFOLIO CSS - RoomiTech Solutions
   GREEN COLOR SCHEME FROM LOGO
   ============================================ */

:root {
    /* Primary Green Palette (from logo) */
    --primary-dark: #2d5a2d;
    --primary: #3d7639;
    --primary-light: #5a9d5a;
    --accent: #7fb069;
    --accent-light: #a8d5a8;

    /* Supporting Colors */
    --dark: #0f172e;
    --dark-gray: #1a1f2e;
    --light: #f0f5f2;
    --text: #1a1a1a;
    --text-light: #666;
    --text-muted: #999;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    --gradient-light: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);

    /* Effects */
    --shadow: 0 10px 30px rgba(61, 118, 57, 0.1);
    --shadow-lg: 0 20px 60px rgba(61, 118, 57, 0.15);
    --shadow-hover: 0 25px 80px rgba(61, 118, 57, 0.2);
    --glow: 0 0 20px rgba(127, 176, 105, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ BUTTONS ============ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(61, 118, 57, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 3s infinite;
    animation-delay: 0s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(61, 118, 57, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2.5px solid var(--primary);
}

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

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

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

/* ============ NAVIGATION ============ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    border-bottom: 1px solid rgba(61, 118, 57, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(61, 118, 57, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: slideInDown 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(127, 176, 105, 0.4));
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(61, 118, 57, 0.15));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    animation: slideInDown 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    animation-delay: 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    border-radius: 2px;
}

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

/* ============ HERO SECTION ============ */

.hero {
    margin-top: 70px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f5f2 0%, #ffffff 50%, #f8fdf6 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--text);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 118, 57, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlowReverse 10s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(30px) translateX(-20px); }
}

@keyframes floatSlowReverse {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-30px) translateX(20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--text);
    animation: slideInDown 1s cubic-bezier(0.23, 1, 0.320, 1) 0.2s forwards;
}

.hero-highlight {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 550px;
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.320, 1) 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.320, 1) 0.6s forwards;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.hero-visual {
    position: relative;
    height: 450px;
    animation: slideInRight 1s cubic-bezier(0.23, 1, 0.320, 1);
}

.floating-card {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(127, 176, 105, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 32px rgba(61, 118, 57, 0.1);
    color: var(--primary);
}

.floating-card:hover {
    background: rgba(127, 176, 105, 0.15);
    border-color: var(--accent);
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.card-1 {
    top: 20px;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 160px;
    right: 20px;
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 20px;
    left: 60px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(25px); }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(127, 176, 105, 0);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(127, 176, 105, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(127, 176, 105, 0.7), 0 0 30px rgba(127, 176, 105, 0.5);
    }
}

@keyframes rotate-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flip {
    0% { transform: perspective(400px) rotateY(0); }
    100% { transform: perspective(400px) rotateY(360deg); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes wobble {
    0% { transform: translateX(0); }
    15% { transform: translateX(-5px) rotate(-2deg); }
    30% { transform: translateX(5px) rotate(2deg); }
    45% { transform: translateX(-5px) rotate(-2deg); }
    60% { transform: translateX(3px) rotate(1deg); }
    75% { transform: translateX(-2px) rotate(-1deg); }
    100% { transform: translateX(0); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideLeftToRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRightToLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float-up {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes swing {
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ SECTION HEADER ============ */

.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.section-header h2 {
    margin-bottom: 15px;
    font-size: 3rem;
    animation: slideInDown 0.8s cubic-bezier(0.23, 1, 0.320, 1) forwards;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.320, 1) 0.2s forwards;
}

/* ============ ABOUT SECTION ============ */

.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.about-content h3 {
    color: var(--primary);
    margin-top: 40px;
    font-size: 1.6rem;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(61, 118, 57, 0.1);
    color: var(--text-light);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.features-list li:hover {
    padding-left: 10px;
    color: var(--primary);
}

.features-list li:last-child {
    border-bottom: none;
}

.philosophy-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 245, 242, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(61, 118, 57, 0.1);
    border: 1px solid rgba(127, 176, 105, 0.2);
    position: sticky;
    top: 120px;
}

.philosophy-box h3 {
    margin-top: 0;
}

.philosophy-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.philosophy-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: rgba(127, 176, 105, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.philosophy-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(12px);
    box-shadow: var(--shadow);
    animation: wobble 0.6s ease-in-out;
}

.philosophy-item .number {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    min-width: 50px;
}

.philosophy-item:hover .number {
    color: white;
}

.philosophy-item p {
    margin: 0;
    font-weight: 700;
    font-size: 1.05rem;
}

/* ============ SERVICES SECTION ============ */

.services {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(240, 245, 242, 0.5) 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(61, 118, 57, 0.08);
    border: 1px solid rgba(127, 176, 105, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: slideUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-15px) rotateZ(-1deg);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent);
    animation: heartbeat 0.6s ease-in-out;
}

.service-card:hover .service-icon {
    animation: bounce 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: blink 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(127, 176, 105, 0.2));
    transition: all 0.3s ease;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-card ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border: none;
    font-size: 0.98rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.service-card:hover ul li {
    color: var(--primary);
    padding-left: 35px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
}

/* ============ WHY CHOOSE SECTION ============ */

.why-choose {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(61, 118, 57, 0.03) 0%, rgba(127, 176, 105, 0.03) 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(61, 118, 57, 0.08);
    border: 1px solid rgba(127, 176, 105, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: slideUp 0.6s ease;
    position: relative;
}

.reason-card:nth-child(2) {
    animation-delay: 0.1s;
}

.reason-card:nth-child(3) {
    animation-delay: 0.2s;
}

.reason-card:nth-child(n+4) {
    animation-delay: 0.3s;
}

.reason-card:hover {
    transform: translateY(-15px) rotateZ(1deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
    animation: pulse 1s ease-in-out;
}

.reason-card:hover .reason-icon {
    animation: spin 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    transform: scale(1.15);
}

.reason-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(127, 176, 105, 0.25));
    animation: float-up 3s ease-in-out infinite;
}

.reason-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.reason-card p {
    margin: 0;
    font-size: 1rem;
}

/* ============ TEAM SECTION ============ */

.team {
    padding: 120px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 45px;
    margin-top: 60px;
}

.team-member {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(61, 118, 57, 0.1);
    border: 1px solid rgba(127, 176, 105, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: slideUp 0.6s ease;
}

.team-member:nth-child(2) {
    animation-delay: 0.1s;
}

.team-member:nth-child(3) {
    animation-delay: 0.2s;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.member-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: var(--gradient-primary);
    position: relative;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 118, 57, 0.2), rgba(127, 176, 105, 0.2));
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 0;
}

.team-member:hover .member-image img {
    animation: zoomIn 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    transform: scale(1.12);
}

.member-info {
    padding: 40px;
}

.member-info h3 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.3rem;
}

.position {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.bio {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ============ CLIENTS SECTION ============ */

.clients {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(240, 245, 242, 0.5) 0%, var(--white) 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.client-logo {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    box-shadow: 0 8px 32px rgba(61, 118, 57, 0.08);
    border: 1px solid rgba(127, 176, 105, 0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.client-logo:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
    animation: bounce 0.6s ease-in-out;
}

.client-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.05));
}

.partner-section {
    text-align: center;
    margin-top: 80px;
}

.partner-section h3 {
    margin-bottom: 40px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(61, 118, 57, 0.1);
    border: 1px solid rgba(127, 176, 105, 0.2);
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.partner-card:hover {
    transform: translateY(-8px) rotateZ(1deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
    animation: heartbeat 0.6s ease-in-out;
}

.partner-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(61, 118, 57, 0.2));
}

.partner-info {
    text-align: left;
}

.partner-info h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.partner-info p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============ CTA SECTION ============ */

.cta {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlowReverse 10s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    animation: slideInDown 1s cubic-bezier(0.23, 1, 0.320, 1) forwards;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.320, 1) 0.3s forwards;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
    background: var(--light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

/* ============ FOOTER ============ */

.footer {
    background: var(--dark-gray);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(127, 176, 105, 0.4), transparent);
}

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

.footer-section h4 {
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
    border: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(127, 176, 105, 0.2);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-bottom p:last-child {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ============ SCROLL TO TOP ============ */

.scroll-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* ============ RESPONSIVE ============ */

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

    h2 {
        font-size: 2.3rem;
    }

    .hero-content {
        gap: 40px;
    }

    .about-grid {
        gap: 50px;
    }

    .philosophy-box {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 30px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-visual {
        display: none;
    }

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

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

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

    .partner-card {
        flex-direction: column;
        gap: 30px;
    }

    .partner-card img {
        width: 120px;
        height: 120px;
    }

    .partner-info {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        gap: 15px;
    }

    section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

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

    .nav-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        height: 35px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero {
        margin-top: 100px;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

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

    .service-card,
    .reason-card {
        padding: 30px;
    }

    .philosophy-box {
        padding: 30px;
    }

    .member-info {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }

    section {
        padding: 50px 0;
    }

    .about,
    .services,
    .team,
    .clients {
        padding: 60px 0;
    }
}
