/* --- CSS VARIABLES & THEMING --- */
:root {
    --primary: #0A2F6C;
    --primary-hover: #08224d;
    --text-main: #1a1f36;
    --text-muted: #4f566b;
    --bg-base: #f7fafc;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    --glass-shadow-hover: 0 15px 45px 0 rgba(31, 38, 135, 0.12);
    --glass-blur: 16px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & TYPOGRAPHY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Material Icons Alignment */
.material-symbols-outlined {
    vertical-align: middle;
}
.icon-right {
    margin-left: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Font Awesome Icons */
.fab, .fas {
    font-size: 1.2rem;
    color: var(--primary);
}
.method .icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* --- AMBIENT DECORATIVE BACKGROUND --- */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}
.shape-1 {
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: #e0eafc;
    top: -10%;
    left: -10%;
    animation: ambient-float 20s ease-in-out infinite alternate;
}
.shape-2 {
    width: 50vw;
    height: 50vw;
    max-width: 500px;
    max-height: 500px;
    background: #cfdef3;
    bottom: -10%;
    right: -10%;
    animation: ambient-float-reverse 25s ease-in-out infinite alternate;
}
.shape-3 {
    width: 40vw;
    height: 40vw;
    max-width: 400px;
    max-height: 400px;
    background: #fdfbfb;
    top: 40%;
    left: 40%;
    animation: ambient-float 30s ease-in-out infinite alternate;
    opacity: 0.4;
}

@keyframes ambient-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.05); }
}
@keyframes ambient-float-reverse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, -10%) scale(1.05); }
}

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 50px;
}
.section-header.center {
    text-align: center;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.section:hover .divider {
    width: 80px;
}
.section-header.center .divider {
    margin: 0 auto;
}

/* Glass & Interactive Glass Effects */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.interactive-glass:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}
.btn:hover::after {
    left: 200%;
}
.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}
.block-btn {
    display: flex;
    width: 100%;
}
.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 47, 108, 0.2);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(10, 47, 108, 0.3);
}
.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.btn:hover .icon-right {
    transform: translateX(4px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}
.fade-delay { transition-delay: 0.15s; }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }

/* --- NAVIGATION --- */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}
.logo span {
    color: var(--primary);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a:not(.btn) {
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover {
    color: var(--primary);
}
.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.hero-content {
    padding: 30px;
    max-width: 550px;
}
.pre-headline {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}
.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hero-stats .stat {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.hero-stats strong {
    color: var(--primary);
    font-size: 1.1rem;
}
.hero-ctas {
    display: flex;
    gap: 15px;
}

/* --- LARGER CIRCULAR PROFILE STYLES --- */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-container {
    width: 100%;
    max-width: 450px;
    padding: 25px;
    border-radius: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
    display: block;
    border: 5px solid white;
    box-shadow: 0 15px 40px rgba(10, 47, 108, 0.2);
    transition: var(--transition);
}

.profile-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 24px;
    border: 3px solid rgba(10, 47, 108, 0.2);
    pointer-events: none;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.4;
        border-color: rgba(10, 47, 108, 0.15);
    }
    50% { 
        transform: scale(1.04);
        opacity: 0.8;
        border-color: rgba(10, 47, 108, 0.3);
    }
}

.profile-container:hover .profile-img {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(10, 47, 108, 0.3);
}

.profile-container:hover .profile-ring {
    animation: ringPulse 1.5s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.float-anim {
    animation: upDown 6s ease-in-out infinite;
}

@keyframes upDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.floating-badge .badge-icon {
    font-size: 2rem;
    color: var(--primary);
}
.floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}
.badge-text strong {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 700;
}
.badge-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}
.about-text {
    padding: 40px;
}
.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}
.about-text p:last-child {
    margin-bottom: 0;
}
.about-text strong {
    color: var(--primary);
}
.about-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.trust-badge {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--text-main);
}
.trust-badge .icon {
    font-size: 1.8rem;
    color: var(--primary);
}

