/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors from Logo */
    --primary-green: #1B5E20;
    --primary-green-light: #2E7D32;
    --primary-green-dark: #0D2F0F;
    --accent-green: #4CAF50;
    --soft-green: #E8F5E8;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #424242;
    --text-dark: #212121;
    --text-light: #757575;
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green-light) 100%);
    --gradient-soft: linear-gradient(135deg, var(--soft-green) 0%, rgba(76, 175, 80, 0.1) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 50%, var(--primary-green-light) 100%);
    
    /* Typography - Eye-friendly fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Merriweather', Georgia, 'Times New Roman', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 30px rgba(27, 94, 32, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Advanced Responsive Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: clamp(1.1, 1.2, 1.3);
}

h2 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: clamp(1.1, 1.2, 1.3);
}

h3 {
    font-size: clamp(1.25rem, 4vw, 2.25rem);
    line-height: clamp(1.2, 1.3, 1.4);
}

h4 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    line-height: 1.3;
}

h5 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.4;
}

h6 {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: clamp(1.5, 1.6, 1.7);
}

/* Responsive text scaling for different contexts */
.hero-title {
    font-size: clamp(2.25rem, 7vw, 5rem);
    line-height: clamp(1.1, 1.15, 1.2);
    margin-bottom: 1.5rem;
}

.hero-title .main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: clamp(1.1, 1.2, 1.3);
    display: block;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    line-height: clamp(1.4, 1.5, 1.6);
    margin-bottom: 2rem;
}

.hero-tagline {
    margin-bottom: 2.5rem;
}

.tagline-text {
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-family: var(--font-accent);
    line-height: 1.3;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: clamp(1.1, 1.2, 1.3);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: clamp(1.4, 1.5, 1.6);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-image {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.15);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.scrolled .brand-name {
    color: var(--primary-green);
    text-shadow: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

.header.scrolled .nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 0.6s forwards;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-logo {
    opacity: 0;
    animation: fadeInScale 1s ease-out 0.8s forwards;
}

.logo-image-large {
    width: clamp(120px, 25vw, 300px);
    height: clamp(120px, 25vw, 300px);
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    background: var(--white);
    border: clamp(2px, 0.5vw, 4px) solid rgba(255, 255, 255, 0.9);
    padding: clamp(5px, 1vw, 15px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--white);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Note Section */
.welcome-note {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.welcome-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-soft);
    opacity: 0.3;
    z-index: 0;
}

.welcome-note .container {
    position: relative;
    z-index: 1;
}

.welcome-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-medium);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

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

.welcome-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-medium);
}

.welcome-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.welcome-intro {
    font-size: clamp(1.3rem, 3.5vw, 1.75rem);
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.welcome-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-primary);
}

.welcome-text p {
    font-size: clamp(1.05rem, 2.8vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.015em;
    color: var(--text-dark);
}

.welcome-cta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--soft-green);
}

