        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        :root {
            --primary-color: #2C5AA0;
            --primary-dark: #1E3A68;
            --secondary-color: #3b82f6;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --border-color: #e2e8f0;
            --white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Enhanced Header & Navigation - FULL SCREEN */
        .dashboard-header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

        .header-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo img {
            height: 40px;
        }

        /* Desktop Navigation - FULL WIDTH */
        .nav-desktop {
            display: flex;
            gap: 0;
            align-items: center;
            height: 100%;
            margin: 0 2rem;
            flex: 1;
            justify-content: center;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 1.2rem 2rem;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            height: 100%;
            border-bottom: 3px solid transparent;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--primary-color);
            background-color: rgba(44, 90, 160, 0.05);
        }

        .nav-link.active {
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
            background-color: rgba(44, 90, 160, 0.08);
        }

        .nav-icon {
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        .coming-soon {
            background: #fef3c7;
            color: #92400e;
            font-size: 0.65rem;
            padding: 0.15rem 0.4rem;
            border-radius: 10px;
            margin-left: 0.3rem;
            font-weight: 600;
        }

        /* User Menu */
        .user-menu {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .user-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .user-avatar:hover {
            transform: scale(1.05);
        }

        .user-details {
            display: flex;
            flex-direction: column;
        }

        .user-name {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .user-role {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .logout-btn {
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .logout-btn:hover {
            color: var(--primary-color);
            background-color: rgba(44, 90, 160, 0.1);
        }

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-dark);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        .nav-mobile {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: var(--white);
            flex-direction: column;
            box-shadow: var(--shadow-lg);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }

        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 1.2rem 2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-nav-link:hover, .mobile-nav-link.active {
            color: var(--primary-color);
            background-color: rgba(44, 90, 160, 0.08);
        }

        .mobile-nav-link.active {
            border-left: 4px solid var(--primary-color);
        }

        /* Main Content - FULL SCREEN */
        .dashboard-main {
            flex: 1;
            width: 100%;
            margin: 0 auto;
            padding: 3rem;
        }

        .page-header {
            margin-bottom: 2.5rem;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }

        .page-description {
            color: var(--text-light);
            font-size: 1.2rem;
            max-width: 800px;
            line-height: 1.6;
        }

        /* User Profile Tabs */
        .profile-tabs {
            display: flex;
            gap: 0;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .tab-button {
            flex: 1;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
        }

        .tab-button:hover {
            background-color: rgba(44, 90, 160, 0.05);
            color: var(--primary-color);
        }

        .tab-button.active {
            background-color: var(--primary-color);
            color: white;
        }

        .tab-button i {
            font-size: 1.1rem;
        }

        /* Profile Content */
        .profile-content {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow);
            padding: 3rem;
            min-height: 500px;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .form-section {
            margin-bottom: 2.5rem;
        }

        .form-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--border-color);
        }

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

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .form-input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

        .form-input-static {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            background-color: var(--light-bg);
            color: var(--text-dark);
            margin: 0;
        }

        .form-select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            background-color: white;
            transition: all 0.3s ease;
        }

        .form-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .checkbox-group input {
            width: 18px;
            height: 18px;
            accent-color: var(--primary-color);
        }

        .checkbox-group label {
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
        }

        .btn-secondary {
            background: var(--light-bg);
            color: var(--text-dark);
            border: 1px solid var(--border-color);
        }

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

        .btn-danger {
            background: #ef4444;
            color: white;
        }

        .btn-danger:hover {
            background: #dc2626;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
        }

        /* Address List */
        .address-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .address-card {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .address-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .address-card.default {
            border: 2px solid var(--primary-color);
            background: rgba(44, 90, 160, 0.05);
        }

        .address-card.selected {
            border: 2px solid #10b981;
            background: rgba(16, 185, 129, 0.05);
        }

        .address-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .address-title {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .address-badge {
            background: var(--primary-color);
            color: white;
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .address-details {
            color: var(--text-light);
            line-height: 1.6;
        }

        .address-actions {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .address-actions .btn {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }

        /* Map Container - FIXED SIZE */
        .map-container {
            width: 100%;
            height: 600px; /* Fixed height instead of aspect-ratio */
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
        }

        .map-instructions {
            background: rgba(44, 90, 160, 0.05);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-color);
        }

        .map-instructions p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .coordinates-display {
            background: var(--light-bg);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-color);
        }

        .coordinates-display p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .coordinates-display strong {
            color: var(--primary-color);
        }

        /* Verification Section */
        .verification-section {
            background: rgba(44, 90, 160, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }

        .verification-title {
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--primary-color);
        }

        .verification-code-group {
            display: flex;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }

        .verification-input {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .verification-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

        .resend-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
        }

        .resend-link:hover {
            text-decoration: underline;
        }

        .resend-link.disabled {
            color: var(--text-light);
            cursor: not-allowed;
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            top: 100px;
            right: 30px;
            background: #fef3c7;
            color: #92400e;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            z-index: 1000;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            max-width: 400px;
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast.success {
            background: #d1fae5;
            color: #065f46;
        }

        .toast.error {
            background: #fee2e2;
            color: #991b1b;
        }

        .toast i {
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(to right, #1e40af, #3b82f6);
            color: white;
            padding: 4rem 3rem 2rem;
            position: relative;
            overflow: hidden;
            margin-top: auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
        }

        .footer-logo i {
            font-size: 2.2rem;
        }

        .footer-description {
            line-height: 1.6;
            opacity: 0.9;
            max-width: 300px;
        }

        .footer-heading {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: white;
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 0.9rem;
        }

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

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.5rem;
        }

        .contact-item i {
            font-size: 1.2rem;
            width: 20px;
        }

        .contact-item span {
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-newsletter {
            margin-top: 2rem;
        }

        .newsletter-text {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
        }

        .newsletter-button {
            padding: 0.8rem 1.2rem;
            border: none;
            border-radius: 8px;
            background: white;
            color: #1e40af;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-button:hover {
            background: #f0f9ff;
            transform: translateY(-2px);
        }

        .footer-bottom {
            max-width: 100%;
            margin: 0 auto;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .copyright {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .social-link i {
            font-size: 1.2rem;
            color: white;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-legal a:hover {
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .header-container {
                padding: 0 2rem;
            }
            
            .nav-link {
                padding: 1.2rem 1.5rem;
            }
            
            .dashboard-main {
                padding: 2rem;
            }
        }

        @media (max-width: 1024px) {
            .nav-desktop {
                margin: 0 1rem;
            }
            
            .nav-link {
                padding: 1.2rem 1rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .address-list {
                grid-template-columns: 1fr;
            }
            
            .toast {
                right: 20px;
                max-width: 350px;
            }
        }

        @media (max-width: 900px) {
            .nav-desktop {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-mobile {
                display: flex;
            }
            
            .user-details {
                display: none;
            }
            
            .header-container {
                padding: 0 1.5rem;
            }
            
            .profile-tabs {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .dashboard-main {
                padding: 1.5rem;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .profile-content {
                padding: 2rem;
            }
            
            .footer {
                padding: 3rem 1.5rem 1.5rem;
            }
            
            .toast {
                top: 90px;
                right: 15px;
                left: 15px;
                max-width: none;
            }
        }

        @media (max-width: 640px) {
            .dashboard-main {
                padding: 1rem;
            }
            
            .page-title {
                font-size: 1.8rem;
            }
            
            .profile-content {
                padding: 1.5rem;
            }
            
            .footer-content {
                gap: 2.5rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            
            .verification-code-group {
                justify-content: center;
            }
        }