/* --- BENEFITS SECTION --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.benefit-card {
    padding: 35px 20px;
    text-align: center;
}
.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}
.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- WHY WEBSITE SECTION --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.why-card {
    padding: 35px 20px;
    text-align: center;
}
.why-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.why-card:hover .why-icon {
    transform: scale(1.1);
}
.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- WHY CHOOSE SECTION --- */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.choose-card {
    padding: 35px 20px;
    text-align: center;
}
.choose-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.choose-card:hover .choose-icon {
    transform: scale(1.1);
}
.choose-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.choose-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.testimonial-card {
    padding: 35px 25px;
    text-align: center;
}
.testimonial-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.testimonial-author strong {
    color: var(--primary);
    font-size: 1rem;
}
.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- SERVICES & PRICING --- */
.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.urgency-note {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.service-card {
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.service-card.highlight {
    border: 1px solid var(--primary);
    transform: scale(1.05);
}
.service-card.highlight:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 47, 108, 0.15);
}
.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(10, 47, 108, 0.2);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}
.service-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
}
.services-footer {
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

/* --- PORTFOLIO --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.portfolio-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.portfolio-img {
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img {
    transform: scale(1.03);
}
.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.portfolio-img span {
    font-weight: 700;
    color: #94a3b8;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}
.placeholder-1 { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); }
.placeholder-2 { background: linear-gradient(135deg, #f8fafc, #f1f5f9); }
.placeholder-3 { background: linear-gradient(135deg, #ffffff, #f8fafc); }

.portfolio-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: inherit;
    position: relative;
    z-index: 2;
}
.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.portfolio-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info {
    padding: 40px;
}
.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    line-height: 1.3;
}
.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}
.method {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}
.method:hover {
    transform: translateX(5px);
}
.method .icon {
    font-size: 2.5rem;
    color: var(--primary);
}
.method strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 5px;
}
.method a {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}
.secure-badge {
    padding: 15px;
    background: rgba(10, 47, 108, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-wrapper {
    padding: 40px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 47, 108, 0.15);
    background: #fff;
}

/* --- FOOTER --- */
.glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid var(--glass-border);
    padding: 30px 0;
    margin-top: 50px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}
.footer-tagline {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 5px;
}
.reply-time {
    display: flex;
    align-items: center;
    gap: 5px;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}
