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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f0f0f0;
}

/* Main site wrapper with borders */
body {
    max-width: 1440px;
    margin: 0 auto;
    background: #fff;
    position: relative;
}

/* Desktop borders - invisible but maintaining structure */
@media (min-width: 1441px) {
    body {
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1440px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: #1e3c72;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: #1e3c72;
    background: rgba(30, 60, 114, 0.05);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

/* Hero Section with Background Image Placeholder */
/* Image is now 1920x1080 landscape format */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    overflow: hidden;
    box-sizing: border-box;
    /* Using Profile.png as hero background - 1920x1080 */
    background: url('../images/Profile.png') no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

/* Ensure all sections respect body width */
section {
    max-width: 100%;
    box-sizing: border-box;
}

/* Dark overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    margin-right: auto;
    margin-left: 5%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #fff8a3 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 60, 114, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(30, 60, 114, 0.2) 50%, transparent 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1e3c72;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact .section-title,
.contact .section-subtitle {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

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

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

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.contact-item p {
    color: #e0e0e0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 2px solid #ffd700;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.contact-form button {
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0.5rem 0;
    color: #aaa;
}

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

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

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

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

/* Apply animations to sections */
.section-title {
    animation: fadeInUp 0.8s ease;
}

.section-subtitle {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.service-card {
    animation: fadeInUp 0.6s ease both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN - Chrome DevTools Dimensions
   Portrait Profile Picture Optimization
   ============================================ */

/* Desktop & Large Screens (1920px and above) - Perfect match for 1920x1080 image */
@media (min-width: 1920px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center center;
    }
}

/* Standard Desktop (1440px - 1919px) */
@media (min-width: 1441px) and (max-width: 1919px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center center;
    }
}

/* Laptop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center center;
    }
}

/* Medium Screens (930px - 1023px) */
@media (min-width: 930px) and (max-width: 1023px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

/* Tablet/Small Laptop (768px - 929px) */
@media (min-width: 768px) and (max-width: 929px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .nav-menu {
        display: none;
    }

    .navbar {
        padding: 0.8rem 0;
    }
}

/* iPad Pro 12.9" (1024x1366) - Portrait */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center top;
        background-attachment: scroll;
    }

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

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

/* iPad Pro 11" (834x1194) - Portrait & iPad Air (820x1180) */
@media (min-width: 820px) and (max-width: 1023px) and (orientation: portrait) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center top;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .navbar {
        padding: 1rem 0;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }

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

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

/* iPad Mini (768x1024) - Portrait */
@media (min-width: 768px) and (max-width: 820px) and (orientation: portrait) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center top;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .nav-menu {
        display: none;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-brand {
        font-size: 1.1rem;
    }
}

/* Large Mobile / Small Tablet (600px - 767px) - 600x960 typical */
@media (min-width: 600px) and (max-width: 767px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center top;
        justify-content: center;
        text-align: center;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        padding: 0 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    }

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

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .service-card {
        animation: fadeInUp 0.5s ease both;
    }

    .contact::before,
    .contact::after {
        display: none;
    }
}

/* Surface Duo (540x720) */
@media (min-width: 540px) and (max-width: 599px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center top;
        justify-content: center;
        text-align: center;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        padding: 0 25px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.6) 100%);
    }

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

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

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

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

    .nav-menu {
        display: none;
    }

    .navbar {
        padding: 0.7rem 0;
    }

    .nav-brand {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* iPhone 14 Pro Max (430x932), Pixel 7 Pro (412x915) */
@media (min-width: 412px) and (max-width: 539px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center top;
        justify-content: center;
        text-align: center;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.65) 100%);
    }

    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }

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

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .navbar {
        padding: 0.7rem 0;
    }

    .nav-brand {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 2rem;
    }

    .contact::before,
    .contact::after {
        display: none;
    }
}

/* iPhone 14 Pro (393x852), iPhone 13/14 (390x844) */
@media (min-width: 390px) and (max-width: 411px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center top;
        justify-content: center;
        text-align: center;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.7) 100%);
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

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

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .nav-menu {
        display: none;
    }

    .navbar {
        padding: 0.65rem 0;
    }

    .nav-brand {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .btn {
        padding: 0.85rem 1.7rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* iPhone 12 Mini (375x812), iPhone SE 3rd (375x667) */
@media (min-width: 375px) and (max-width: 389px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center top;
        justify-content: center;
        text-align: center;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 240px;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.7) 100%);
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    .nav-menu {
        display: none;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .nav-brand {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Galaxy S9+ (360x740), iPhone SE 2020 (375x667) - Small devices */
@media (max-width: 374px) {
    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center top;
        justify-content: flex-end;
        text-align: center;
        padding-bottom: 2rem;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        padding: 0 15px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 220px;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.75) 100%);
    }

    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

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

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

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

    .nav-menu {
        display: none;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-brand {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }

    .btn {
        padding: 0.75rem 1.3rem;
        font-size: 0.8rem;
    }

    .service-card {
        padding: 1.3rem;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