.welcome-message {
    background: var(--soft-green);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.welcome-message p {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

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

.promise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(27, 94, 32, 0.05);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.promise-item:hover {
    background: rgba(27, 94, 32, 0.1);
    transform: translateY(-2px);
}

.promise-item i {
    color: var(--primary-green);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.promise-item span {
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
}

.welcome-closing {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 1.5rem 0;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.welcome-btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

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

/* Why Choose MindoMan Section */
.why-choose {
    padding: var(--section-padding);
    background: var(--light-gray);
    position: relative;
}

.why-choose-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-card h4 {
    color: var(--primary-green);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    font-family: var(--font-primary);
}

.why-choose-message {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

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

.main-message {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-accent);
    font-style: italic;
}

.main-message strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* Founder Section */
.founder {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.founder-hero {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

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

.founder-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.founder-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.avatar-placeholder i {
    font-size: 4rem;
    color: var(--white);
}

.founder-details h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-family: var(--font-accent);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.founder-subtitle {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.founder-mission {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

.founder-story {
    margin-bottom: 3rem;
}

.story-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.achievement-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-smooth);
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.achievement-card:hover .achievement-icon {
    background: var(--gradient-primary);
}

.achievement-card:hover .achievement-icon i {
    color: var(--white);
}

.achievement-card h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.journey-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 3rem;
}

.journey-section .section-subtitle {
    text-align: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-accent);
}

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

.journey-card {
    background: var(--soft-green);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.journey-card:hover {
    background: var(--gradient-soft);
    transform: translateY(-3px);
}

.journey-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.journey-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.journey-card h5 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.journey-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.journey-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.qualifications-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 3rem;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.qual-column h4 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.qualification-list,
.approach-list {
    list-style: none;
    padding: 0;
}

.qualification-list li,
.approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--soft-green);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.qualification-list li:hover,
.approach-list li:hover {
    background: var(--gradient-soft);
}

.qualification-list li i,
.approach-list li i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.philosophy-section {
    background: var(--gradient-soft);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.philosophy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.founder-quote {
    background: var(--primary-green);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    border: none;
    box-shadow: var(--shadow-medium);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--primary-green);
    padding: 0.5rem;
    border-radius: 50%;
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.founder-quote p {
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
    color: var(--white);
    font-family: var(--font-accent);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.philosophy-closing {
    color: var(--text-dark);
    font-weight: 500;
}

.founder-note {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 235, 59, 0.1);
    border-radius: 10px;
    border-left: 4px solid #FFC107;
}

.disclaimer {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    background: rgba(255, 255, 255, 0.98);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

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

.service-card p {
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

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

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

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

.about-card {
    text-align: center;
    padding: 2rem 1rem;
}

.about-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
}

.about-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

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

/* Blogs Section */
.blogs {
    padding: var(--section-padding);
    background: var(--gradient-soft);
}

.blog-preview {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.blog-card.featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.blog-image {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.blog-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder i {
    font-size: 2rem;
    color: var(--white);
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    background: var(--soft-green);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content h3 {
    color: var(--primary-green);
    margin: 1rem 0;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

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

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.blog-cta .btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 1rem 2rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

.blog-cta .btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-text h4 {
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.contact-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-text a:hover {
    color: var(--primary-green);
}

/* Enhanced Responsive Forms */
.contact-form-container,
.appointment-form-container {
    background: var(--light-gray);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: clamp(15px, 3vw, 20px);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.contact-form h3,
.appointment-form h3 {
    color: var(--primary-green);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.form-group {
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.75rem, 2vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(0.875rem, 2.5vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
    border: 2px solid var(--medium-gray);
    border-radius: clamp(8px, 2vw, 12px);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    background: var(--white);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Enhanced focus states for better accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

/* Floating labels for better UX */
.form-group.floating-label {
    position: relative;
}

.form-group.floating-label label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    background: var(--white);
    padding: 0 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
}

.form-group.floating-label input:focus + label,
.form-group.floating-label input:not(:placeholder-shown) + label,
.form-group.floating-label.focused label {
    top: 0;
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 500;
}

.form-group textarea {
    resize: vertical;
    min-height: clamp(100px, 15vw, 140px);
    font-family: var(--font-primary);
    line-height: 1.5;
}

/* Custom select dropdown styling */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B5E20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* Form validation states */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.15);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.form-note {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Touch-optimized form elements */
@media (hover: none) and (pointer: coarse) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
    }
    
    .form-group select {
        padding-right: 3.5rem;
        background-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 16px;
    }
}

/* Appointment Section */
.appointment {
    padding: var(--section-padding);
    background: var(--gradient-soft);
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.appointment-info h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.appointment-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--text-light);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--primary-green-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-logo-image {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
    padding: clamp(2px, 0.5vw, 3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Advanced Responsive Design - Mobile First Approach */

/* Extra Small Devices (phones, 0px to 575px) */
@media (max-width: 575px) {
    :root {
        --section-padding: 60px 0;
        --element-spacing: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .psi-symbol {
        font-size: 1.25rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 120px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .logo-image-large {
        width: 120px;
        height: 120px;
        padding: 8px;
        border-width: 2px;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .about-icon i {
        font-size: 2rem;
    }
    
    /* Blog Mobile */
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        min-height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    /* Contact & Forms Mobile */
    .contact-content,
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container,
    .appointment-form-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.25rem;
    }
    
    /* Welcome Note Mobile */
    .welcome-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .welcome-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .welcome-icon i {
        font-size: 2rem;
    }
    
    .welcome-intro {
        font-size: 1.2rem;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
    
    .welcome-promises {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .promise-item {
        padding: 0.75rem;
    }
    
    .welcome-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .welcome-actions .btn-primary,
    .welcome-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    /* Why Choose MindoMan Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .why-choose-message {
        padding: 2rem 1.5rem;
    }
    
    .main-message {
        font-size: 1.1rem;
    }
    
    /* Founder Section Mobile */
    .founder-hero {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .founder-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .avatar-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .avatar-placeholder i {
        font-size: 3rem;
    }
    
    .founder-details h3 {
        font-size: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .achievement-card {
        padding: 1.5rem;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
    }
    
    .achievement-icon i {
        font-size: 1.5rem;
    }
    
    .journey-section {
        padding: 2rem 1.5rem;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .journey-card {
        padding: 1.25rem;
    }
    
    .journey-icon {
        width: 50px;
        height: 50px;
    }
    
    .journey-icon i {
        font-size: 1.25rem;
    }
    
    .qualifications-section {
        padding: 2rem 1.5rem;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .qualification-list li,
    .approach-list li {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .qualification-list li i,
    .approach-list li i {
        margin: 0;
    }
    
    .philosophy-section {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-card {
        padding: 2rem 1.5rem;
    }
    
    .founder-quote {
        padding: 1.5rem;
    }
    
    .founder-quote p {
        font-size: 1rem;
    }
    
    .quote-icon {
        left: 15px;
        top: -8px;
        padding: 0.4rem;
    }
    
    .quote-icon i {
        font-size: 1.2rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Small Devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn-large {
        min-width: 200px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-content,
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        gap: 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-content,
    .appointment-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .service-card {
        padding: 3rem 2rem;
    }
}

/* Ultra Wide Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content {
        gap: 5rem;
    }
    
    .services-grid,
    .about-grid {
        gap: 2.5rem;
    }
}

/* Landscape Mobile Devices */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .logo-image-large {
        width: 100px;
        height: 100px;
        padding: 5px;
        border-width: 2px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-circle,
    .service-icon,
    .about-icon,
    .contact-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .header,
    .hamburger,
    .scroll-indicator,
    .floating-elements {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        background: white !important;
        color: black !important;
    }
    
    .hero-title,
    .section-title {
        color: black !important;
    }
    
    .service-card,
    .about-card,
    .blog-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .about-card:hover,
    .blog-card:hover {
        transform: none;
        box-shadow: var(--shadow-light);
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    /* Increase touch targets */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        min-width: 48px;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .hamburger {
        padding: 0.5rem;
        min-height: 48px;
        min-width: 48px;
        justify-content: center;
    }
    
    .contact-icon,
    .service-icon,
    .about-icon {
        min-height: 60px;
        min-width: 60px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

/* Remove focus outline from navigation links */
.nav-link:focus {
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
}