.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}
.social-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* --- MOBILE HAMBURGER MENU --- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 8px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .service-card.highlight { transform: none; }
    .service-card.highlight:hover { transform: scale(1) translateY(-8px); }
    .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    
    .profile-container { 
        max-width: 400px; 
        margin: 0 auto;
    }
    .profile-image-wrapper { 
        width: 300px; 
        height: 300px; 
    }
    .hero-visual {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        height: 70px;
    }
    .hamburger {
        display: flex;
    }
    .nav-links { 
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 15px;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-links a:last-child { border-bottom: none; }
    
    /* Logo */
    .logo a { font-size: 1.3rem; }
    
    /* Hero Section */
    .hero {
        padding-top: 80px;
        min-height: auto;
    }
    .hero-grid { gap: 20px; }
    .hero h1 { 
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .pre-headline { font-size: 0.75rem; }
    .tagline { 
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    .hero-content { 
        padding: 20px; 
        max-width: 100%;
    }
    .hero-ctas { 
        flex-direction: column; 
        gap: 12px;
    }
    .hero-stats { 
        flex-direction: column; 
        gap: 10px;
        margin-bottom: 30px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .btn-small {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Section Spacing */
    .section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    /* Grids */
    .services-grid, .portfolio-grid, .benefits-grid, .why-grid, .why-choose-grid, .testimonials-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .about-text, .contact-info, .contact-form-wrapper { 
        padding: 25px; 
    }
    .about-badges {
        gap: 15px;
    }
    
    /* Profile & Hero Visual */
    .profile-container { 
        max-width: 320px; 
        padding: 20px; 
        margin: 0 auto;
    }
    .profile-image-wrapper { 
        width: 250px; 
        height: 250px; 
    }
    .profile-img {
        border-width: 4px;
    }
    .floating-badge { 
        padding: 12px 18px; 
        left: 0px; 
        bottom: -20px;
        font-size: 0.85rem;
    }
    .floating-badge .badge-icon {
        font-size: 1.5rem;
    }
    .badge-text strong {
        font-size: 0.8rem;
    }
    .badge-text span {
        font-size: 0.75rem;
    }
    .hero-visual {
        min-height: 350px;
    }
    
    /* Services */
    .service-card {
        padding: 30px 20px;
    }
    .service-card h3 {
        font-size: 1.3rem;
    }
    .price {
        font-size: 2rem;
    }
    
    /* Contact */
    .contact-grid {
        gap: 30px;
    }
    .lead-text {
        font-size: 1.3rem;
    }
    .contact-methods {
        gap: 20px;
    }
    
    /* Footer */
    .footer-content { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    
    /* Background Shapes */
    .bg-shape { opacity: 0.2; }
}

@media (max-width: 600px) {
    /* Navigation */
    .nav-container {
        height: 65px;
        padding: 0 15px;
    }
    .logo a { font-size: 1.2rem; }
    
    /* Hero Section */
    .hero {
        padding-top: 75px;
    }
    .hero h1 { 
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .pre-headline { 
        font-size: 0.7rem;
        margin-bottom: 10px;
    }
    .tagline { 
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .hero-content { padding: 15px; }
    .hero-stats {
        margin-bottom: 20px;
        padding-bottom: 15px;
        gap: 8px;
    }
    .hero-stats .stat {
        font-size: 0.85rem;
    }
    
    /* Buttons */
    .btn {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
    .btn-small {
        padding: 9px 14px;
        font-size: 0.8rem;
    }
    .block-btn {
        min-height: 44px;
    }
    
    /* Section */
    .section {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    /* Typography */
    h3 { font-size: 1.15rem; }
    
    /* Containers */
    .container {
        padding: 0 15px;
    }
    
    /* Cards */
    .benefit-card, .why-card, .choose-card, .testimonial-card {
        padding: 25px 15px;
    }
    .benefit-icon, .why-icon, .choose-icon {
        font-size: 2.2rem;
    }
    
    /* About */
    .about-text {
        padding: 20px;
    }
    .about-text p {
        font-size: 1rem;
    }
    .trust-badge {
        padding: 20px;
        gap: 12px;
    }
    .trust-badge .icon {
        font-size: 1.5rem;
    }
    
    /* Profile */
    .profile-container { 
        max-width: 100%;
        padding: 15px;
    }
    .profile-image-wrapper { 
        width: 200px; 
        height: 200px; 
    }
    .profile-img {
        border-width: 3px;
    }
    .hero-visual {
        min-height: 300px;
        padding: 20px 0;
    }
    
    /* Services */
    .service-card {
        padding: 25px 18px;
    }
    .service-card h3 {
        font-size: 1.15rem;
    }
    .price {
        font-size: 1.8rem;
    }
    .price span {
        font-size: 0.9rem;
    }
    .popular-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    /* Portfolio */
    .portfolio-img {
        height: 180px;
    }
    .portfolio-content {
        padding: 20px;
    }
    .portfolio-content h3 {
        font-size: 1.1rem;
    }
    .portfolio-content p {
        font-size: 0.9rem;
    }
    
    /* Contact */
    .contact-grid {
        gap: 20px;
    }
    .contact-info, .contact-form-wrapper {
        padding: 20px;
    }
    .lead-text {
        font-size: 1.15rem;
    }
    .contact-info p {
        font-size: 0.95rem;
    }
    .method {
        gap: 15px;
    }
    .method .icon {
        font-size: 2rem;
    }
    .method strong {
        font-size: 0.95rem;
    }
    .method a {
        font-size: 1rem;
    }
    
    /* Form */
    .form-group label {
        font-size: 0.95rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-content {
        font-size: 0.85rem;
    }
    .footer-tagline {
        margin-top: 8px;
    }
    .social-links {
        margin-bottom: 8px;
    }
    .social-links a {
        font-size: 1rem;
    }
    .reply-time {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        height: 60px;
    }
    .logo a { 
        font-size: 1.1rem;
    }
    
    /* Hero */
    .hero {
        padding-top: 70px;
    }
    .hero h1 { 
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .pre-headline { font-size: 0.65rem; }
    .tagline { font-size: 0.95rem; }
    .hero-ctas {
        gap: 10px;
    }
    
    /* General */
    .container { padding: 0 12px; }
    .section { padding: 45px 0; }
    .section-header h2 { font-size: 1.5rem; }
    
    /* Buttons */
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* Cards */
    .benefit-card, .why-card, .choose-card, .testimonial-card {
        padding: 20px 12px;
    }
    .benefit-icon, .why-icon, .choose-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .profile-image-wrapper { 
        width: 180px; 
        height: 180px; 
    }
    .profile-img {
        border-width: 3px;
    }
    .hero-visual {
        min-height: 280px;
    }
    
    /* Services */
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .price {
        font-size: 1.6rem;
    }
    
    /* Portfolio */
    .portfolio-img {
        height: 150px;
    }
    .portfolio-content {
        padding: 18px;
    }
    .portfolio-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .portfolio-content p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    /* Contact */
    .contact-info, .contact-form-wrapper {
        padding: 18px;
    }
    .lead-text {
        font-size: 1.1rem;
    }
    .contact-methods {
        gap: 15px;
    }
    .method .icon {
        font-size: 1.8rem;
    }
    
    /* Form */
    .form-group {
        margin-bottom: 18px;
    }
    .form-group label {
        font-size: 0.9rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        font-size: 0.8rem;
    }
}