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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #FFFFFF;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
    
    /* Sector Colors */
    --automotive-primary: #c41e3a;
    --automotive-secondary: #1a1a1a;
    --automotive-gradient: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
    
    --jewelry-primary: #d4af37;
    --jewelry-secondary: #ffd700;
    --jewelry-gradient: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    
    --agriculture-primary: #2d6a4f;
    --agriculture-secondary: #52b788;
    --agriculture-gradient: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
    
    --cafe-primary: #6f4e37;
    --cafe-secondary: #d4a574;
    --cafe-gradient: linear-gradient(135deg, #6f4e37 0%, #d4a574 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

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

.hero-bio h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

.hero-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    text-align: left;
}

.hero-intro {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    font-style: italic;
    opacity: 1 !important;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 1.8rem !important;
}

.hero-signature {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-container {
    font-family: 'Allura', cursive;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    display: inline-block;
    letter-spacing: 2px;
}

.signature-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: writeChar 0.3s ease-out forwards;
}

.signature-space {
    display: inline-block;
    width: 0.5em;
}

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

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.image-placeholder:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.4;
}

.image-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.image-placeholder span {
    font-size: 0.85rem;
    opacity: 0.6;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

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

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease-out 1.2s both;
}

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

/* Who is Burak Arslan Section */
.who-is-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.02) 0%, rgba(15, 52, 96, 0.02) 100%);
    position: relative;
}

.who-is-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(15, 52, 96, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.who-is-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.who-is-text {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.who-is-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 150px;
    font-family: Georgia, serif;
    color: rgba(15, 52, 96, 0.04);
    line-height: 1;
    font-weight: bold;
}

.who-is-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.lead-text {
    font-size: 1.25rem !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
}

.philosophy-box {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.05) 0%, rgba(26, 26, 46, 0.03) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.philosophy-item {
    margin-bottom: 1rem !important;
    font-size: 1.05rem !important;
    color: var(--text-dark) !important;
}

.philosophy-item:last-child {
    margin-bottom: 0 !important;
}

.philosophy-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.quote-box {
    background: var(--primary-color);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.15);
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.quote-box p {
    font-size: 1.15rem !important;
    font-style: italic;
    color: white !important;
    font-weight: 600;
    line-height: 1.8 !important;
    text-align: center !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}

.summary-text {
    font-size: 1.15rem !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    margin-top: 2.5rem !important;
}

.signature-statement {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(15, 52, 96, 0.2);
}

.statement-title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: white !important;
    letter-spacing: 3px !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase;
}

.statement-subtitle {
    font-size: 1.3rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    margin-bottom: 0.8rem !important;
    letter-spacing: 1px;
}

.statement-description {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-style: italic;
    margin: 0 !important;
}

/* Business Section */
.businesses {
    padding: 6rem 0;
    background: var(--bg-light);
}

.business-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    border-radius: 3px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.business-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: height 0.5s ease;
}

.business-card[data-sector="automotive"] .card-gradient {
    background: var(--automotive-gradient);
}

.business-card[data-sector="jewelry"] .card-gradient {
    background: var(--jewelry-gradient);
}

.business-card[data-sector="agriculture"] .card-gradient {
    background: var(--agriculture-gradient);
}

.business-card[data-sector="cafe"] .card-gradient {
    background: var(--cafe-gradient);
}

.business-card:hover .card-gradient {
    height: 100%;
    opacity: 0.05;
}

.card-content {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.business-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.sector-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.business-card[data-sector="automotive"] .sector-badge {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(26, 26, 26, 0.1));
    color: var(--automotive-primary);
}

.business-card[data-sector="jewelry"] .sector-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    color: var(--jewelry-primary);
}

.business-card[data-sector="agriculture"] .sector-badge {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.1));
    color: var(--agriculture-primary);
}

.business-card[data-sector="cafe"] .sector-badge {
    background: linear-gradient(135deg, rgba(111, 78, 55, 0.1), rgba(212, 165, 116, 0.1));
    color: var(--cafe-primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 1.2rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.business-card[data-sector="automotive"] .card-icon {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(26, 26, 26, 0.1));
    color: var(--automotive-primary);
}

.business-card[data-sector="jewelry"] .card-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    color: var(--jewelry-primary);
}

.business-card[data-sector="agriculture"] .card-icon {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.1));
    color: var(--agriculture-primary);
}

.business-card[data-sector="cafe"] .card-icon {
    background: linear-gradient(135deg, rgba(111, 78, 55, 0.1), rgba(212, 165, 116, 0.1));
    color: var(--cafe-primary);
}

.business-card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg);
}

.business-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.business-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.card-features span {
    padding: 0.4rem 0.9rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.business-card[data-sector="automotive"]:hover .card-features span {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(26, 26, 26, 0.1));
    color: var(--automotive-primary);
}

.business-card[data-sector="jewelry"]:hover .card-features span {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    color: var(--jewelry-primary);
}

.business-card[data-sector="agriculture"]:hover .card-features span {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.1));
    color: var(--agriculture-primary);
}

.business-card[data-sector="cafe"]:hover .card-features span {
    background: linear-gradient(135deg, rgba(111, 78, 55, 0.1), rgba(212, 165, 116, 0.1));
    color: var(--cafe-primary);
}

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

/* Biography Section */
.biography-section {
    max-width: 900px;
    margin: 3rem auto 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.02) 0%, rgba(48, 43, 99, 0.02) 100%);
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.biography-section::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    font-weight: bold;
}

.bio-content {
    position: relative;
    z-index: 1;
}

.bio-text {
    margin-bottom: 3rem;
}

.bio-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 2;
    text-align: justify;
}

.bio-intro {
    font-size: 1.25rem !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    font-style: italic;
    margin-bottom: 2rem !important;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.bio-closing {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin-top: 2rem !important;
}

.bio-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    position: relative;
}

.signature-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    margin-bottom: 2rem;
}

.signature-text {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    text-align: right;
    padding-right: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: signatureAppear 1.5s ease-out;
}

.signature-title {
    text-align: right;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-right: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

.about-text p {
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-bio h1 {
        font-size: 2.5rem;
    }

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

    .hero-text p {
        font-size: 1rem;
    }

    .signature-container {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        max-width: 350px;
    }

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

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

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Vision & Mission Cards - Responsive Fix */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

.vision-mission-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    max-width: 100%;
    width: 100%;
}

.vision-card {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(41, 128, 185, 0.08) 100%);
    border: 1px solid rgba(52, 152, 219, 0.15);
}

.mission-card {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(39, 174, 96, 0.08) 100%);
    border: 1px solid rgba(46, 204, 113, 0.15);
}

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

.vision-card:hover {
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.15);
}

.mission-card:hover {
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.15);
}

@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vision-mission-card {
        padding: 2rem 1.5rem;
    }
    
    /* Who is Section Responsive */
    .who-is-section {
        padding: 4rem 0;
    }
    
    .who-is-text {
        padding: 2rem 1.5rem;
    }
    
    .lead-text {
        font-size: 1.1rem !important;
        padding-left: 15px;
    }
    
    .philosophy-box {
        padding: 1.5rem;
    }
    
    .quote-box {
        padding: 1.5rem;
    }
    
    .signature-statement {
        padding: 2rem 1.5rem;
    }
    
    .statement-title {
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
    }
    
    .statement-subtitle {
        font-size: 1.1rem !important;
    }
    
    .statement-description {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .vision-mission-card {
        padding: 1.5rem 1rem;
    }
    
    /* Who is Section Mobile */
    .who-is-text {
        padding: 1.5rem 1rem;
    }
    
    .who-is-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .lead-text {
        font-size: 1.05rem !important;
    }
    
    .philosophy-box {
        padding: 1.25rem;
    }
    
    .philosophy-item {
        font-size: 0.95rem !important;
    }
    
    .quote-box {
        padding: 1.25rem;
    }
    
    .quote-box p {
        font-size: 1rem !important;
    }
    
    .signature-statement {
        padding: 1.5rem 1rem;
    }
    
    .statement-title {
        font-size: 1.3rem !important;
    }
}